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
96b0b0f9
authored
2024-03-21 14:15:49 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
税务信息
1 parent
ffd4df6a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
25 deletions
src/views/workflow/main/swxx/index.vue
src/views/workflow/main/swxx/jyht.vue
src/views/workflow/main/swxx/index.vue
View file @
96b0b0f
...
...
@@ -6,8 +6,7 @@
v-Loading=
"loading"
:label-position=
"flag ? 'top' : ''"
:inline=
"flag"
label-width=
"120px"
>
label-width=
"120px"
>
<div
class=
"slxx_con"
:class=
"flag ? 'formMarginBot0' : ''"
>
<div
class=
"slxx_title title-block"
>
申请信息
...
...
@@ -67,8 +66,8 @@
<div
class=
"slxx_title title-block"
>
<el-row>
<el-col
:span=
"20"
>
房屋合同信息
</el-col>
<el-col
:span=
"4"
>
<el-button
@
click=
"compare
"
>
查询房屋交易合同
</el-button>
<el-col
:span=
"4"
class=
"btnColRight"
>
<el-button
type=
"primary"
@
click=
"handleContract
"
>
查询房屋交易合同
</el-button>
</el-col>
</el-row>
<div
class=
"triangle"
></div>
...
...
@@ -165,9 +164,9 @@
<lb-table
:column=
"clmMsr"
:pagination=
"false"
:
heightNumSetting=
"true
"
:
data=
"qlrList"
>
:
key=
"key
"
:
heightNumSetting=
"true"
:minHeight=
"0"
:rowStyleHeight=
'25'
:data=
"qlrList"
>
</lb-table>
<div
class=
"slxx_title title-block"
>
出卖人信息
...
...
@@ -175,10 +174,10 @@
</div>
<lb-table
:column=
"clmMsr"
:key=
"key"
:pagination=
"false"
:heightNumSetting=
"true"
:data=
"ywrList"
>
:heightNumSetting=
"true"
:minHeight=
"0"
:rowStyleHeight=
'25'
:data=
"ywrList"
>
</lb-table>
<div
class=
"slxx_title title-block"
>
缴税信息
...
...
@@ -187,28 +186,29 @@
<lb-table
:column=
"clmSwxx"
:pagination=
"false"
:
heightNumSetting=
"true
"
:
data=
"swxxList"
>
:
key=
"key
"
:
heightNumSetting=
"true"
:minHeight=
"0"
:rowStyleHeight=
'25'
:data=
"swxxList"
>
</lb-table>
</div>
</el-form>
</div>
</
template
>
<
script
>
import
{
getDetail
}
from
"@/api/workflow/swhtxx.js"
;
import
{
mapGetters
}
from
"vuex"
;
export
default
{
import
{
getDetail
}
from
"@/api/workflow/swhtxx.js"
;
import
{
mapGetters
}
from
"vuex"
;
export
default
{
computed
:
{
...
mapGetters
([
"dictData"
,
"flag"
]),
},
mounted
()
{
mounted
()
{
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
propsParam
=
this
.
$attrs
;
this
.
loadData
();
},
data
()
{
data
()
{
return
{
key
:
0
,
ruleForm
:
{},
loading
:
false
,
//表单是否可操作
...
...
@@ -279,8 +279,8 @@ export default {
};
},
methods
:
{
onSubmit
()
{
},
loadData
()
{
onSubmit
()
{
},
loadData
()
{
getDetail
(
this
.
propsParam
.
bsmSldy
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
res
.
result
;
...
...
@@ -292,17 +292,21 @@ export default {
this
.
fwxx
=
htxx
[
0
].
h
[
0
];
this
.
qlrList
=
htxx
[
1
].
msr
;
this
.
ywrList
=
htxx
[
2
].
cmr
;
this
.
key
++
}
if
(
res
.
result
.
wqht
.
jsnr
!=
""
&&
res
.
result
.
wqht
.
jsnr
!=
null
)
{
this
.
swxxList
=
JSON
.
parse
(
res
.
result
.
wqht
.
jsnr
);
}
}
});
})
},
},
};
handleContract
()
{
this
.
$popupDialog
(
'合同信息'
,
'workflow/main/swxx/jyht'
,
{},
'50%'
,
true
)
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
@import
"~@/styles/slxx/slxx.scss"
;
@import
"~@/styles/public.scss"
;
@import
"~@/styles/slxx/slxx.scss"
;
</
style
>
...
...
src/views/workflow/main/swxx/jyht.vue
0 → 100644
View file @
96b0b0f
<!--
* @Description: 交易合同
* @Autor: renchao
* @LastEditTime: 2024-03-21 14:15:27
-->
<
template
>
<div
class=
'jyht'
>
交易合同
</div>
</
template
>
<
script
>
export
default
{
props
:
{
formData
:
{
type
:
Object
,
default
:
{}
}
},
components
:
{},
data
()
{
return
{
}
}
}
</
script
>
<
style
scoped
lang=
'scss'
>
@import
"~@/styles/public.scss"
;
</
style
>
\ No newline at end of file
Please
register
or
sign in
to post a comment