Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c3c6d59a
authored
2023-08-17 15:26:42 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:业务申请规则修改
1 parent
b31f7fe4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
src/views/system/sqywgz/sqywDetail.vue
src/views/system/sqywgz/sqywDetail.vue
View file @
c3c6d59
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-24 09:47:54
* @LastEditTime: 2023-0
8-17 15:26:20
-->
<
template
>
<div>
...
...
@@ -36,9 +36,9 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"发起业务单元类型"
v-if=
"form.sqdjyw"
>
<el-select
v-model=
"form.sqdjyw.sqywdylx"
placeholder=
"请选择"
class=
"width100"
>
<el-option
v-for=
"item in sqywdylx"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
<el-select
v-model=
"form.sqdjyw.sqywdylx"
placeholder=
"请选择"
class=
"width100"
>
<el-option
v-for=
"item in sqywdylx"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
...
...
@@ -134,7 +134,7 @@
</div>
<div
slot=
"footer"
class=
"dialog_footer text-center"
>
<el-button
@
click=
"$popupCacel()"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"submit"
plain
>
提 交
</el-button>
<el-button
type=
"primary"
@
click=
"submit"
:loading=
"loading"
>
提 交
</el-button>
</div>
</div>
</
template
>
...
...
@@ -152,19 +152,19 @@
default
:
()
=>
{
}
}
},
data
()
{
return
{
loading
:
false
,
key
:
0
,
tn
:
0
,
n
:
0
,
djlxList
:
[],
sqywdylx
:
store
.
getters
.
dictData
[
'sqywdylx'
],
sqywdylx
:
store
.
getters
.
dictData
[
'sqywdylx'
],
options
:
[
{
label
:
"正常申请"
,
value
:
"1"
},
{
label
:
"一并申请"
,
value
:
"2"
},
{
label
:
"补录申请"
,
value
:
"3"
}
],
{
label
:
"正常申请"
,
value
:
"1"
},
{
label
:
"一并申请"
,
value
:
"2"
},
{
label
:
"补录申请"
,
value
:
"3"
}
],
imgUploadUrl
:
uploadUrl
(),
title
:
""
,
activeName
:
"1"
,
...
...
@@ -255,7 +255,7 @@
let
_this
=
this
getSqdjywDetail
(
bsmSqyw
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
_this
.
form
=
res
.
result
;
_this
.
form
=
res
.
result
;
// _this.form.bsmSqyw = res.result.bsmSqyw;
// _this.form.ywDetail = res.result.ywDetail;
// _this.$set(_this.form, 'djqx', res.result.djqx);
...
...
@@ -270,14 +270,15 @@
}
})
},
//提交保存数据
/**
* @description: 提交保存数据
* @author: renchao
*/
submit
()
{
let
that
=
this
;
this
.
loading
=
true
saveSqdjyw
(
this
.
form
).
then
((
res
)
=>
{
this
.
loading
=
false
if
(
res
.
code
==
200
)
{
that
.
$message
({
message
:
"修改成功"
,
...
...
@@ -287,7 +288,6 @@
}
})
},
// 上移下移
/**
* @description: 上移下移
* @param {*} index
...
...
Please
register
or
sign in
to post a comment