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
fe28a277
authored
2024-03-28 14:45:16 +0800
by
tianhaohao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
into dev
2 parents
b9ec2ba9
0fa3bba0
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
src/views/sqcx/dydjb/components/addDydjb.vue
src/views/sqcx/dydjb/dydjb.vue
src/views/xxba/components/clxx/dialog/clxxAddDialog.vue
src/views/xxba/components/clxx/index.vue
src/views/sqcx/dydjb/components/addDydjb.vue
View file @
fe28a27
<
template
>
<div
v-Loading=
"Loading"
>
<el-steps
:active=
"activeStep"
finish-status=
"success"
>
<el-steps
:active=
"activeStep"
finish-status=
"success"
v-if=
"isADD"
>
<el-step
title=
"条件录入"
></el-step>
<el-step
title=
"查询结果"
></el-step>
</el-steps>
<el-steps
:active=
"activeStep"
finish-status=
"success"
v-else
>
<el-step
title=
"条件录入"
@
click
.
native=
"on_click(0)"
class=
"pointer"
></el-step>
<el-step
title=
"查询结果"
@
click
.
native=
"on_click(2)"
class=
"pointer"
></el-step>
</el-steps>
...
...
@@ -74,6 +79,7 @@
},
data
()
{
return
{
isADD
:
true
,
Loading
:
false
,
activeStep
:
0
,
//是否查询
...
...
@@ -102,6 +108,7 @@
},
mounted
()
{
this
.
loadData
()
this
.
isADD
=
this
.
formData
.
isAdd
if
(
this
.
formData
.
sqcxBsm
!=
''
)
{
this
.
activeStep
=
2
;
this
.
isSearch
=
true
;
...
...
@@ -181,6 +188,7 @@
store
.
dispatch
(
'user/reWorkFresh'
,
true
)
this
.
activeStep
=
2
;
this
.
isSearch
=
true
;
this
.
isADD
=
false
this
.
$nextTick
(()
=>
{
this
.
$refs
.
dydjbInfo
.
setResult
(
res
.
result
)
})
...
...
src/views/sqcx/dydjb/dydjb.vue
View file @
fe28a27
...
...
@@ -132,7 +132,8 @@
*/
openAddDialog
()
{
this
.
$popupDialog
(
"房屋明细查询"
,
"sqcx/dydjb/components/addDydjb"
,
{
sqcxBsm
:
''
sqcxBsm
:
''
,
isAdd
:
true
})
}
},
...
...
src/views/xxba/components/clxx/dialog/clxxAddDialog.vue
View file @
fe28a27
...
...
@@ -77,6 +77,7 @@
this
.
ruleForm
=
{
cllx
:
""
,
clmc
:
""
,
clbm
:
""
}
},
/**
...
...
@@ -90,6 +91,7 @@
this
.
ruleForm
=
{
cllx
:
""
,
clmc
:
""
,
clbm
:
""
}
this
.
$emit
(
"input"
,
false
);
}
else
{
...
...
src/views/xxba/components/clxx/index.vue
View file @
fe28a27
...
...
@@ -247,7 +247,8 @@
let
obj
=
{
bsmCompany
:
this
.
formData
.
bsmCompany
,
clmc
:
data
.
clmc
,
cllx
:
data
.
cllx
cllx
:
data
.
cllx
,
clbm
:
data
.
clbm
};
addCompanyMaterial
(
obj
).
then
(
async
(
res
)
=>
{
if
(
res
.
code
==
200
)
{
...
...
Please
register
or
sign in
to post a comment