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
1e88e991
authored
2024-02-06 16:53:43 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
受理申请
1 parent
7a4e9519
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
21 deletions
src/views/ywbl/ywsq/components/cfdj.vue
src/views/ywbl/ywsq/components/diyaq.vue
src/views/ywbl/ywsq/components/cfdj.vue
View file @
1e88e99
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-02-0
2 14:56:22
* @LastEditTime: 2024-02-0
6 14:43:33
-->
<
template
>
<div
class=
"from-clues"
>
...
...
@@ -76,7 +76,7 @@
</div>
<div
class=
"submit_button"
>
<el-button
@
click=
"$popupCacel"
>
取消
</el-button>
<el-button
type=
"primary"
plain
@
click=
"
submitForm
"
:loading=
"loading"
v-if=
"sqywInfo.isworkFrame"
>
添加单元
</el-button>
<el-button
type=
"primary"
plain
@
click=
"
handleAdd
"
:loading=
"loading"
v-if=
"sqywInfo.isworkFrame"
>
添加单元
</el-button>
<el-button
type=
"primary"
plain
@
click=
"submitForm"
:loading=
"loading"
v-else
>
发起申请
</el-button>
</div>
</div>
...
...
@@ -155,14 +155,9 @@
* @description: submitForm
* @author: renchao
*/
submitForm
()
{
handleAdd
()
{
let
that
=
this
if
(
this
.
bdcdysz
.
length
==
0
)
{
this
.
$message
.
error
(
"请至少选择一条数据"
);
return
;
}
this
.
loading
=
true
if
(
this
.
sqywInfo
.
isworkFrame
)
{
this
.
loading
=
true
;
store
.
dispatch
(
'user/reMenuRefresh'
,
false
)
againAddSldy
({
bsmSqyw
:
that
.
sqywInfo
.
bsmSqyw
,
...
...
@@ -188,7 +183,14 @@
}).
catch
(()
=>
{
that
.
loading
=
false
})
}
else
{
},
submitForm
()
{
let
that
=
this
if
(
this
.
bdcdysz
.
length
==
0
)
{
this
.
$message
.
error
(
"请至少选择一条数据"
);
return
;
}
this
.
loading
=
true
if
(
!
that
.
isJump
)
{
startBusinessFlow
({
bsmSqyw
:
that
.
sqywInfo
.
bsmSqyw
,
...
...
@@ -239,7 +241,6 @@
that
.
loading
=
false
})
}
}
},
/**
* @description: handleSelectionChange
...
...
src/views/ywbl/ywsq/components/diyaq.vue
View file @
1e88e99
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-02-0
2 16:35:05
* @LastEditTime: 2024-02-0
6 14:43:44
-->
<
template
>
<!-- 抵押权利信息查询 -->
...
...
@@ -67,7 +67,7 @@
</div>
<div
class=
"submit_button"
>
<el-button
@
click=
"$popupCacel"
>
取消
</el-button>
<el-button
type=
"primary"
plain
@
click=
"
submitFormClick()
"
:loading=
"loading"
v-if=
"sqywInfo.isworkFrame"
>
添加单元
</el-button>
<el-button
type=
"primary"
plain
@
click=
"
handleAdd
"
:loading=
"loading"
v-if=
"sqywInfo.isworkFrame"
>
添加单元
</el-button>
<el-button
type=
"primary"
plain
@
click=
"submitFormClick()"
:loading=
"loading"
v-else
>
发起申请
</el-button>
</div>
</div>
...
...
@@ -147,14 +147,9 @@
* @description: submitFormClick
* @author: renchao
*/
submitFormClick
()
{
handleAdd
()
{
let
that
=
this
if
(
this
.
bdcdysz
.
length
==
0
)
{
this
.
$message
.
error
(
"请至少选择一条数据"
);
return
;
}
this
.
loading
=
true
;
if
(
this
.
sqywInfo
.
isworkFrame
)
{
store
.
dispatch
(
'user/reMenuRefresh'
,
false
)
againAddSldy
({
bsmSqyw
:
that
.
sqywInfo
.
bsmSqyw
,
...
...
@@ -180,7 +175,14 @@
}).
catch
(()
=>
{
that
.
loading
=
false
})
}
else
{
},
submitFormClick
()
{
let
that
=
this
if
(
this
.
bdcdysz
.
length
==
0
)
{
this
.
$message
.
error
(
"请至少选择一条数据"
);
return
;
}
this
.
loading
=
true
;
startBusinessFlow
({
bsmSqyw
:
this
.
sqywInfo
.
bsmSqyw
,
bdcdysz
:
this
.
bdcdysz
,
...
...
@@ -210,7 +212,6 @@
}).
catch
(()
=>
{
this
.
loading
=
false
})
}
},
/**
* @description: handleSelectionChange
...
...
Please
register
or
sign in
to post a comment