Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
09eb6ce6
Commit
09eb6ce6
authored
Jan 31, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pref:修改新增窗口
parent
8d29c2d1
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
466 additions
and
692 deletions
+466
-692
base-manager-ui/admin/src/pages/basicset/addmatter/components/acceptMaterial.vue
...rc/pages/basicset/addmatter/components/acceptMaterial.vue
+66
-75
base-manager-ui/admin/src/pages/basicset/addmatter/components/applyMaterial.vue
...src/pages/basicset/addmatter/components/applyMaterial.vue
+29
-21
base-manager-ui/admin/src/pages/basicset/addmatter/components/flow.vue
...ui/admin/src/pages/basicset/addmatter/components/flow.vue
+153
-372
base-manager-ui/admin/src/pages/basicset/addmatter/group/addFlow.vue
...r-ui/admin/src/pages/basicset/addmatter/group/addFlow.vue
+129
-0
base-manager-ui/admin/src/pages/basicset/addmatter/group/addPursuant.vue
.../admin/src/pages/basicset/addmatter/group/addPursuant.vue
+0
-15
base-manager-ui/admin/src/pages/basicset/addmatter/group/addmaterials.vue
...admin/src/pages/basicset/addmatter/group/addmaterials.vue
+4
-3
base-manager-ui/admin/src/pages/basicset/addmatter/group/downloadTable.vue
...dmin/src/pages/basicset/addmatter/group/downloadTable.vue
+0
-48
base-manager-ui/admin/src/pages/basicset/addmatter/group/materialDetails.vue
...in/src/pages/basicset/addmatter/group/materialDetails.vue
+76
-157
base-manager-ui/admin/src/pages/basicset/dept/components/addwindow.vue
...ui/admin/src/pages/basicset/dept/components/addwindow.vue
+1
-1
base-manager-ui/admin/src/services/matter.js
base-manager-ui/admin/src/services/matter.js
+8
-0
No files found.
base-manager-ui/admin/src/pages/basicset/addmatter/components/acceptMaterial.vue
View file @
09eb6ce6
...
...
@@ -7,60 +7,57 @@
<!-- 表格 -->
<a-table
bordered
:pagination=
"false"
:loading=
"loading"
:pagination=
"
{
showTotal: (total) => `共 ${total} 条`,
current: current,
total: total,
pageSize: size,
showSizeChanger: true,
showQuickJumper: true,
pageSizeOptions: pageSizeOptions,
onChange: handlechange,
onShowSizeChange: showSizeChange,
}"
:scroll="{ y: 550 }"
:columns="columns"
:data-source="tableData"
:rowKey="(record) => record.id"
>
<template
slot=
"num"
slot-scope=
"text, record, index"
>
{{
index
+
1
}}
<span>
{{
(
current
-
1
)
*
size
+
index
+
1
}}
</span>
</
template
>
<
template
slot=
"active"
slot-scope=
"text"
>
<a
class=
"look-more"
@
click=
"lookMore(text.content)"
>
查看详情
</a>
<a
class=
"edit"
@
click=
"editAccept(text)"
>
编辑
</a>
<a-popconfirm
title=
"删除不可恢复,确定要删除吗?"
@
confirm=
"handleDel(text.id)"
>
<a-icon
slot=
"icon"
type=
"question-circle-o"
style=
"color: red"
/>
<a
class=
"delete"
>
删除
</a>
</a-popconfirm>
<a
class=
"delete"
@
click=
"handleDel(text.id)"
>
删除
</a>
</
template
>
</a-table>
</div>
<!-- 分页 -->
<a-pagination
@
change=
"handleChange"
v-model=
"current"
:total=
"total"
show-less-items
/>
<!-- 新增受理条件 -->
<a-modal
v-model=
"visible"
:title=
"title"
>
<
template
slot=
"footer"
>
<a-button
@
click=
"handleClose"
>
关闭
</a-button>
<a-button
type=
"primary"
@
click=
"handleOk"
>
确定
</a-button>
</
template
>
<a-form-model
:model=
"form"
ref=
"formData"
:rules=
"rules"
>
<!-- <a-form-model-item label="所属事项" prop="matterId">
<a-select
allowClear
@select="handleSelect"
v-model="form.matterId"
placeholder="请选择所属事项"
>
<a-select-option
v-for="v in matterList"
:key="v.id"
:value="v.matterId"
>{{ v.matterName }}</a-select-option
>
</a-select>
</a-form-model-item> -->
<a-form-model
:model=
"form"
layout=
"vertical"
ref=
"formData"
:rules=
"rules"
width=
"40%"
>
<a-form-model-item
label=
"受理标准"
prop=
"content"
>
<a-textarea
v-model=
"form.content"
placeholder=
"请输入受理条件"
allow-clear
:auto-size=
"{
minRows: 6,
maxRows: 10,
}"
/>
</a-form-model-item>
</a-form-model>
...
...
@@ -98,7 +95,7 @@ const columns = [
},
{
title
:
"
操作
"
,
width
:
"
20
%
"
,
width
:
"
15
%
"
,
scopedSlots
:
{
customRender
:
"
active
"
},
},
];
...
...
@@ -118,13 +115,12 @@ export default {
content
:
""
,
source
:
1
,
},
loading
:
false
,
pageSizeOptions
:
[
"
10
"
,
"
30
"
,
"
50
"
,
"
100
"
],
rules
:
{
content
:
[
{
required
:
true
,
message
:
"
受理条件不能为空
"
,
trigger
:
"
blur
"
},
],
matterId
:
[
{
required
:
true
,
message
:
"
所属事项不能为空
"
,
trigger
:
"
change
"
},
],
},
visible
:
false
,
detailsVisible
:
false
,
...
...
@@ -134,40 +130,25 @@ export default {
},
created
()
{
this
.
getMatteracceptData
();
// this.getSiteMatterList();
},
methods
:
{
// 获取站点事项列表
// async getSiteMatterList() {
// this.siteId = this.$route.query.siteId;
// let res = await getSiteMatterList({ siteId: this.siteId });
// this.matterList = res.data.data.data;
// },
// // 事项下拉选择
// handleSelect(val, node) {
// let { text } = node.componentOptions.children[0];
// this.form.matterName = text;
// },
// 获取受理条件列表
async
getMatteracceptData
()
{
if
(
local
.
getLocal
(
"
matter
"
))
{
this
.
loading
=
true
;
let
res
=
await
getMatteracceptList
({
page
:
this
.
current
,
size
:
this
.
size
,
matterId
:
local
.
getLocal
(
"
matter
"
).
id
,
matterName
:
local
.
getLocal
(
"
matter
"
).
matterName
,
});
this
.
loading
=
false
;
let
{
total
,
data
}
=
res
.
data
.
data
;
if
(
!
data
.
length
&&
this
.
current
>
1
)
{
this
.
current
-=
1
;
this
.
getMatteracceptData
();
}
this
.
total
=
total
;
data
.
forEach
((
v
)
=>
{
v
.
key
=
v
.
id
;
});
this
.
tableData
=
data
;
}
},
...
...
@@ -184,10 +165,16 @@ export default {
this
.
form
.
id
&&
this
.
$delete
(
this
.
form
,
"
id
"
);
},
// 分页
handle
C
hange
(
num
)
{
handle
c
hange
(
num
)
{
this
.
current
=
num
;
this
.
getMatteracceptData
();
},
// 改变每页显示数量
showSizeChange
(
cur
,
size
)
{
this
.
current
=
cur
;
this
.
size
=
size
;
this
.
getMatteracceptData
();
},
// 保存新增
handleOk
()
{
if
(
local
.
getLocal
(
"
matter
"
))
{
...
...
@@ -203,23 +190,35 @@ export default {
this
.
visible
=
false
;
this
.
$message
.
success
(
msg
);
this
.
getMatteracceptData
();
}
else
{
this
.
$message
.
error
(
msg
);
}
}
});
}
},
// 删除
async
handleDel
(
val
)
{
let
res
=
await
delMatteraccept
({
id
:
val
});
let
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
1
)
{
this
.
$message
.
success
(
msg
);
this
.
getMatteracceptData
();
}
else
{
this
.
$message
.
error
(
msg
);
}
async
handleDel
(
id
)
{
let
_this
=
this
;
this
.
$confirm
({
title
:
"
系统提示
"
,
content
:
"
删除不可恢复,确定要删除吗?
"
,
okText
:
"
确定
"
,
okType
:
"
danger
"
,
cancelText
:
"
取消
"
,
centered
:
true
,
icon
:
"
exclamation-circle
"
,
maskClosable
:
true
,
async
onOk
()
{
let
res
=
await
delMatteraccept
({
id
});
let
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
1
)
{
_this
.
$message
.
success
(
msg
);
_this
.
getMatteracceptData
();
}
},
onCancel
()
{
console
.
log
(
"
Cancel
"
);
},
});
},
// 查看详情
lookMore
(
data
)
{
...
...
@@ -254,16 +253,8 @@ export default {
.delete {
color: #fa6464;
}
.ant-pagination {
margin: 10px 0;
}
}
/deep/.ant-modal-body {
.ant-input {
height: 300px;
}
}
.table-content
{
height: 620px
;
/deep/.ant-form-item
{
display: block !important
;
}
</
style
>
\ No newline at end of file
base-manager-ui/admin/src/pages/basicset/addmatter/components/applyMaterial.vue
View file @
09eb6ce6
...
...
@@ -41,7 +41,7 @@
<
template
slot=
"operate"
slot-scope=
"text"
>
<span
class=
"look_more mr"
@
click=
"readMore(text)"
>
查看更多
</span>
<span
class=
"edit mr"
@
click=
"editMaterial(text)"
>
编辑
</span>
<span
class=
"del"
>
删除
</span>
<span
class=
"del"
@
click=
"delMaterial(text.id)"
>
删除
</span>
</
template
>
</a-table>
</div>
...
...
@@ -54,6 +54,7 @@
></addmaterials>
<!-- 查看更多 -->
<material-details
:dict=
"dict"
:detailsData=
"detailsData"
:detailsVisible.sync=
"detailsVisible"
></material-details>
...
...
@@ -156,7 +157,6 @@ export default {
this
.
total
=
data
.
total
;
this
.
dataSource
=
data
.
data
;
this
.
dict
=
dict
;
console
.
log
(
dict
);
}
},
// 选中数据
...
...
@@ -178,21 +178,35 @@ export default {
this
.
getMatterDatumData
();
},
// 改变每页显示数量
showSizeChange
(
size
)
{
showSizeChange
(
cur
,
size
)
{
this
.
current
=
cur
;
this
.
size
=
size
;
this
.
getMatterDatumData
();
},
// 删除
async
delMaterial
(
val
)
{
let
res
=
await
delMatterDatum
({
id
:
val
});
let
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
1
)
{
// this.dataSource.splice(i, 1);
this
.
$message
.
success
(
msg
);
this
.
getMatterDatumData
();
}
else
{
this
.
$message
.
error
(
msg
);
}
delMaterial
(
id
)
{
let
_this
=
this
;
this
.
$confirm
({
title
:
"
系统提示
"
,
content
:
"
删除不可恢复,确定要删除吗?
"
,
okText
:
"
确定
"
,
okType
:
"
danger
"
,
cancelText
:
"
取消
"
,
centered
:
true
,
icon
:
"
exclamation-circle
"
,
maskClosable
:
true
,
async
onOk
()
{
let
res
=
await
delMatterDatum
({
id
});
let
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
1
)
{
_this
.
$message
.
success
(
msg
);
_this
.
getMatterDatumData
();
}
},
onCancel
()
{
console
.
log
(
"
Cancel
"
);
},
});
},
// 查看更多
readMore
(
data
)
{
...
...
@@ -210,7 +224,7 @@ export default {
data
.
forEach
((
v
)
=>
{
v
.
key
=
v
.
id
;
});
this
.
tableData
=
data
.
filter
((
v
)
=>
v
.
filetype
==
=
2
);
this
.
tableData
=
data
.
filter
((
v
)
=>
v
.
filetype
==
2
);
this
.
downloadVisible
=
true
;
},
// 下载示例表格
...
...
@@ -219,7 +233,7 @@ export default {
data
.
forEach
((
v
)
=>
{
v
.
key
=
v
.
id
;
});
this
.
tableData
=
data
.
filter
((
v
)
=>
v
.
filetype
==
=
1
);
this
.
tableData
=
data
.
filter
((
v
)
=>
v
.
filetype
==
1
);
this
.
downloadVisible
=
true
;
},
},
...
...
@@ -252,10 +266,4 @@ export default {
cursor: pointer;
}
}
.ant-pagination {
margin: 10px 10px;
}
.table-content {
height: 620px;
}
</
style
>
base-manager-ui/admin/src/pages/basicset/addmatter/components/flow.vue
View file @
09eb6ce6
<
template
>
<div
class=
"flow"
>
<a-form-model
:model=
"formApply"
ref=
"formApply"
:rules=
"rules"
:label-col=
"
{ span: 6 }"
:wrapper-col="{ span: 16 }"
>
<a-row
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
:label-col=
"
{ span: 3 }"
:wrapper-col="{ span: 16 }"
label="办理流程"
>
<a-radio-group
v-model=
"isFlow"
>
<a-radio
:value=
"false"
>
有
</a-radio>
<a-radio
:value=
"true"
>
无
</a-radio>
</a-radio-group>
</a-form-model-item>
</a-col>
</a-row>
<!--
<a-row
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
:label-col=
"
{ span: 6 }"
prop="flowName"
label="流程名称"
>
<a-select
style=
"width: 263px"
placeholder=
"请选择流程名称"
:disabled=
"isFlow"
v-model=
"formData.flowName"
>
<a-select-option
v-for=
"v in flowNameItem"
:key=
"v"
:value=
"v"
>
{{
v
}}
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
:label-col=
"
{ span: 5 }"
label="所属事项"
prop="matterId"
>
<a-select
@
select=
"handleSelect"
allowClear
:disabled=
"isFlow"
v-model=
"formData.matterId"
placeholder=
"请选择所属事项"
>
<a-select-option
v-for=
"v in matterList"
:key=
"v.id"
:value=
"v.matterId"
>
{{
v
.
matterName
}}
</a-select-option
>
</a-select>
</a-form-model-item>
</a-col>
</a-row>
-->
<div
class=
"color_title"
>
申请
</div>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"办理时长"
>
<a-input
:disabled=
"isFlow"
v-model=
"formApply.flowTime"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"转外时限"
>
<a-input
:disabled=
"isFlow"
v-model=
"formApply.flowLimit"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<a-form-model
:model=
"formAccept"
ref=
"formAccept"
:rules=
"rules"
:label-col=
"
{ span: 6 }"
:wrapper-col="{ span: 16 }"
>
<div
class=
"color_title"
>
受理
</div>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"办理时长"
>
<a-input
:disabled=
"isFlow"
v-model=
"formAccept.flowTime"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"转外时限"
>
<a-input
v-model=
"formAccept.flowLimit"
:disabled=
"isFlow"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<a-form-model
:model=
"formAudit"
ref=
"formAudit"
:rules=
"rules"
:label-col=
"
{ span: 6 }"
:wrapper-col="{ span: 16 }"
>
<div
class=
"color_title"
>
审核
</div>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"办理时长"
>
<a-input
:disabled=
"isFlow"
v-model=
"formAudit.flowTime"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"转外时限"
>
<a-input
:disabled=
"isFlow"
v-model=
"formAudit.flowLimit"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<a-form-model
:model=
"formConclude"
ref=
"formConclude"
:rules=
"rules"
:label-col=
"
{ span: 6 }"
:wrapper-col="{ span: 16 }"
>
<div
class=
"color_title"
>
办结
</div>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"办理时长"
>
<a-input
v-model=
"formConclude.flowTime"
:disabled=
"isFlow"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"转外时限"
>
<a-input
v-model=
"formConclude.flowLimit"
:disabled=
"isFlow"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<a-form-model
:model=
"formEnd"
ref=
"formEnd"
:rules=
"rules"
:label-col=
"
{ span: 6 }"
:wrapper-col="{ span: 16 }"
>
<div
class=
"color_title"
>
任务结束
</div>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"办理时长"
>
<a-input
:disabled=
"isFlow"
v-model=
"formEnd.flowTime"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"转外时限"
>
<a-input
:disabled=
"isFlow"
v-model=
"formEnd.flowLimit"
:min=
"1"
suffix=
"个工作日"
/>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
:label-col=
"
{ span: 3 }"
:wrapper-col="{ span: 20 }"
label="办理流程说明"
>
<a-textarea
:disabled=
"isFlow"
placeholder=
"请输入流程说明"
v-model=
"formEnd.flowDesc"
allow-clear
/>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<div
class=
"btn"
>
<a-button
:disabled=
"isFlow"
type=
"primary"
style=
"margin-right: 10px"
@
click=
"onSubmit"
:loading=
"isLoading"
>
确定
</a-button
<div
class=
"header"
>
<a-button
type=
"primary"
@
click=
"showModal"
>
新增流程
</a-button>
</div>
<div
class=
"table-content mt20"
>
<!-- 表格 -->
<a-table
bordered
:loading=
"loading"
:pagination=
"
{
showTotal: (total) => `共 ${total} 条`,
current: current,
total: total,
pageSize: size,
showSizeChanger: true,
showQuickJumper: true,
pageSizeOptions: pageSizeOptions,
onChange: handlechange,
onShowSizeChange: showSizeChange,
}"
:scroll="{ y: 550 }"
:columns="columns"
:data-source="tableData"
:rowKey="(record) => record.id"
>
<a-button
:disabled=
"isFlow"
@
click=
"resetForm"
>
重置
</a-button>
<template
slot=
"num"
slot-scope=
"text, record, index"
>
<span>
{{
(
current
-
1
)
*
size
+
index
+
1
}}
</span>
</
template
>
<
template
slot=
"active"
slot-scope=
"text"
>
<a-space
size=
"middle"
>
<a
class=
"edit"
@
click=
"handleEdit(text)"
>
编辑
</a>
<a
class=
"delete"
@
click=
"handleDel(text.id)"
>
删除
</a>
</a-space>
</
template
>
</a-table>
</div>
<!-- 新增 -->
<addFlow
ref=
"addFlow"
:title=
"title"
:visible.sync=
"visible"
@
addSuccess=
"getMatterflowlimitList"
></addFlow>
</div>
</template>
<
script
>
import
{
addMatterflowlimit
}
from
"
@/services/matter
"
;
import
{
getMatterflowlimitList
,
delMatterflowlimit
}
from
"
@/services/matter
"
;
import
addFlow
from
"
../group/addFlow.vue
"
;
import
local
from
"
@/utils/local
"
;
const
flowNameItem
=
[
"
申请
"
,
"
受理
"
,
"
审核
"
,
"
办结
"
,
"
任务结束
"
];
export
default
{
components
:
{
addFlow
,
},
data
()
{
return
{
flowNameItem
,
isFlow
:
true
,
isLoading
:
false
,
matterList
:
[],
formApply
:
{
flowName
:
"
申请
"
,
// 流程名称
flowTime
:
""
,
// 办理时长
flowLimit
:
""
,
// 转外时限
flowDesc
:
""
,
// 说明
const
columns
=
[
{
title
:
"
序号
"
,
dataIndex
:
"
num
"
,
width
:
"
5%
"
,
scopedSlots
:
{
customRender
:
"
num
"
},
},
formAccept
:
{
flowName
:
"
受理
"
,
// 流程名称
flowTime
:
""
,
// 办理时长
flowLimit
:
""
,
// 转外时限
flowDesc
:
""
,
// 说明
{
title
:
"
流程名称
"
,
customRender
:
(
text
)
=>
{
return
text
.
flowName
?
text
.
flowName
:
"
--
"
;
},
},
formAudit
:
{
flowName
:
"
审核
"
,
// 流程名称
flowTime
:
""
,
// 办理时长
flowLimit
:
""
,
// 转外时限
flowDesc
:
""
,
// 说明
{
title
:
"
办理时长
"
,
customRender
:
(
text
)
=>
{
return
text
.
flowTime
?
text
.
flowTime
+
"
个工作日
"
:
"
--
"
;
},
},
formConclude
:
{
flowName
:
"
办结
"
,
// 流程名称
flowTime
:
""
,
// 办理时长
flowLimit
:
""
,
// 转外时限
flowDesc
:
""
,
// 说明
{
title
:
"
转外时限
"
,
customRender
:
(
text
)
=>
{
return
text
.
flowLimit
?
text
.
flowLimit
+
"
个工作日
"
:
"
--
"
;
},
},
formEnd
:
{
flowName
:
"
任务结束
"
,
// 流程名称
flowTime
:
""
,
// 办理时长
flowLimit
:
""
,
// 转外时限
flowDesc
:
""
,
// 说明
{
title
:
"
流程说明
"
,
ellipsis
:
true
,
width
:
"
20%
"
,
customRender
:
(
text
)
=>
{
return
text
.
flowDesc
?
text
.
flowDesc
:
"
--
"
;
},
},
rules
:
{
// flowName: [
// { required: true, message: "流程名称不能为空", trigger: "change" },
// ],
// flowTime: [
// { required: true, message: "办理时长不能为空", trigger: "blur" },
// ],
// flowLimit: [
// { required: true, message: "转外时限不能为空", trigger: "blur" },
// ],
// flowDesc: [
// { required: true, message: "流程说明不能为空", trigger: "blur" },
// ],
{
title
:
"
操作
"
,
width
:
"
12%
"
,
scopedSlots
:
{
customRender
:
"
active
"
},
},
];
return
{
columns
,
loading
:
false
,
tableData
:
[],
current
:
1
,
size
:
10
,
total
:
0
,
pageSizeOptions
:
[
"
10
"
,
"
30
"
,
"
50
"
,
"
100
"
],
title
:
"
新增流程
"
,
visible
:
false
,
};
},
created
()
{
// this.getSiteMatter
List();
this
.
getMatterflowlimit
List
();
},
methods
:
{
// 获取站点事项列表
// async getSiteMatterList() {
// this.siteId = this.$route.query.siteId;
// let res = await getSiteMatterList({ siteId: this.siteId });
// this.matterList = res.data.data.data;
// },
// // 事项下拉选择
// handleSelect(val, node) {
// let { text } = node.componentOptions.children[0];
// this.formData.matterName = text;
// },
onSubmit
()
{
if
(
local
.
getLocal
(
"
matter
"
))
{
this
.
isLoading
=
true
;
let
arr
=
[
this
.
formApply
,
this
.
formAccept
,
this
.
formAudit
,
this
.
formConclude
,
this
.
formEnd
,
];
let
num
=
0
;
let
fn
=
async
()
=>
{
if
(
num
>
arr
.
length
-
1
)
{
this
.
$message
.
success
(
"
设置流程成功
"
);
this
.
isLoading
=
false
;
return
;
}
let
res
=
await
addMatterflowlimit
({
...
arr
[
num
],
matterId
:
local
.
getLocal
(
"
matter
"
).
id
,
matterName
:
local
.
getLocal
(
"
matter
"
).
matterName
,
source
:
1
,
});
let
{
code
}
=
res
.
data
;
if
(
code
===
1
)
{
num
++
;
}
fn
();
};
fn
();
}
else
{
// 新增
showModal
()
{
if
(
!
local
.
getLocal
(
"
matter
"
))
{
this
.
$message
.
warning
(
"
请先新增基本信息
"
);
return
;
}
this
.
title
=
"
新增流程
"
;
this
.
visible
=
true
;
this
.
$refs
.
addFlow
.
onAdd
();
},
// 获取流程列表
async
getMatterflowlimitList
()
{
if
(
!
local
.
getLocal
(
"
matter
"
))
return
;
this
.
loading
=
true
;
let
res
=
await
getMatterflowlimitList
({
page
:
this
.
current
,
size
:
this
.
size
,
matterId
:
local
.
getLocal
(
"
matter
"
).
id
,
matterName
:
local
.
getLocal
(
"
matter
"
).
matterName
,
});
this
.
loading
=
false
;
if
(
res
.
data
.
code
===
1
)
{
let
{
data
}
=
res
.
data
.
data
;
this
.
tableData
=
data
;
}
},
resetForm
()
{
Object
.
assign
(
this
.
formApply
,
this
.
$options
.
data
().
formApply
);
Object
.
assign
(
this
.
formAccept
,
this
.
$options
.
data
().
formAccept
);
Object
.
assign
(
this
.
formAudit
,
this
.
$options
.
data
().
formAudit
);
Object
.
assign
(
this
.
formConclude
,
this
.
$options
.
data
().
formConclude
);
Object
.
assign
(
this
.
formEnd
,
this
.
$options
.
data
().
formEnd
);
// 分页
handlechange
(
num
)
{
this
.
current
=
num
;
},
// 改变每页显示数量
showSizeChange
(
cur
,
size
)
{
this
.
current
=
cur
;
this
.
size
=
size
;
},
handleEdit
(
row
)
{
this
.
title
=
"
编辑流程
"
;
this
.
visible
=
true
;
this
.
$refs
.
addFlow
.
onEdit
(
row
);
},
// 删除
async
handleDel
(
id
)
{
let
_this
=
this
;
this
.
$confirm
({
title
:
"
系统提示
"
,
content
:
"
删除不可恢复,确定要删除吗?
"
,
okText
:
"
确定
"
,
okType
:
"
danger
"
,
cancelText
:
"
取消
"
,
centered
:
true
,
icon
:
"
exclamation-circle
"
,
maskClosable
:
true
,
async
onOk
()
{
let
res
=
await
delMatterflowlimit
({
id
});
let
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
1
)
{
_this
.
$message
.
success
(
msg
);
_this
.
getMatterflowlimitList
();
}
},
onCancel
()
{
console
.
log
(
"
Cancel
"
);
},
});
},
},
};
...
...
@@ -361,47 +184,5 @@ export default {
<
style
lang=
"less"
scoped
>
.flow {
padding: 0 15px;
.color_title {
margin-left: 15px;
position: relative;
margin-bottom: 15px;
&::before {
content: "";
width: 4px;
height: 20px;
position: absolute;
top: 1px;
left: -16px;
background-color: rgba(5, 149, 253, 1);
}
}
.ant-form {
width: 800px;
}
// /deep/.ant-input {
// height: 200px !important;
// }
// .ant-input-number {
// width: 300px;
// }
}
.ant-form-item {
display: flex;
align-items: center !important;
margin-bottom: 20px;
}
// /deep/.ant-form-item-control {
// margin-bottom: 10px;
// }
/deep/.ant-form-explain {
position: absolute;
}
.btn {
width: 800px;
text-align: center;
margin-bottom: 20px;
}
/deep/.ant-input {
width: 100%;
}
</
style
>
\ No newline at end of file
base-manager-ui/admin/src/pages/basicset/addmatter/group/addFlow.vue
0 → 100644
View file @
09eb6ce6
<
template
>
<div>
<a-modal
:maskClosable=
"false"
v-model=
"Visible"
:title=
"title"
@
cancel=
"handleClose"
>
<a-form-model
:model=
"form"
:label-col=
"
{ span: 4 }"
:wrapper-col="{ span: 20 }"
ref="form"
:rules="rules"
>
<a-form-model-item
label=
"流程名称"
prop=
"flowName"
>
<a-input
placeholder=
"请输入流程名称"
v-model=
"form.flowName"
/>
</a-form-model-item>
<a-form-model-item
label=
"办理时长"
prop=
"flowTime"
>
<a-input
suffix=
"个工作日"
placeholder=
"请输入办理时长"
v-model=
"form.flowTime"
/>
</a-form-model-item>
<a-form-model-item
label=
"转外时限"
prop=
"flowLimit"
>
<a-input
suffix=
"个工作日"
placeholder=
"请输入转外时限"
v-model=
"form.flowLimit"
/>
</a-form-model-item>
<a-form-model-item
label=
"流程说明"
prop=
"flowDesc"
>
<a-textarea
placeholder=
"请输入流程说明"
v-model=
"form.flowDesc"
allow-clear
:auto-size=
"
{ minRows: 4, maxRows: 6 }"
/>
</a-form-model-item>
</a-form-model>
<div
slot=
"footer"
>
<a-button
@
click=
"handleReset"
>
重置
</a-button>
<a-button
type=
"primary"
@
click=
"handleOk"
>
确定
</a-button>
</div>
</a-modal>
</div>
</
template
>
<
script
>
import
{
addMatterflowlimit
}
from
"
@/services/matter
"
;
import
local
from
"
@/utils/local
"
;
export
default
{
props
:
{
title
:
{
required
:
true
,
type
:
String
,
default
:
"
新增流程
"
,
},
visible
:
{
required
:
true
,
type
:
Boolean
,
default
:
false
,
},
},
data
()
{
return
{
form
:
{
flowName
:
""
,
//名称
flowTime
:
""
,
//办理时长
flowLimit
:
""
,
//转外时限
flowDesc
:
""
,
//说明
source
:
1
,
//来源
},
rules
:
{
flowName
:
[
{
message
:
"
请输入流程名称
"
,
required
:
true
,
trigger
:
"
blur
"
},
],
},
};
},
computed
:
{
Visible
:
{
get
()
{
return
this
.
visible
;
},
set
(
val
)
{
this
.
$emit
(
"
update:visible
"
,
val
);
},
},
},
methods
:
{
handleOk
()
{
this
.
$refs
.
form
.
validate
(
async
(
valid
)
=>
{
if
(
valid
)
{
let
res
=
await
addMatterflowlimit
({
...
this
.
form
,
matterId
:
local
.
getLocal
(
"
matter
"
).
id
,
matterName
:
local
.
getLocal
(
"
matter
"
).
matterName
,
});
let
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
1
)
{
this
.
$message
.
success
(
msg
);
this
.
$emit
(
"
addSuccess
"
);
this
.
handleClose
();
}
}
});
},
onAdd
()
{
Object
.
assign
(
this
.
form
,
this
.
$options
.
data
().
form
);
this
.
form
.
id
&&
this
.
$delete
(
this
.
form
,
"
id
"
);
},
onEdit
(
data
)
{
this
.
form
=
{
...
data
};
},
handleReset
()
{
this
.
$refs
.
form
.
resetFields
();
},
handleClose
()
{
this
.
$refs
.
form
.
resetFields
();
this
.
Visible
=
false
;
},
},
};
</
script
>
<
style
lang=
"less"
scoped
>
</
style
>
\ No newline at end of file
base-manager-ui/admin/src/pages/basicset/addmatter/group/addPursuant.vue
View file @
09eb6ce6
...
...
@@ -17,21 +17,6 @@
:rules=
"rules"
:model=
"form"
>
<!-- <a-form-model-item label="所属事项" prop="matterId">
<a-select
allowClear
@select="handleSelect"
v-model="form.matterId"
placeholder="请选择所属事项"
>
<a-select-option
v-for="v in matterList"
:key="v.id"
:value="v.matterId"
>{{ v.matterName }}</a-select-option
>
</a-select>
</a-form-model-item> -->
<a-form-model-item
label=
"法规名称"
prop=
"policyName"
>
<a-input
placeholder=
"请输入法规名称"
v-model=
"form.policyName"
/>
</a-form-model-item>
...
...
base-manager-ui/admin/src/pages/basicset/addmatter/group/addmaterials.vue
View file @
09eb6ce6
...
...
@@ -4,6 +4,7 @@
width=
"820px"
:visible=
"Visible"
@
cancel=
"handleOff"
:maskClosable=
"false"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleInit"
>
重置
</a-button>
...
...
@@ -23,7 +24,7 @@
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
prop=
"materialProperty"
label=
"材料形式
:
"
>
<a-form-model-item
prop=
"materialProperty"
label=
"材料形式"
>
<a-select
v-model=
"form.materialProperty"
placeholder=
"请选择材料形式"
...
...
@@ -436,8 +437,8 @@ export default {
onEdit
(
data
)
{
this
.
addTitle
=
"
编辑材料
"
;
let
{
matterDatumFileList
}
=
data
;
let
emptyFile
=
matterDatumFileList
.
filter
((
v
)
=>
v
.
filetype
==
=
2
);
let
exampleFile
=
matterDatumFileList
.
filter
((
v
)
=>
v
.
filetype
==
=
1
);
let
emptyFile
=
matterDatumFileList
.
filter
((
v
)
=>
v
.
filetype
==
2
);
let
exampleFile
=
matterDatumFileList
.
filter
((
v
)
=>
v
.
filetype
==
1
);
if
(
emptyFile
.
length
>
0
)
{
this
.
fileList2
=
emptyFile
.
map
((
v
)
=>
{
return
{
...
...
base-manager-ui/admin/src/pages/basicset/addmatter/group/downloadTable.vue
View file @
09eb6ce6
...
...
@@ -104,11 +104,9 @@ export default {
{
responseType
:
"
blob
"
}
);
let
data
=
res
.
data
;
console
.
log
(
res
);
const
blob
=
new
Blob
([
data
],
{
type
:
type
,
});
console
.
log
(
blob
);
const
link
=
document
.
createElement
(
"
a
"
);
link
.
href
=
URL
.
createObjectURL
(
blob
);
link
.
setAttribute
(
"
download
"
,
row
.
fileName
);
// 设置下载文件名称
...
...
@@ -118,54 +116,8 @@ export default {
},
handleClick
(
row
)
{
// let res = await download(
// { datumId: row.datumId },
// { responseType: "blob" }
// );
// let data = res.data;
// console.log(res);
// const blob = new Blob([data], {
// type: "application/octet-stream",
// });
// const link = document.createElement("a");
// link.href = URL.createObjectURL(blob);
// link.setAttribute("download", row.fileName); // 设置下载文件名称
// document.body.appendChild(link);
// link.click();
// document.body.appendChild(link);
let
index
=
row
.
fileUrl
.
lastIndexOf
(
"
.
"
);
let
str
=
row
.
fileUrl
.
slice
(
index
+
1
);
console
.
log
(
str
);
// switch (str) {
// case "jpg" || "jpeg":
// this.downloadFile(row, "image/jpeg");
// break;
// case "png":
// this.downloadFile(row, "image/png");
// break;
// case "xls":
// this.downloadFile(row, "application/vnd.ms-excel");
// break;
// case "xlsx":
// this.downloadFile(
// row,
// "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
// );
// break;
// case "doc":
// this.downloadFile(row, "application/msword");
// break;
// case "docx":
// this.downloadFile(
// row,
// "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
// );
// break;
// case "pdf":
// this.downloadFile(row, "application/pdf");
// break;
// }
if
(
str
===
"
png
"
||
str
===
"
jpg
"
||
str
===
"
jpeg
"
)
{
this
.
downloadByBlob
(
row
.
fileUrl
,
row
.
fileName
);
}
else
{
...
...
base-manager-ui/admin/src/pages/basicset/addmatter/group/materialDetails.vue
View file @
09eb6ce6
...
...
@@ -5,163 +5,61 @@
@
cancel=
"Visible = false"
:footer=
"null"
title=
"查看更多"
width=
"50%"
>
<a-form-model
:model=
"detailsData"
:label-col=
"
{ span: 10 }"
:wrapper-col="{ span: 14 }"
>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"材料名称"
:label-col=
"
{ span: 5 }"
:wrapper-col="{ span: 19 }"
>
<span>
{{
detailsData
.
materialName
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"所属事项"
:label-col=
"
{ span: 5 }"
:wrapper-col="{ span: 19 }"
>
<span>
{{
detailsData
.
matterName
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"材料形式:"
>
<span>
{{
detailsData
.
materialProperty
}}
</span>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"材料必要性:"
>
<span>
{{
detailsData
.
isMust
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"材料类型:"
>
<span>
{{
detailsData
.
materialType
}}
</span>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"电子材料格式:"
>
<span>
{{
detailsData
.
electronicgs
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"来源渠道:"
>
<span>
{{
detailsData
.
materialSource
}}
</span>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"纸质材料份数:"
>
<span>
{{
detailsData
.
paperNum
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"纸质材料规格:"
>
<span>
{{
detailsData
.
paperGg
}}
</span>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"减免模式:"
>
<span>
{{
detailsData
.
jianmMs
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"盖印方式:"
>
<span>
{{
detailsData
.
sealWay
}}
</span>
</a-form-model-item>
</a-col>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"是否减免:"
>
<span>
{{
detailsData
.
isjianm
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"12"
>
<a-form-model-item
label=
"是否容缺:"
>
<span>
{{
detailsData
.
isLack
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"来源渠道说明:"
:label-col=
"
{ span: 5 }"
:wrapper-col="{ span: 19 }"
>
<span>
{{
detailsData
.
materialSourceSm
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"填报须知"
:label-col=
"
{ span: 5 }"
:wrapper-col="{ span: 19 }"
>
<span>
{{
detailsData
.
remarkSub
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"受理标准"
:label-col=
"
{ span: 5 }"
:wrapper-col="{ span: 19 }"
>
<span>
{{
detailsData
.
summary
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
label=
"提供材料依据"
:label-col=
"
{ span: 5 }"
:wrapper-col="{ span: 19 }"
>
<span>
{{
detailsData
.
clauseContent
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
<a-row
:gutter=
"[8, 20]"
type=
"flex"
justify=
"start"
>
<a-col
:span=
"24"
>
<a-form-model-item
:label-col=
"
{ span: 5 }"
:wrapper-col="{ span: 19 }"
label="备注:"
>
<span>
{{
detailsData
.
remark
}}
</span>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<a-descriptions
bordered
:column=
"2"
>
<a-descriptions-item
label=
"材料名称"
:span=
"2"
>
{{
detailsData
.
materialName
}}
</a-descriptions-item>
<a-descriptions-item
label=
"材料形式"
>
{{
filterData
(
detailsData
.
materialProperty
,
dict
.
materialProperty
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"材料必要性"
>
{{
filterData
(
detailsData
.
isMust
,
dict
.
isMust
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"材料类型"
>
{{
filterData
(
detailsData
.
materialType
,
dict
.
materialType
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"电子材料格式"
>
{{
filterData
(
detailsData
.
electronicgs
,
dict
.
electronicgs
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"来源渠道"
>
{{
filterData
(
detailsData
.
materialSource
,
dict
.
materialSource
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"来源渠道说明"
>
{{
detailsData
.
materialSourceSm
||
"
--
"
}}
</a-descriptions-item>
<a-descriptions-item
label=
"纸质材料份数"
>
{{
detailsData
.
paperNum
||
"
--
"
}}
</a-descriptions-item>
<a-descriptions-item
label=
"纸质材料规格"
>
{{
filterData
(
detailsData
.
paperGg
,
dict
.
paperGg
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"盖章或盖手印方式"
>
{{
filterData
(
detailsData
.
sealWay
,
dict
.
sealWay
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"是否容缺"
>
{{
filterData
(
detailsData
.
isLack
,
dict
.
isLack
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"是否减免"
>
{{
filterData
(
detailsData
.
isjianm
,
dict
.
isjianm
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"减免模式"
>
{{
filterData
(
detailsData
.
jianmMs
,
dict
.
jianmMs
)
}}
</a-descriptions-item>
<a-descriptions-item
label=
"填报须知"
:span=
"2"
>
{{
detailsData
.
remarkSub
||
"
--
"
}}
</a-descriptions-item>
<a-descriptions-item
label=
"受理标准"
:span=
"2"
>
{{
detailsData
.
summary
||
"
--
"
}}
</a-descriptions-item>
<a-descriptions-item
label=
"要求提供材料的依据"
:span=
"2"
>
{{
detailsData
.
clauseContent
||
"
--
"
}}
</a-descriptions-item>
<a-descriptions-item
label=
"备注"
:span=
"2"
>
{{
detailsData
.
remark
||
"
--
"
}}
</a-descriptions-item>
</a-descriptions>
</a-modal>
</div>
</
template
>
...
...
@@ -170,10 +68,19 @@
export
default
{
props
:
{
detailsVisible
:
{
required
:
true
,
type
:
Boolean
,
default
:
false
,
},
detailsData
:
{
required
:
true
,
type
:
Object
,
default
()
{
return
{};
},
},
dict
:
{
required
:
true
,
type
:
Object
,
default
()
{
return
{};
...
...
@@ -190,12 +97,24 @@ export default {
},
},
},
methods
:
{
// 过滤数据
filterData
(
val
,
dict
=
{})
{
let
str
=
""
;
Object
.
keys
(
dict
).
forEach
((
keys
)
=>
{
if
(
val
==
keys
)
{
str
=
dict
[
keys
];
}
});
return
str
||
"
--
"
;
},
},
};
</
script
>
<
style
lang=
"less"
scoped
>
/deep/.ant-modal-body {
height:
5
00px;
height:
6
00px;
overflow-y: scroll;
}
</
style
>
\ No newline at end of file
base-manager-ui/admin/src/pages/basicset/dept/components/addwindow.vue
View file @
09eb6ce6
...
...
@@ -196,7 +196,7 @@ export default {
deptId
:
undefined
,
// 部门id
deptName
:
undefined
,
// 部门名称
deptNumber
:
""
,
// 部门编号
name
:
""
,
// 窗口名称
name
:
"
综合窗口
"
,
// 窗口名称
englishName
:
""
,
// 英语窗口名称
region
:
""
,
// 区域
englishRegion
:
""
,
// 英语区域
...
...
base-manager-ui/admin/src/services/matter.js
View file @
09eb6ce6
...
...
@@ -145,6 +145,14 @@ export async function addMatterintermediary(data) {
export
async
function
addMatterflowlimit
(
data
)
{
return
request
(
matterflowlimit
.
save
,
METHOD
.
POST
,
data
);
}
// 获取办理流程列表
export
async
function
getMatterflowlimitList
(
data
)
{
return
request
(
matterflowlimit
.
list
,
METHOD
.
POST
,
data
);
}
// 删除流程
export
async
function
delMatterflowlimit
(
data
)
{
return
request
(
matterflowlimit
.
delete
,
METHOD
.
GET
,
data
);
}
/**
* 收费标准
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment