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
96fcfa3a
Commit
96fcfa3a
authored
Mar 25, 2025
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修改基础事项办理渠道和基本信息编辑
parent
3425da27
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
21 deletions
+66
-21
base-manager-ui/admin/.env.development
base-manager-ui/admin/.env.development
+4
-4
base-manager-ui/admin/src/pages/basicset/addmatter/components/AddSynopsis.vue
...n/src/pages/basicset/addmatter/components/AddSynopsis.vue
+20
-5
base-manager-ui/admin/src/pages/basicset/addmatter/components/InternetChannel.vue
...c/pages/basicset/addmatter/components/InternetChannel.vue
+13
-10
base-manager-ui/admin/src/pages/basicset/addmatter/components/baseMessage.vue
...n/src/pages/basicset/addmatter/components/baseMessage.vue
+7
-2
base-manager-ui/admin/src/services/basicsetApi.js
base-manager-ui/admin/src/services/basicsetApi.js
+6
-0
base-manager-ui/admin/src/services/matter.js
base-manager-ui/admin/src/services/matter.js
+16
-0
No files found.
base-manager-ui/admin/.env.development
View file @
96fcfa3a
#开发环境
#开发环境
NODE_ENV = "development"
NODE_ENV = "development"
#
VUE_APP_API_BASE_URL=http://192.168.0.250:11071
VUE_APP_API_BASE_URL=http://192.168.0.250:11071
#
VUE_APP_API_IMG_URL=http://192.168.0.250:11071/
VUE_APP_API_IMG_URL=http://192.168.0.250:11071/
VUE_APP_API_BASE_URL=http://192.168.0.98:11078
#
VUE_APP_API_BASE_URL=http://192.168.0.98:11078
VUE_APP_API_IMG_URL=http://192.168.0.98:11078/
#
VUE_APP_API_IMG_URL=http://192.168.0.98:11078/
#VUE_APP_API_BASE_URL=http://10.12.185.213:11071
#VUE_APP_API_BASE_URL=http://10.12.185.213:11071
\ No newline at end of file
base-manager-ui/admin/src/pages/basicset/addmatter/components/AddSynopsis.vue
View file @
96fcfa3a
...
@@ -141,7 +141,10 @@
...
@@ -141,7 +141,10 @@
<a-row>
<a-row>
<a-col
:span=
"8"
>
<a-col
:span=
"8"
>
<a-form-model-item
label=
"跳转地址"
props=
"netApplyUrl"
>
<a-form-model-item
label=
"跳转地址"
props=
"netApplyUrl"
>
<a-input
v-model=
"baseform.netApplyUrl"
placeholder=
"请输入跳转地址"
/>
<a-input
v-model=
"baseform.netApplyUrl"
placeholder=
"请输入跳转地址"
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:span=
"8"
>
<a-col
:span=
"8"
>
...
@@ -428,11 +431,11 @@ export default {
...
@@ -428,11 +431,11 @@ export default {
}
}
},
},
},
},
created
()
{
async
created
()
{
this
.
getDeptListData
();
await
this
.
getDeptListData
();
if
(
this
.
$route
.
query
.
edit
==
1
)
{
if
(
this
.
$route
.
query
.
edit
==
1
)
{
let
matterId
=
this
.
$route
.
query
.
matterId
;
let
matterId
=
this
.
$route
.
query
.
matterId
;
this
.
getMatterInfo
(
matterId
);
await
this
.
getMatterInfo
(
matterId
);
}
}
if
(
!
this
.
baseform
.
matterNo
)
{
if
(
!
this
.
baseform
.
matterNo
)
{
this
.
baseform
.
matterNo
=
this
.
$nanoid
();
this
.
baseform
.
matterNo
=
this
.
$nanoid
();
...
@@ -458,7 +461,19 @@ export default {
...
@@ -458,7 +461,19 @@ export default {
async
getMatterInfo
(
id
)
{
async
getMatterInfo
(
id
)
{
let
res
=
await
getMatterInfo
({
id
});
let
res
=
await
getMatterInfo
({
id
});
if
(
res
.
data
.
code
===
1
)
{
if
(
res
.
data
.
code
===
1
)
{
this
.
baseform
=
res
.
data
.
data
;
this
.
baseform
=
{
...
res
.
data
.
data
};
this
.
baseform
.
promiseTimeLimitShow
==
""
?
(
this
.
isPromise
=
""
)
:
this
.
baseform
.
promiseTimeLimitShow
==
0
||
this
.
baseform
.
promiseTimeLimitShow
==
"
即办
"
?
(
this
.
isPromise
=
"
1
"
)
:
(
this
.
isPromise
=
"
2
"
);
this
.
baseform
.
legalTimeLimitShow
==
""
?
(
this
.
isTimely
=
""
)
:
this
.
baseform
.
legalTimeLimitShow
==
0
||
this
.
baseform
.
legalTimeLimitShow
==
"
即办
"
?
(
this
.
isTimely
=
"
1
"
)
:
(
this
.
isTimely
=
"
2
"
);
this
.
curDpt
=
{
this
.
curDpt
=
{
key
:
this
.
baseform
.
deptCode
,
key
:
this
.
baseform
.
deptCode
,
label
:
this
.
baseform
.
deptName
,
label
:
this
.
baseform
.
deptName
,
...
...
base-manager-ui/admin/src/pages/basicset/addmatter/components/InternetChannel.vue
View file @
96fcfa3a
...
@@ -107,13 +107,14 @@ export default {
...
@@ -107,13 +107,14 @@ export default {
methods
:
{
methods
:
{
handleAdd
(
i
)
{
handleAdd
(
i
)
{
this
.
arrType
.
push
({
this
.
arrType
&&
name
:
""
,
this
.
arrType
.
push
({
qrcode
:
""
,
name
:
""
,
appType
:
i
==
1
?
0
:
1
,
qrcode
:
""
,
url
:
""
,
appType
:
i
==
1
?
0
:
1
,
icon
:
""
,
url
:
""
,
});
icon
:
""
,
});
},
},
async
handleDel
(
val
,
i
)
{
async
handleDel
(
val
,
i
)
{
this
.
arrType
=
this
.
arrType
.
filter
((
v
,
index
)
=>
index
!=
i
);
this
.
arrType
=
this
.
arrType
.
filter
((
v
,
index
)
=>
index
!=
i
);
...
@@ -196,8 +197,9 @@ export default {
...
@@ -196,8 +197,9 @@ export default {
margin-bottom: 20px;
margin-bottom: 20px;
.close_icon {
.close_icon {
position: absolute;
position: absolute;
lef
t: 0px;
righ
t: 0px;
top: 0px;
top: 0px;
font-size: 18px;
font-size: 18px;
color: #f56c6c;
color: #f56c6c;
font-weight: 700;
font-weight: 700;
...
@@ -205,7 +207,7 @@ export default {
...
@@ -205,7 +207,7 @@ export default {
.add_text {
.add_text {
border-width: 0px;
border-width: 0px;
position: absolute;
position: absolute;
righ
t: 0px;
lef
t: 0px;
top: 0px;
top: 0px;
width: 40px;
width: 40px;
height: 20px;
height: 20px;
...
@@ -215,7 +217,8 @@ export default {
...
@@ -215,7 +217,8 @@ export default {
border-radius: 18px;
border-radius: 18px;
border-top-left-radius: 0px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
// border-bottom-right-radius: 0px;
-moz-box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
...
...
base-manager-ui/admin/src/pages/basicset/addmatter/components/baseMessage.vue
View file @
96fcfa3a
...
@@ -275,7 +275,10 @@
...
@@ -275,7 +275,10 @@
<a-row>
<a-row>
<a-col
:span=
"8"
>
<a-col
:span=
"8"
>
<a-form-model-item
label=
"跳转地址"
props=
"netApplyUrl"
>
<a-form-model-item
label=
"跳转地址"
props=
"netApplyUrl"
>
<a-input
v-model=
"baseform.netApplyUrl"
placeholder=
"请输入跳转地址"
/>
<a-input
v-model=
"baseform.netApplyUrl"
placeholder=
"请输入跳转地址"
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:span=
"8"
>
<a-col
:span=
"8"
>
...
@@ -934,7 +937,6 @@ export default {
...
@@ -934,7 +937,6 @@ export default {
};
};
},
},
created
()
{
created
()
{
this
.
mergeForm
();
this
.
getDeptListData
();
this
.
getDeptListData
();
},
},
computed
:
{
computed
:
{
...
@@ -984,6 +986,9 @@ export default {
...
@@ -984,6 +986,9 @@ export default {
let
{
code
,
data
}
=
res
.
data
;
let
{
code
,
data
}
=
res
.
data
;
if
(
code
===
1
)
{
if
(
code
===
1
)
{
this
.
deptData
=
data
.
data
;
this
.
deptData
=
data
.
data
;
this
.
mergeForm
();
}
else
{
this
.
mergeForm
();
}
}
},
},
...
...
base-manager-ui/admin/src/services/basicsetApi.js
View file @
96fcfa3a
...
@@ -92,6 +92,12 @@ module.exports = {
...
@@ -92,6 +92,12 @@ module.exports = {
delete
:
`
${
BASE_URL
}
/base/matter/accept/delete`
,
delete
:
`
${
BASE_URL
}
/base/matter/accept/delete`
,
exportExcel
:
`
${
BASE_URL
}
/base/matter/accept/exportExcel`
,
exportExcel
:
`
${
BASE_URL
}
/base/matter/accept/exportExcel`
,
},
},
// 事项办理渠道
matterchannel
:
{
list
:
`
${
BASE_URL
}
/base/matter/channel/list`
,
save
:
`
${
BASE_URL
}
/base/matter/channel/batchSave`
,
delete
:
`
${
BASE_URL
}
/base/matter/channel/delete`
,
},
// 事项收费标准
// 事项收费标准
mattercharges
:
{
mattercharges
:
{
list
:
`
${
BASE_URL
}
/base/matter/charges/list`
,
list
:
`
${
BASE_URL
}
/base/matter/charges/list`
,
...
...
base-manager-ui/admin/src/services/matter.js
View file @
96fcfa3a
...
@@ -9,6 +9,7 @@ import {
...
@@ -9,6 +9,7 @@ import {
matterintermediary
,
matterintermediary
,
matterflowlimit
,
matterflowlimit
,
mattercharges
,
mattercharges
,
matterchannel
,
}
from
"
@/services/basicsetApi
"
;
}
from
"
@/services/basicsetApi
"
;
import
{
request
,
METHOD
}
from
"
@/utils/request
"
;
import
{
request
,
METHOD
}
from
"
@/utils/request
"
;
...
@@ -184,3 +185,18 @@ export async function getMattercharges(data) {
...
@@ -184,3 +185,18 @@ export async function getMattercharges(data) {
export
async
function
delMattercharges
(
data
)
{
export
async
function
delMattercharges
(
data
)
{
return
request
(
mattercharges
.
delete
,
METHOD
.
GET
,
data
);
return
request
(
mattercharges
.
delete
,
METHOD
.
GET
,
data
);
}
}
/**
* 办理渠道
*/
// 新增办理渠道
export
async
function
addMatterInternet
(
data
)
{
return
request
(
matterchannel
.
save
,
METHOD
.
POST
,
data
);
}
// 获取办理渠道
export
async
function
getMatterInternetList
(
data
)
{
return
request
(
matterchannel
.
list
,
METHOD
.
POST
,
data
);
}
// 删除办理渠道
export
async
function
delMatterInternet
(
data
)
{
return
request
(
matterchannel
.
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