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
f2427aed
authored
2022-12-05 10:33:16 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
2 parents
99b5486c
30a7ac05
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
5 deletions
src/api/workflow/diyaqFlow.js
src/views/ywbl/diyaq/slxx.vue
src/views/ywbl/diyaq/slxx200.vue
src/api/workflow/diyaqFlow.js
View file @
f2427ae
...
...
@@ -34,9 +34,13 @@ export function Init (data) {
})
}
// 受理信息保存
export
function
saveData
(
data
)
{
export
function
saveData
(
data
,
djlx
)
{
let
apiUrl
=
"/rest/ywbl/dyaq/saveData"
;
if
(
djlx
==
"400"
){
apiUrl
=
"/rest/ywbl/dyaq/saveLogoutData"
;
}
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/dyaq/saveData'
,
url
:
SERVER
.
SERVERAPI
+
apiUrl
,
method
:
'post'
,
data
})
...
...
src/views/ywbl/diyaq/slxx.vue
View file @
f2427ae
...
...
@@ -284,7 +284,7 @@ export default {
},
methods
:
{
onSubmitClick
()
{
saveData
(
this
.
ruleForm
).
then
((
res
)
=>
{
saveData
(
this
.
ruleForm
,
this
.
propsParam
.
djlx
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
({
showClose
:
true
,
...
...
src/views/ywbl/diyaq/slxx200.vue
View file @
f2427ae
...
...
@@ -216,7 +216,13 @@
</div>
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"登记原因:"
prop=
"djyy"
>
<el-form-item
v-if=
"ruleForm.slywxx.djlx == '400'"
:class=
"flag ? 'marginBot0' : ''"
label=
"注销抵押原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"$route.query.viewtype == 1"
v-model=
"ruleForm.diyaq.zxdyyy"
>
</el-input>
</el-form-item>
<el-form-item
v-else
:class=
"flag ? 'marginBot0' : ''"
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"$route.query.viewtype == 1"
v-model=
"ruleForm.diyaq.djyy"
>
</el-input>
...
...
@@ -272,7 +278,7 @@ export default {
},
methods
:
{
onSubmitClick
()
{
saveData
(
this
.
ruleForm
).
then
((
res
)
=>
{
saveData
(
this
.
ruleForm
,
this
.
propsParam
.
djlx
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
({
showClose
:
true
,
...
...
Please
register
or
sign in
to post a comment