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
e2a01a9e
authored
2023-08-17 09:04:38 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
--no commit message
2 parents
18fb52ac
8ee2dbc5
Show whitespace changes
Inline
Side-by-side
Showing
67 changed files
with
1602 additions
and
898 deletions
src/styles/index.scss
src/utils/dictionary.js
src/utils/request.js
src/views/djbworkflow/djbBook/components/blxxtabs/dyaq.vue
src/views/djbworkflow/djbBook/components/blxxtabs/dyiq.vue
src/views/djbworkflow/djbBook/components/blxxtabs/fdcq.vue
src/views/djbworkflow/djbBook/components/blxxtabs/jsydsyq.vue
src/views/djbworkflow/djbBook/components/blxxtabs/tdsyq.vue
src/views/djbworkflow/djbBook/components/blxxtabs/ygdydj.vue
src/views/djbworkflow/djbBook/components/blxxtabs/ygmmdj.vue
src/views/djbworkflow/djbBook/components/blxxtabs/yydj.vue
src/views/djbworkflow/djbBook/qlxxFormData.js
src/views/registerBook/diyaq.vue
src/views/registerBook/diyiq.vue
src/views/registerBook/djbFrame.vue
src/views/registerBook/djbFrameData.js
src/views/registerBook/fdcq1.vue
src/views/registerBook/fdcq2.vue
src/views/registerBook/jsydsyq.vue
src/views/registerBook/ldsyq.vue
src/views/registerBook/nydsyq.vue
src/views/registerBook/qlxxFormData.js
src/views/registerBook/sllmsyq.vue
src/views/registerBook/tdsyq.vue
src/views/registerBook/ygdj.vue
src/views/registerBook/yydj.vue
src/views/system/qtjfjmb/components/editDialog.vue
src/views/system/sqywgz/sqywDetail.vue
src/views/workflow/components/dialog/addQlr.vue
src/views/workflow/components/dialog/zsyl.vue
src/views/workflow/components/fdcqxmTable.vue
src/views/workflow/components/fzxx.vue
src/views/workflow/components/qlrCommonTable.vue
src/views/workflow/components/spyj.vue
src/views/workflow/components/szxx.vue
src/views/workflow/mixin/index.js
src/views/ywbl/slsqxx/cfdj/tdslxx.vue
src/views/ywbl/slsqxx/diyaq/slxx.vue
src/views/ywbl/slsqxx/fdcq1/slxx.vue
src/views/ywbl/slsqxx/fdcq2/slxx.vue
src/views/ywbl/slsqxx/fdcq2/slxx300.vue
src/views/ywbl/slsqxx/fdcq2/slxxCompareDetai.vue
src/views/ywbl/slsqxx/fdcq2/slxxOverview.vue
src/views/ywbl/slsqxx/fwsyq/slxx.vue
src/views/ywbl/slsqxx/jsydsyq/slxx.vue
src/views/ywbl/slsqxx/jsydsyq/slxx300.vue
src/views/ywbl/slsqxx/lqslxx/index.vue
src/views/ywbl/slsqxx/nydsyq/slxx.vue
src/views/ywbl/slsqxx/nydsyq/slxx200.vue
src/views/ywbl/slsqxx/tdsyq/slxx.vue
src/views/ywbl/slsqxx/ygdj/slxx.vue
src/views/ywbl/slsqxx/ygdj/slxx300.vue
src/views/ywbl/slsqxx/ygdy/slxx.vue
src/views/ywbl/slsqxx/zjgcdy/batchSlxx.vue
src/views/ywbl/slsqxx/zjgcdy/slxx.vue
src/views/ywbl/ywsq/components/cfdj.vue
src/views/ywbl/ywsq/components/selectLqsc.vue
src/views/ywbl/ywsq/components/selectSllm.vue
src/views/ywbl/ywsq/javascript/fwsyq.js
src/views/ywbl/ywsq/javascript/selecBdcql.js
src/views/ywbl/ywsq/javascript/selectFwsyq.js
src/views/ywbl/ywsq/javascript/selectJsydsyq.js
src/views/ywbl/ywsq/javascript/selectJsydsyqhbfg.js
src/views/ywbl/ywsq/javascript/selectTdsyq.js
src/views/ywbl/ywsq/javascript/selectYgdj200.js
src/views/ywbl/ywsq/javascript/selectYgdy.js
src/views/ywbl/ywsq/javascript/slectBdcdata.js
src/styles/index.scss
View file @
e2a01a9
...
...
@@ -207,6 +207,13 @@ aside {
}
}
.ellipsis-line
{
width
:
200px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
//文本溢出显示省略号
white-space
:
nowrap
;
//文本不会换行
}
//main-container全局样式
.app-container
{
padding
:
20px
;
...
...
src/utils/dictionary.js
View file @
e2a01a9
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-03 08:59:06
* @LastEditTime: 2023-0
8-16 11:30:45
*/
import
store
from
'@/store'
...
...
@@ -27,12 +27,18 @@ export function getSjlx (level) {
*/
export
function
getDictLeabel
(
level
,
code
)
{
const
resultMap
=
store
.
getters
.
dictData
[
code
]
const
desiredObject
=
resultMap
.
find
(
obj
=>
obj
.
dcode
===
level
);
if
(
desiredObject
)
{
const
desiredName
=
desiredObject
.
dname
;
return
desiredName
}
else
{
return
''
function
findNode
(
tree
,
func
)
{
for
(
const
node
of
tree
)
{
if
(
func
(
node
))
return
node
if
(
node
.
children
)
{
const
res
=
findNode
(
node
.
children
,
func
)
if
(
res
)
return
res
}
}
return
{
dname
:
""
}
}
let
data
=
findNode
(
resultMap
,
(
node
)
=>
{
return
node
.
dcode
===
level
})
return
data
.
dname
}
\ No newline at end of file
...
...
src/utils/request.js
View file @
e2a01a9
...
...
@@ -2,7 +2,7 @@
/*
* @Description: 此文件主要创建 axios 实例,然后添加请求拦截器和响应拦截器
* @Autor: renchao
* @LastEditTime: 2023-0
7-21 10:30:53
* @LastEditTime: 2023-0
8-16 15:16:49
*/
import
axios
from
'axios'
import
Router
from
'@/router'
...
...
@@ -54,10 +54,10 @@ service.interceptors.response.use(
*/
if
(
response
.
status
==
200
)
{
return
response
.
data
;
}
else
if
(
response
.
status
==
2002
)
{
}
else
if
(
response
.
status
==
2002
)
{
Message
.
error
(
response
.
message
);
}
else
{
handleErrorData
(
response
.
data
);
}
else
{
handleErrorData
(
response
.
status
);
}
return
response
;
},
...
...
@@ -97,10 +97,7 @@ service.interceptors.response.use(
)
//对错误信息的处理函数
function
handleErrorData
(
errMes
)
{
if
(
errMes
.
message
)
{
Message
.
error
(
errMes
.
message
);
}
else
{
switch
(
errMes
.
code
)
{
switch
(
errMes
)
{
case
401
:
Message
.
error
(
"未授权,请重新登录!"
);
break
;
...
...
@@ -117,7 +114,6 @@ function handleErrorData (errMes) {
Message
.
error
(
"服务正在联调中,请稍后!"
);
break
;
}
}
}
export
default
service
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/dyaq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
04 16:29:10
* @LastEditTime: 2023-08-
16 16:31:07
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -266,7 +266,7 @@
maxlength=
"13"
v-model=
"ruleForm.diyaq.dymj"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"ruleForm.diyaq.mjdw"
style=
"width:
20%
"
>
<el-select
v-model=
"ruleForm.diyaq.mjdw"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -475,7 +475,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.
qlxx
.gyfs"
>
v-model=
"ruleForm.
sldy
.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -488,8 +488,8 @@
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:
ableOperation
=
"ableOperation"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:
disabled
=
"ableOperation"
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
<div
v-if=
"ruleForm.ywrData"
>
<div
class=
"slxx_title title-block"
>
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/dyiq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
04 16:35:32
* @LastEditTime: 2023-08-
16 16:11:20
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -15,8 +15,7 @@
:label-position="flag ? 'top' : ''"
:inline="flag"
:show-message="false"
label-width="145px"
>
label-width="145px">
<div
class=
"slxx_con"
v-if=
"isShow"
:class=
"flag ? 'formMarginBot0' : ''"
>
<div
class=
"slxx_title title-block"
>
补录信息
...
...
@@ -162,8 +161,7 @@
<el-form-item
label=
"业务号:"
prop=
"qlxx.ywh"
:rules=
"rules.ywhrules"
>
:rules=
"rules.ywhrules"
>
<el-input
maxlength=
"20"
v-model=
"ruleForm.qlxx.ywh"
onkeyup=
"this.value=this.value.replace(/[^\w_]/g,'');"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -188,15 +186,13 @@
<el-form-item
label=
"登记类型: "
prop=
"qlxx.djlx"
:rules=
"rules.djlxrules"
>
:rules=
"rules.djlxrules"
>
<el-select
v-model=
"ruleForm.qlxx.djlx"
@
change=
"djlxchange"
>
<el-option
v-for=
"item in djlxlist"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
:value=
"item.dcode"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -210,8 +206,7 @@
<el-form-item
label=
"不动产权证号:"
prop=
"qlxx.bdcqzh"
:rules=
"rules.bdcqzhrules"
>
:rules=
"rules.bdcqzhrules"
>
<el-input
v-model=
"ruleForm.qlxx.bdcqzh"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -224,8 +219,7 @@
<el-form-item
label=
"登记机构:"
prop=
"qlxx.djjg"
:rules=
"rules.djjgrules"
>
:rules=
"rules.djjgrules"
>
<el-input
v-model=
"ruleForm.qlxx.djjg"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -233,8 +227,7 @@
<el-form-item
label=
"登簿人:"
prop=
"qlxx.dbr"
:rules=
"rules.dbrrules"
>
:rules=
"rules.dbrrules"
>
<el-input
v-model=
"ruleForm.qlxx.dbr"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -242,16 +235,14 @@
<el-form-item
label=
"登记时间:"
prop=
"qlxx.djsj"
:rules=
"rules.djsjrules"
>
:rules=
"rules.djsjrules"
>
<el-date-picker
v-model=
"ruleForm.qlxx.djsj"
type=
"date"
class=
"width100"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd HH:mm:ss"
format=
"yyyy-MM-dd"
>
format=
"yyyy-MM-dd"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -262,8 +253,7 @@
v-for=
"item in qsztlist"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
:value=
"item.dcode"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -285,11 +275,8 @@
<el-tooltip
content=
"供役地权利人证件种类:"
placement=
"top"
effect=
"light"
>
<span
type=
"text"
style=
"color: #444"
size=
"mini"
>
供役地权利人证件...
</span
>
effect=
"light"
>
<span
type=
"text"
style=
"color: #444"
size=
"mini"
>
供役地权利人证件...
</span>
</el-tooltip>
</span>
<div
class=
"flex"
>
...
...
@@ -298,8 +285,7 @@
v-for=
"item in dictData['A30']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
></el-option>
:value=
"item.dcode"
></el-option>
</el-select>
</div>
</el-form-item>
...
...
@@ -330,11 +316,8 @@
<el-tooltip
content=
"需役地权利人证件种类:"
placement=
"top"
effect=
"light"
>
<span
type=
"text"
style=
"color: #444"
size=
"mini"
>
需役地权利人证件...
</span
>
effect=
"light"
>
<span
type=
"text"
style=
"color: #444"
size=
"mini"
>
需役地权利人证件...
</span>
</el-tooltip>
</span>
<div
class=
"flex"
>
...
...
@@ -343,8 +326,7 @@
v-for=
"item in dictData['A30']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
></el-option>
:value=
"item.dcode"
></el-option>
</el-select>
</div>
</el-form-item>
...
...
@@ -372,8 +354,7 @@
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd HH:mm:ss"
format=
"yyyy-MM-dd"
>
format=
"yyyy-MM-dd"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -385,8 +366,7 @@
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd HH:mm:ss"
format=
"yyyy-MM-dd"
>
format=
"yyyy-MM-dd"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -410,8 +390,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.qlxx.gyfs"
>
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -424,9 +403,8 @@
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:ableOperation=
"ableOperation"
:gyfs=
"ruleForm.qlxx.gyfs"
/>
:disabled=
"ableOperation"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div>
<div
class=
"slxx_title title-block"
>
...
...
@@ -437,9 +415,8 @@
v-if=
"ruleForm.ywrData"
:tableData=
"ruleForm.ywrData"
:key=
"key"
:ableOperation=
"ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
:disabled=
"ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
</div>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
...
...
@@ -451,15 +428,15 @@
</div>
</
template
>
<
script
>
import
ywmix
from
"./dataprocessing"
;
import
qlrCommonTable
from
"@/views/djbworkflow/components/qlrCommonTable"
;
import
ywrCommonTable
from
"@/views/djbworkflow/components/ywrCommonTable"
;
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
import
selectTable
from
"@/components/selectTable/index.vue"
;
export
default
{
import
ywmix
from
"./dataprocessing"
;
import
qlrCommonTable
from
"@/views/djbworkflow/components/qlrCommonTable"
;
import
ywrCommonTable
from
"@/views/djbworkflow/components/ywrCommonTable"
;
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
import
selectTable
from
"@/components/selectTable/index.vue"
;
export
default
{
mixins
:
[
ywmix
],
components
:
{
qlrCommonTable
,
ywrCommonTable
,
tdytTable
,
selectTable
},
data
()
{
data
()
{
return
{
//传递参数\
rules
:
{
...
...
@@ -480,9 +457,9 @@ export default {
},
};
},
};
};
</
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/djbworkflow/djbBook/components/blxxtabs/fdcq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
04 15:53:29
* @LastEditTime: 2023-08-
16 16:11:35
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -126,7 +126,7 @@
<el-input
v-model=
"ruleForm.fdcq2.dytdmj"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -143,7 +143,7 @@
<el-input
v-model=
"ruleForm.fdcq2.fttdmj"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -160,6 +160,7 @@
<treeselect
v-model=
"ruleForm.fdcq2.tdxz"
noOptionsText=
"暂无数据"
:default-expand-level=
"1"
placeholder=
""
:normalizer=
"normalizer"
:show-count=
"true"
...
...
@@ -252,7 +253,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"总层数:"
>
<el-input
v-model
=
"ruleForm.fdcq2.zcs
"
></el-input>
<el-input
v-model
.
number=
"ruleForm.fdcq2.zcs"
oninput=
"value=value.replace(/[^0-9]/g,'')
"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -261,7 +262,7 @@
<el-input
v-model=
"ruleForm.fdcq2.jzmj"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -278,7 +279,7 @@
<el-input
v-model=
"ruleForm.fdcq2.zyjzmj"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -295,7 +296,7 @@
<el-input
v-model=
"ruleForm.fdcq2.ftjzmj"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -399,7 +400,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.
qlxx
.gyfs"
>
v-model=
"ruleForm.
sldy
.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -411,9 +412,9 @@
<qlrCommonTable
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:
ableOperation
=
"ableOperation"
:
disabled
=
"ableOperation"
:key=
"key"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
</div>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
<el-form-item>
...
...
@@ -472,8 +473,8 @@
},
};
},
created
()
{
},
mounted
()
{
created
()
{
},
mounted
()
{
this
.
loadData
();
this
.
ableOperation
=
this
.
$parent
.
ableOperation
;
},
...
...
@@ -483,13 +484,13 @@
* @param {*} val
* @author: renchao
*/
ssQlxxchange
(
val
)
{
ssQlxxchange
(
val
)
{
this
.
ruleForm
.
ssQlxx
=
val
;
this
.
ruleForm
.
qlxx
.
ssywh
=
val
.
ywh
;
this
.
ssQlxxchangediolog
(
val
);
},
// 弹框事件
ssQlxxchangediolog
(
val
)
{
ssQlxxchangediolog
(
val
)
{
this
.
$confirm
(
"是否将上手权利信息同步到表单"
,
"提示"
,
{
iconClass
:
"el-icon-question"
,
//自定义图标样式
confirmButtonText
:
"确认"
,
//确认按钮文字更换
...
...
@@ -512,7 +513,7 @@
}
for
(
var
key
in
this
.
ruleForm
.
qlxx
)
{
if
(
this
.
ruleForm
.
qlxx
[
key
]
==
""
||
this
.
ruleForm
.
qlxx
[
key
]
==
""
||
this
.
ruleForm
.
qlxx
[
key
]
==
null
&&
key
!=
"ywh"
&&
key
!=
"dbr"
&&
...
...
@@ -551,7 +552,7 @@
* @param {*} val
* @author: renchao
*/
djlxchange
(
val
)
{
djlxchange
(
val
)
{
if
(
val
==
null
||
val
==
100
)
{
this
.
ssqlxxshow
=
false
;
}
else
{
...
...
@@ -562,7 +563,7 @@ djlxchange(val) {
* @description: loadData
* @author: renchao
*/
loadData
()
{
loadData
()
{
this
.
$startLoading
();
this
.
propsParam
.
isEdit
=
this
.
$parent
.
isEdit
;
init
(
this
.
propsParam
).
then
((
res
)
=>
{
...
...
@@ -594,7 +595,7 @@ djlxchange(val) {
* @param {*} val
* @author: renchao
*/
upDateTdytxxList
(
val
)
{
upDateTdytxxList
(
val
)
{
this
.
ruleForm
.
tdytqxList
&&
(
this
.
ruleForm
.
tdytqxList
=
_
.
cloneDeep
(
val
));
this
.
key
++
;
},
...
...
@@ -604,7 +605,7 @@ djlxchange(val) {
* @param {*} val
* @author: renchao
*/
upDateQlrxxList
(
val
)
{
upDateQlrxxList
(
val
)
{
this
.
ruleForm
.
qlrData
&&
(
this
.
ruleForm
.
qlrData
=
_
.
cloneDeep
(
val
));
this
.
czrOptions
=
this
.
ruleForm
.
qlrData
;
this
.
key
++
;
...
...
@@ -615,7 +616,7 @@ djlxchange(val) {
* @param {*} val
* @author: renchao
*/
upDateYwrxxList
(
val
)
{
upDateYwrxxList
(
val
)
{
this
.
ruleForm
.
ywrData
&&
(
this
.
ruleForm
.
ywrData
=
_
.
cloneDeep
(
val
));
this
.
key
++
;
},
...
...
@@ -623,7 +624,7 @@ djlxchange(val) {
* @description: onSubmit
* @author: renchao
*/
onSubmit
()
{
onSubmit
()
{
this
.
$refs
.
ruleForm
.
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
this
.
ruleForm
.
qlrData
.
length
==
0
)
{
...
...
@@ -702,7 +703,7 @@ djlxchange(val) {
});
},
},
};
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/jsydsyq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 10:28:4
4
* @LastEditTime: 2023-08-1
6 15:52:2
4
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -140,7 +140,7 @@
maxlength=
"12"
v-model=
"ruleForm.jsydsyq.syqmj"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -253,7 +253,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.
qlxx
.gyfs"
>
v-model=
"ruleForm.
sldy
.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -266,8 +266,8 @@
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:
ableOperation
=
"ableOperation"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:
disabled
=
"ableOperation"
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
</div>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
<el-form-item>
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/tdsyq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 10:29:57
* @LastEditTime: 2023-08-1
6 11:15:56
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -173,7 +173,7 @@
<el-select
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -194,7 +194,7 @@
<el-select
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -215,7 +215,7 @@
<el-select
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -238,7 +238,7 @@
<el-select
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -259,7 +259,7 @@
<el-select
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -280,7 +280,7 @@
<el-select
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -303,7 +303,7 @@
<el-select
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -354,7 +354,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.
qlxx
.gyfs"
>
v-model=
"ruleForm.
sldy
.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -367,8 +367,8 @@
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:
ableOperation
=
"ableOperation"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:
disabled
=
"ableOperation"
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
</div>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
<el-form-item>
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/ygdydj.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
04 15:53:44
* @LastEditTime: 2023-08-
16 16:11:56
:show-message="false"
-->
<
template
>
...
...
@@ -46,8 +46,7 @@
<el-form-item
label=
"预告抵押不动产情况"
prop=
"ztQlxx.bdcqzh"
:rules=
"rules.ztQlxxrules"
>
:rules=
"rules.ztQlxxrules"
>
<select-table
v-model=
"ruleForm.ztQlxx"
:table-width=
"730"
...
...
@@ -61,12 +60,10 @@
<el-table-column
prop=
"bdcqzh"
width=
"160"
label=
"不动产权证书"
></el-table-column>
label=
"不动产权证书"
></el-table-column>
<el-table-column
prop=
"qlrmc"
label=
"被执行人"
></el-table-column>
label=
"被执行人"
></el-table-column>
<el-table-column
prop=
"mjmc"
label=
"面积"
></el-table-column>
<el-table-column
prop=
"ytmc"
label=
"用途"
></el-table-column>
<el-table-column
prop=
"zl"
label=
"坐落"
></el-table-column>
...
...
@@ -132,25 +129,21 @@
<el-form-item
label=
"上手权利信息:"
prop=
"ssQlxx.bdcqzh"
:rules=
"rules.ssQlxxrules"
>
:rules=
"rules.ssQlxxrules"
>
<select-table
v-model=
"ruleForm.ssQlxx"
:table-width=
"730"
:tableData=
"ssQlxxList"
:props=
"props"
@
change=
"ssQlxxchange"
>
@
change=
"ssQlxxchange"
>
<el-table-column
prop=
"qllxmc"
width=
"130"
label=
"权利类型"
></el-table-column>
label=
"权利类型"
></el-table-column>
<el-table-column
prop=
"bdcqzh"
width=
"160"
label=
"不动产权证书"
></el-table-column>
label=
"不动产权证书"
></el-table-column>
<el-table-column
prop=
"qlrmc"
label=
"权利人"
></el-table-column>
<el-table-column
prop=
"mjmc"
label=
"面积"
></el-table-column>
<el-table-column
prop=
"ytmc"
label=
"用途"
></el-table-column>
...
...
@@ -333,7 +326,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"总层数:"
>
<el-input
oninput
=
"value=value.replace(/[^\d]/g,'')"
maxlength=
"4"
v-model
=
"ruleForm.ygdj.zcs"
></el-input>
<el-input
oninput
=
"value=value.replace(/[^\d]/g,'')"
maxlength=
"4"
v-model
.
number
=
"ruleForm.ygdj.zcs"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -345,7 +338,7 @@
<el-select
v-model=
"ruleForm.ygdj.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -395,7 +388,7 @@
<el-select
v-model=
"ruleForm.ygdj.jedw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
...
...
@@ -457,7 +450,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.
qlxx
.gyfs"
>
v-model=
"ruleForm.
sldy
.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -470,8 +463,8 @@
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:
ableOperation
=
"ableOperation"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:
disabled
=
"ableOperation"
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
<div
v-if=
"ruleForm.ywrData"
>
<div
class=
"slxx_title title-block"
>
...
...
@@ -482,7 +475,7 @@
v-if=
"ruleForm.ywrData"
:tableData=
"ruleForm.ywrData"
:key=
"key"
:
ableOperation
=
"ableOperation"
:
disabled
=
"ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
</div>
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/ygmmdj.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
04 15:53:48
* @LastEditTime: 2023-08-
16 16:12:12
:show-message="false"
-->
<
template
>
...
...
@@ -249,7 +249,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"总层数:"
>
<el-input
oninput
=
"value=value.replace(/[^\d]/g,'')"
maxlength=
"4"
v-model=
"ruleForm.ygdj.zcs"
></el-input>
<el-input
oninput
=
"value=value.replace(/[^\d]/g,'')"
maxlength=
"4"
v-model=
"ruleForm.ygdj.zcs"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -261,7 +261,7 @@
<el-select
v-model=
"ruleForm.ygdj.mjdw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -315,7 +315,7 @@
<el-select
v-model=
"ruleForm.ygdj.jedw"
:disabled=
"!ableOperation"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
...
...
@@ -367,7 +367,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.
qlxx
.gyfs"
>
v-model=
"ruleForm.
sldy
.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -380,8 +380,8 @@
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:
ableOperation
=
"ableOperation"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:
disabled
=
"ableOperation"
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
<div
v-if=
"ruleForm.ywrData"
>
<div
class=
"slxx_title title-block"
>
...
...
@@ -392,7 +392,7 @@
v-if=
"ruleForm.ywrData"
:tableData=
"ruleForm.ywrData"
:key=
"key"
:
ableOperation
=
"ableOperation"
:
disabled
=
"ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
</div>
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/yydj.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
01 18:12:57
* @LastEditTime: 2023-08-
16 15:52:49
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -16,8 +16,7 @@
:inline="flag"
inline-message
:show-message="false"
label-width="145px"
>
label-width="145px">
<div
class=
"slxx_con"
v-if=
"isShow"
:class=
"flag ? 'formMarginBot0' : ''"
>
<div
class=
"slxx_title title-block"
>
补录信息
...
...
@@ -46,25 +45,21 @@
<el-form-item
label=
"抵押不动产信息:"
prop=
"ztQlxx.bdcqzh"
:rules=
"rules.ztQlxxrules"
>
:rules=
"rules.ztQlxxrules"
>
<select-table
v-model=
"ruleForm.ztQlxx"
:table-width=
"550"
:tableData=
"ztQlxxList"
:props=
"props"
@
change=
"ztQlxxchange"
>
@
change=
"ztQlxxchange"
>
<el-table-column
prop=
"qllxmc"
width=
"130"
label=
"权利类型"
></el-table-column>
label=
"权利类型"
></el-table-column>
<el-table-column
prop=
"bdcqzh"
width=
"160"
label=
"不动产权证书"
></el-table-column>
label=
"不动产权证书"
></el-table-column>
<el-table-column
prop=
"qlrmc"
label=
"权利人"
></el-table-column>
<el-table-column
prop=
"mjmc"
label=
"面积"
></el-table-column>
<el-table-column
prop=
"ytmc"
label=
"用途"
></el-table-column>
...
...
@@ -131,25 +126,21 @@
<el-form-item
label=
"上手权利信息:"
prop=
"ssQlxx.bdcqzh"
:rules=
"rules.ssQlxxrules"
>
:rules=
"rules.ssQlxxrules"
>
<select-table
v-model=
"ruleForm.ssQlxx"
:table-width=
"550"
:tableData=
"ssQlxxList"
:props=
"props"
@
change=
"ssQlxxchange"
>
@
change=
"ssQlxxchange"
>
<el-table-column
prop=
"qllxmc"
width=
"130"
label=
"权利类型"
></el-table-column>
label=
"权利类型"
></el-table-column>
<el-table-column
prop=
"bdcqzh"
width=
"160"
label=
"不动产权证书"
></el-table-column>
label=
"不动产权证书"
></el-table-column>
<el-table-column
prop=
"qlrmc"
label=
"权利人"
></el-table-column>
<el-table-column
prop=
"mjmc"
label=
"面积"
></el-table-column>
<el-table-column
prop=
"ytmc"
label=
"用途"
></el-table-column>
...
...
@@ -169,8 +160,7 @@
<el-form-item
label=
"业务号:"
prop=
"qlxx.ywh"
:rules=
"rules.ywhrules"
>
:rules=
"rules.ywhrules"
>
<el-input
maxlength=
"10"
v-model=
"ruleForm.qlxx.ywh"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -195,15 +185,13 @@
<el-form-item
label=
"登记类型:"
prop=
"qlxx.djlx"
:rules=
"rules.djlxrules"
>
:rules=
"rules.djlxrules"
>
<el-select
v-model=
"ruleForm.qlxx.djlx"
@
change=
"djlxchange"
>
<el-option
v-for=
"item in djlxlist"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
:value=
"item.dcode"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -230,8 +218,7 @@
<el-form-item
label=
"登记机构:"
prop=
"qlxx.djjg"
:rules=
"rules.djjgrules"
>
:rules=
"rules.djjgrules"
>
<el-input
v-model=
"ruleForm.qlxx.djjg"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -239,8 +226,7 @@
<el-form-item
label=
"登簿人:"
prop=
"qlxx.dbr"
:rules=
"rules.dbrrules"
>
:rules=
"rules.dbrrules"
>
<el-input
v-model=
"ruleForm.qlxx.dbr"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -248,16 +234,14 @@
<el-form-item
label=
"登记时间:"
prop=
"qlxx.djsj"
:rules=
"rules.djsjrules"
>
:rules=
"rules.djsjrules"
>
<el-date-picker
v-model=
"ruleForm.qlxx.djsj"
class=
"width100"
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd HH:mm:ss"
format=
"yyyy-MM-dd"
>
format=
"yyyy-MM-dd"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -268,8 +252,7 @@
v-for=
"item in qsztlist"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
:value=
"item.dcode"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -279,8 +262,7 @@
<el-form-item
label=
"异议事项:"
prop=
"yydj.yysx"
:rules=
"rules.yysxrules"
>
:rules=
"rules.yysxrules"
>
<el-input
v-model=
"ruleForm.yydj.yysx"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -288,8 +270,7 @@
<el-form-item
label=
"不动产登记证明号:"
prop=
"qlxx.bdcqzh"
:rules=
"rules.bdcdjzmhrules"
>
:rules=
"rules.bdcdjzmhrules"
>
<el-input
maxlength=
"11"
v-model=
"ruleForm.qlxx.bdcqzh"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -317,8 +298,7 @@
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd HH:mm:ss"
format=
"yyyy-MM-dd"
>
format=
"yyyy-MM-dd"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -337,8 +317,7 @@
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.qlxx.gyfs"
>
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -351,9 +330,8 @@
:tableData=
"ruleForm.qlrData"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:ableOperation=
"ableOperation"
:gyfs=
"ruleForm.qlxx.gyfs"
/>
:disabled=
"ableOperation"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
v-if=
"ruleForm.ywrData"
>
<div
class=
"slxx_title title-block"
>
义务人信息
...
...
@@ -363,9 +341,8 @@
v-if=
"ruleForm.ywrData"
:tableData=
"ruleForm.ywrData"
:key=
"key"
:ableOperation=
"ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
:disabled=
"ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
</div>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
...
...
@@ -377,16 +354,16 @@
</div>
</
template
>
<
script
>
// import ywmix from "@/views/ywbl/mixin/index";
import
ywmix
from
"./dataprocessing"
;
import
qlrCommonTable
from
"@/views/djbworkflow/components/qlrCommonTable"
;
import
ywrCommonTable
from
"@/views/djbworkflow/components/ywrCommonTable"
;
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
import
selectTable
from
"@/components/selectTable/index.vue"
;
export
default
{
// import ywmix from "@/views/ywbl/mixin/index";
import
ywmix
from
"./dataprocessing"
;
import
qlrCommonTable
from
"@/views/djbworkflow/components/qlrCommonTable"
;
import
ywrCommonTable
from
"@/views/djbworkflow/components/ywrCommonTable"
;
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
import
selectTable
from
"@/components/selectTable/index.vue"
;
export
default
{
mixins
:
[
ywmix
],
components
:
{
qlrCommonTable
,
ywrCommonTable
,
tdytTable
,
selectTable
},
data
()
{
data
()
{
return
{
ssqlxxshow
:
true
,
//表单是否可操作
...
...
@@ -425,9 +402,9 @@ export default {
};
},
methods
:
{},
};
};
</
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/djbworkflow/djbBook/qlxxFormData.js
View file @
e2a01a9
...
...
@@ -222,8 +222,8 @@ class data extends filter {
label
:
"使用权起止时间"
,
},
{
prop
:
"
fdcjyjg
"
,
label
:
"房地产交易价格
(万元)
"
,
prop
:
"
qdjgmc
"
,
label
:
"房地产交易价格"
,
},
{
prop
:
"ytmc"
,
...
...
src/views/registerBook/diyaq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-19 09:52:28
* @LastEditTime: 2023-0
8-16 08:54:00
-->
<
template
>
<div
class=
"djxxTable"
>
...
...
@@ -62,7 +62,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/registerBook/diyiq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-19 09:52:37
* @LastEditTime: 2023-0
8-16 08:52:10
-->
<
template
>
<div
class=
"djxxTable"
>
...
...
@@ -56,7 +56,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/registerBook/djbFrame.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
5 10:57:30
* @LastEditTime: 2023-08-1
6 15:00:12
-->
<
template
>
<div
class=
"content"
>
...
...
src/views/registerBook/djbFrameData.js
View file @
e2a01a9
...
...
@@ -12,7 +12,7 @@ var qlxxPage = [
{
qllx
:
"A08"
,
id
:
""
,
form
:
""
,
label
:
"集体建设用地使用权/房屋所有权"
},
{
qllx
:
"A09"
,
id
:
"jsydsyq"
,
form
:
"jsydsyq.vue"
,
label
:
"土地承包经营权"
},
{
qllx
:
"A11"
,
id
:
"ldsyq"
,
form
:
"ldsyq.vue"
,
label
:
"林地使用权"
},
{
qllx
:
"A12"
,
id
:
"
jsydsyq"
,
form
:
"jsyd
syq.vue"
,
label
:
"林地使用权/森林、林木使用权"
},
{
qllx
:
"A12"
,
id
:
"
sllmsyq"
,
form
:
"sllm
syq.vue"
,
label
:
"林地使用权/森林、林木使用权"
},
{
qllx
:
"A13"
,
id
:
"jsydsyq"
,
form
:
"jsydsyq.vue"
,
label
:
"草原使用权"
},
{
qllx
:
"A14"
,
id
:
"jsydsyq"
,
form
:
"jsydsyq.vue"
,
label
:
"水域滩涂养殖权"
},
{
qllx
:
"A15"
,
id
:
"jsydsyq"
,
form
:
"jsydsyq.vue"
,
label
:
"海域使用权"
},
...
...
src/views/registerBook/fdcq1.vue
View file @
e2a01a9
...
...
@@ -199,7 +199,6 @@
border-right
:
2px
solid
#e3e2e2
;
line-height
:
40px
;
overflow
:
unset
;
width
:
450px
;
}
div
:last-child
{
border
:
0
;
...
...
src/views/registerBook/fdcq2.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-19 15:01:08
* @LastEditTime: 2023-0
8-16 08:54:50
-->
<
template
>
<div
class=
"djxxTable"
>
...
...
@@ -62,7 +62,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/registerBook/jsydsyq.vue
View file @
e2a01a9
...
...
@@ -51,7 +51,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/registerBook/ldsyq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
1 15:33:53
* @LastEditTime: 2023-08-1
6 11:29:20
-->
<
template
>
<div
class=
"djxxTable"
>
...
...
@@ -59,7 +59,7 @@
<
script
>
import
{
datas
}
from
"./qlxxFormData.js"
;
import
{
getSjlx
}
from
"@/utils/dictionary.js"
;
import
{
getSjlx
,
getDictLeabel
}
from
"@/utils/dictionary.js"
;
import
{
getLqList
}
from
"@/api/djbDetail.js"
;
export
default
{
data
()
{
...
...
@@ -101,6 +101,9 @@ export default {
this
.
tableData
=
res
.
result
;
this
.
tableData
.
forEach
((
item
)
=>
{
item
.
sjlx
=
getSjlx
(
item
.
sjlx
);
item
.
ldsyqxz
=
getDictLeabel
(
item
.
ldsyqxz
,
'A45'
)
item
.
lz
=
getDictLeabel
(
item
.
lz
,
'A26'
)
item
.
qy
=
getDictLeabel
(
item
.
qy
,
'A52'
)
});
if
(
this
.
tableData
.
length
<
datas
.
columns
().
emptycolNum
)
{
this
.
emptycolNum
=
...
...
src/views/registerBook/nydsyq.vue
View file @
e2a01a9
...
...
@@ -51,7 +51,15 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
@@ -88,7 +96,15 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/registerBook/qlxxFormData.js
View file @
e2a01a9
...
...
@@ -465,20 +465,20 @@ class data extends filter {
label
:
"分摊土地面积(m²)"
,
},
{
prop
:
"td
syqzsj
"
,
label
:
"土地
使用期限
"
,
prop
:
"td
xzmc
"
,
label
:
"土地
性质
"
,
},
{
prop
:
"
syq
qzsj"
,
prop
:
"
tdsy
qzsj"
,
label
:
"使用权起止时间"
,
},
{
prop
:
"
fdcjyjg
"
,
label
:
"房地产交易价格
(万元)
"
,
prop
:
"
qdjgmc
"
,
label
:
"房地产交易价格"
,
},
{
prop
:
"
ghyt
"
,
label
:
"
规划
用途"
,
prop
:
"
ytmc
"
,
label
:
"
房屋
用途"
,
},
{
prop
:
"fwxzmc"
,
...
...
@@ -497,7 +497,7 @@ class data extends filter {
label
:
"总层数"
,
},
{
prop
:
"mj"
,
prop
:
"
jz
mj"
,
label
:
"建筑面积(m2)"
,
},
{
...
...
src/views/registerBook/sllmsyq.vue
0 → 100644
View file @
e2a01a9
<!--
* @Author: yangwei
* @Date: 2023-08-15 14:15:06
* @LastEditors: yangwei
* @LastEditTime: 2023-08-15 14:15:19
* @FilePath: \bdcdj-web\src\views\registerBook\sllmsyq.vue
* @Description:
*
* Copyright (c) 2023 by yangwei, All Rights Reserved.
-->
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-11 15:33:53
-->
<
template
>
<div
class=
"djxxTable"
>
<div
class=
"tableBox"
>
<div
class=
"title"
>
{{
title
}}
<div
class=
"checkbox"
>
<el-checkbox-group
v-model=
"checkList"
@
change=
"checkChange"
>
<el-checkbox
v-for=
"item in qsztList"
:key=
"item.value"
:label=
"item.value"
>
{{
item
.
label
}}
</el-checkbox>
</el-checkbox-group>
</div>
</div>
<div
class=
"xxTableBox rollTable"
>
<!-- 固定前三个 -->
<table
class=
"xxTable"
>
<tr
v-for=
"(item, colindex) in columns"
:key=
"colindex"
>
<td>
{{
item
.
label
}}
</td>
<td
v-for=
"(row, index) in tableData"
:key=
"index"
:class=
"[
row.qszt == '2' ? 'lishi' : '',
row.qszt == '0' ? 'linshi' : '',
row.qlzt == '4' ? 'linshi' : '',
item.prop == 'qszt' && row.qlzt == '3' ? 'linshiIcon' : '',
item.prop == 'qszt' && row.qlzt == '2' ? 'linshiIcon' : '',
item.prop == 'qszt' && row.qlzt == '1' ? 'xianshiIcon' : '',
item.prop == 'qszt' && row.qlzt == '4' ? 'zhuxiaoIcon' : ''
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'&&row.sjlx !='系统数据'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row,'D')"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' &&row.qlzt == '1'"
>
有效
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qlzt == '2'"
>
正在补录
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qlzt == '3'"
>
正在申请
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qlzt == '4'"
>
正在注销
</div>
<span
v-if=
"item.prop == 'qszt'"
>
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
</table>
</div>
</div>
</div>
</
template
>
<
script
>
import
{
datas
}
from
"./qlxxFormData.js"
;
import
{
getSjlx
}
from
"@/utils/dictionary.js"
;
import
{
getLqList
}
from
"@/api/djbDetail.js"
;
export
default
{
data
()
{
return
{
title
:
"林权登记信息"
,
qsztList
:
datas
.
columns
().
qsztList
,
checkList
:
datas
.
columns
().
checkList
,
//传递参数
propsParam
:
this
.
$attrs
,
//列表数据
tableData
:
[],
//空列值个数
emptycolNum
:
datas
.
columns
().
emptycolNum
,
//列名称对象
columns
:
datas
.
columns
().
LDSYQ
,
};
},
created
()
{
this
.
loadData
();
},
methods
:
{
/**
* @description: loadData
* @author: renchao
*/
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
)
{
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
,
});
}
getLqList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
qszt
:
this
.
checkList
,
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
tableData
=
res
.
result
;
this
.
tableData
.
forEach
((
item
)
=>
{
item
.
sjlx
=
getSjlx
(
item
.
sjlx
);
});
if
(
this
.
tableData
.
length
<
datas
.
columns
().
emptycolNum
)
{
this
.
emptycolNum
=
datas
.
columns
().
emptycolNum
-
this
.
tableData
.
length
;
}
else
{
this
.
emptycolNum
=
0
;
}
}
});
},
/**
* @description: checkChange
* @author: renchao
*/
checkChange
()
{
if
(
this
.
checkList
.
length
===
0
)
{
this
.
tableData
=
[];
this
.
emptycolNum
=
datas
.
columns
().
emptycolNum
;
}
else
{
this
.
loadData
();
}
},
/**
* @description: getQsztName
* @param {*} code
* @author: renchao
*/
getQsztName
(
code
)
{
let
name
=
""
;
for
(
let
item
of
this
.
qsztList
)
{
if
(
item
.
value
==
code
)
{
name
=
item
.
label
;
break
;
}
}
return
name
;
},
// 新增一条补录信息
/**
* @description: 新增一条补录信息
* @param {*} row
* @param {*} del
* @author: renchao
*/
editDialog
(
row
,
del
)
{
this
.
$confirm
(
"此操作将新增一条补录信息, 是否继续?"
,
"提示"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
,
})
.
then
(()
=>
{
this
.
$parent
.
addRepairRecord
(
row
,
del
);
this
.
$message
({
type
:
"success"
,
message
:
"补录成功!"
,
});
})
.
catch
(()
=>
{
this
.
$message
({
type
:
"info"
,
message
:
"取消编辑"
,
});
});
},
},
};
</
script
>
<
style
lang=
"scss"
scoped
>
@import
"./qlxxCommon.scss"
;
</
style
>
\ No newline at end of file
src/views/registerBook/tdsyq.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-19 15:03:56
* @LastEditTime: 2023-0
8-16 08:53:21
-->
<
template
>
<div
class=
"djxxTable"
>
...
...
@@ -51,7 +51,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/registerBook/ygdj.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-19 15:04:07
* @LastEditTime: 2023-0
8-16 08:53:33
-->
<
template
>
<div
class=
"djxxTable"
>
...
...
@@ -50,7 +50,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/registerBook/yydj.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-19 15:04:15
* @LastEditTime: 2023-0
8-16 08:53:41
-->
<
template
>
<div
class=
"djxxTable"
>
...
...
@@ -50,7 +50,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
<td
v-for=
"count in emptycolNum"
:key=
"~count"
></td>
</tr>
...
...
src/views/system/qtjfjmb/components/editDialog.vue
View file @
e2a01a9
...
...
@@ -42,7 +42,7 @@
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"权利其他状况模板"
prop=
"qlqtzk"
>
<el-input
type=
"textarea"
:rows=
"
3
"
placeholder=
"请输入内容"
v-model=
"ruleForm.qlqtzk"
>
<el-input
type=
"textarea"
:rows=
"
8
"
placeholder=
"请输入内容"
v-model=
"ruleForm.qlqtzk"
>
</el-input>
</el-form-item>
</el-col>
...
...
src/views/system/sqywgz/sqywDetail.vue
View file @
e2a01a9
...
...
@@ -36,7 +36,7 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"发起业务单元类型"
v-if=
"form.sqdjyw"
>
<el-select
v-model=
"form.sqdjyw.sqywdylx"
disabled
placeholder=
"请选择"
class=
"width100"
>
<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>
...
...
src/views/workflow/components/dialog/addQlr.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
04 13:29:47
* @LastEditTime: 2023-08-
16 16:45:42
-->
<
template
>
<dialogBox
title=
"申请人信息"
width=
"60%"
isMain
v-model=
"myValue"
:isFullscreen=
"false"
@
submitForm=
"submitForm"
...
...
@@ -10,7 +10,7 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"权利人类型"
prop=
"sqrlx"
>
<el-select
clearable
v-model=
"ruleForm.sqrlx"
class=
"width100"
placeholder=
"请选择"
>
<el-select
clearable
v-model=
"ruleForm.sqrlx"
class=
"width100"
:disabled=
"!showButton"
placeholder=
"请选择"
>
<el-option
v-for=
"item in dictData['A36']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -18,12 +18,12 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"姓名/名称"
prop=
"sqrmc"
>
<el-input
v-model=
"ruleForm.sqrmc"
maxlegth=
"15"
></el-input>
<el-input
v-model=
"ruleForm.sqrmc"
maxlegth=
"15"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"证件种类"
prop=
"zjzl"
>
<el-select
clearable
v-model=
"ruleForm.zjzl"
class=
"width100"
placeholder=
"请选择"
>
<el-select
clearable
v-model=
"ruleForm.zjzl"
:disabled=
"!showButton"
class=
"width100"
placeholder=
"请选择"
>
<el-option
v-for=
"item in dictData['A30']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -33,17 +33,17 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"证件号"
prop=
"zjh"
>
<el-input
v-model=
"ruleForm.zjh"
maxlength=
"15"
oninput=
"this.value=this.value.replace(/[^\X0-9]/g,'')"
></el-input>
<el-input
v-model=
"ruleForm.zjh"
:disabled=
"!showButton"
maxlength=
"15"
oninput=
"this.value=this.value.replace(/[^\X0-9]/g,'')"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"联系电话"
prop=
"dh"
>
<el-input
v-model=
"ruleForm.dh"
maxlength=
"11"
oninput=
"value=value.replace(/[^\d]/g,'')"
></el-input>
<el-input
v-model=
"ruleForm.dh"
:disabled=
"!showButton"
maxlength=
"11"
oninput=
"value=value.replace(/[^\d]/g,'')"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"份数"
prop=
"fs"
>
<el-input
v-model=
"ruleForm.fs"
maxlength=
"8"
oninput=
"value=value.replace(/[^\d]/g,'')"
></el-input>
<el-input
v-model=
"ruleForm.fs"
:disabled=
"!showButton"
maxlength=
"8"
oninput=
"value=value.replace(/[^\d]/g,'')"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -51,17 +51,17 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"法人名称"
prop=
"frmc"
>
<el-input
v-model=
"ruleForm.frmc"
></el-input>
<el-input
v-model=
"ruleForm.frmc"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"国家/地区"
prop=
"gj"
>
<el-input
v-model=
"ruleForm.gj"
></el-input>
<el-input
v-model=
"ruleForm.gj"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"户籍所在省市"
prop=
"hjszss"
>
<el-input
v-model=
"ruleForm.hjszss"
></el-input>
<el-input
v-model=
"ruleForm.hjszss"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -69,12 +69,12 @@
<el-row>
<el-col
:span=
"16"
>
<el-form-item
label=
"地址"
prop=
"txdz"
>
<el-input
v-model=
"ruleForm.txdz"
></el-input>
<el-input
v-model=
"ruleForm.txdz"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"邮编"
prop=
"yb"
>
<el-input
v-model=
"ruleForm.yb"
></el-input>
<el-input
v-model=
"ruleForm.yb"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -82,17 +82,17 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"发证机关"
prop=
"fzjg"
>
<el-input
v-model=
"ruleForm.fzjg"
></el-input>
<el-input
v-model=
"ruleForm.fzjg"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"电子邮件"
prop=
"dzyj"
>
<el-input
v-model=
"ruleForm.dzyj"
></el-input>
<el-input
v-model=
"ruleForm.dzyj"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"权利比例"
prop=
"qlbl"
>
<el-input
v-model=
"ruleForm.qlbl"
></el-input>
<el-input
v-model=
"ruleForm.qlbl"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -100,12 +100,12 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"工作单位"
prop=
"gzdw"
>
<el-input
v-model=
"ruleForm.gzdw"
></el-input>
<el-input
v-model=
"ruleForm.gzdw"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"16"
>
<el-form-item
label=
"代理机构"
prop=
"dlrjg"
>
<el-input
v-model=
"ruleForm.dlrjg"
></el-input>
<el-input
v-model=
"ruleForm.dlrjg"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -113,17 +113,17 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"联系电话"
prop=
"dlrdh"
>
<el-input
v-model=
"ruleForm.dlrdh"
maxlength=
"11"
oninput=
"value=value.replace(/[^\d]/g,'')"
></el-input>
<el-input
v-model=
"ruleForm.dlrdh"
:disabled=
"!showButton"
maxlength=
"11"
oninput=
"value=value.replace(/[^\d]/g,'')"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"代理人姓名"
prop=
"dlrmc"
>
<el-input
v-model=
"ruleForm.dlrmc"
></el-input>
<el-input
v-model=
"ruleForm.dlrmc"
:disabled=
"!showButton"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"代理人证件类型"
prop=
"dlrzjlx"
>
<el-select
clearable
v-model=
"ruleForm.dlrzjlx"
class=
"width100"
placeholder=
"请选择"
>
<el-select
clearable
v-model=
"ruleForm.dlrzjlx"
:disabled=
"!showButton"
class=
"width100"
placeholder=
"请选择"
>
<el-option
v-for=
"item in dictData['A30']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -133,7 +133,7 @@
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"性别"
prop=
"xb"
>
<el-select
clearable
v-model=
"ruleForm.xb"
class=
"width100"
placeholder=
"请选择"
>
<el-select
clearable
v-model=
"ruleForm.xb"
:disabled=
"!showButton"
class=
"width100"
placeholder=
"请选择"
>
<el-option
v-for=
"item in dictData['A43']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -141,7 +141,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"代理人证件号"
prop=
"dlrzjh"
>
<el-input
v-model=
"ruleForm.dlrzjh"
maxlength=
"20"
></el-input>
<el-input
v-model=
"ruleForm.dlrzjh"
:disabled=
"!showButton"
maxlength=
"20"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
src/views/workflow/components/dialog/zsyl.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
0 13:43:32
* @LastEditTime: 2023-08-1
6 17:02:36
-->
<
template
>
<div
class=
"from-clues loadingtext"
v-Loading=
"loading"
element-loading-text=
"拼命加载中..."
style=
"height:720px;text-align: center;"
>
...
...
@@ -30,6 +30,7 @@
},
data
()
{
return
{
key
:
0
,
noData
:
false
,
imgSrc
:
require
(
'@/image/bdcqz/bdcqzs2.jpg'
),
bdczmSrc
:
require
(
'@/image/bdcqz/bdczm.jpg'
),
...
...
@@ -124,26 +125,31 @@
const
image
=
new
Image
();
image
.
onload
=
()
=>
{
context
.
drawImage
(
image
,
0
,
0
);
context
.
font
=
'1
8
px 楷体'
;
context
.
font
=
'1
6
px 楷体'
;
context
.
fillStyle
=
'#000000'
;
context
.
fillText
(
this
.
bdcqz
.
sjjc
?
this
.
bdcqz
.
sjjc
:
''
,
60
,
56
);
context
.
fillText
(
this
.
bdcqz
.
djnd
?
this
.
bdcqz
.
djnd
:
''
,
113
,
56
);
context
.
fillText
(
this
.
bdcqz
.
sxqc
?
this
.
bdcqz
.
sxqc
:
''
,
180
,
56
);
context
.
fillText
(
this
.
bdcqz
.
sxh
?
this
.
bdcqz
.
sxh
:
''
,
370
,
56
);
context
.
fillText
(
this
.
bdcqz
.
qlr
?
this
.
bdcqz
.
qlr
:
''
,
138
,
97
);
context
.
fillText
(
this
.
bdcqz
.
gyqk
?
this
.
bdcqz
.
gyqk
:
''
,
138
,
138
);
context
.
fillText
(
this
.
bdcqz
.
zl
?
this
.
bdcqz
.
zl
:
''
,
138
,
180
);
context
.
fillText
(
this
.
bdcqz
.
bdcdyh
?
this
.
bdcqz
.
bdcdyh
:
''
,
138
,
223
);
context
.
fillText
(
this
.
bdcqz
.
qllx
?
this
.
bdcqz
.
qllx
:
''
,
138
,
263
);
context
.
fillText
(
this
.
bdcqz
.
qlxz
?
this
.
bdcqz
.
qlxz
:
''
,
138
,
303
);
context
.
fillText
(
this
.
bdcqz
.
yt
?
this
.
bdcqz
.
yt
:
''
,
138
,
346
);
context
.
fillText
(
this
.
bdcqz
.
mj
?
this
.
bdcqz
.
mj
:
''
,
138
,
386
);
context
.
fillText
(
this
.
bdcqz
.
syqx
?
this
.
bdcqz
.
syqx
:
''
,
138
,
429
);
context
.
fillText
(
this
.
bdcqz
.
qlr
?
this
.
bdcqz
.
qlr
:
''
,
129
,
97
);
context
.
fillText
(
this
.
bdcqz
.
gyqk
?
this
.
bdcqz
.
gyqk
:
''
,
129
,
136
);
this
.
bdcdyh
=
this
.
bdcqz
.
bdcdyh
.
slice
(
0
,
6
)
+
' '
+
this
.
bdcqz
.
bdcdyh
.
slice
(
6
,
12
)
+
' '
+
this
.
bdcqz
.
bdcdyh
.
slice
(
12
,
19
)
+
' '
+
this
.
bdcqz
.
bdcdyh
.
slice
(
19
,
this
.
bdcqz
.
bdcdyh
.
length
)
context
.
fillText
(
this
.
bdcdyh
?
this
.
bdcdyh
:
''
,
129
,
223
);
context
.
fillText
(
this
.
bdcqz
.
qllx
?
this
.
bdcqz
.
qllx
:
''
,
129
,
263
);
context
.
fillText
(
this
.
bdcqz
.
qlxz
?
this
.
bdcqz
.
qlxz
:
''
,
129
,
303
);
context
.
fillText
(
this
.
bdcqz
.
yt
?
this
.
bdcqz
.
yt
:
''
,
129
,
346
);
context
.
fillText
(
this
.
bdcqz
.
mj
?
this
.
bdcqz
.
mj
:
''
,
129
,
386
);
// context.fillText(this.bdcqz.syqx ? this.bdcqz.syqx : '', 129, 429);
// qlqtzk
const
maxWidth
=
28
0
;
// 最大宽度限制
const
maxWidth
=
33
0
;
// 最大宽度限制
let
lines
=
this
.
bdcqz
.
qlqtzk
?
this
.
bdcqz
.
qlqtzk
.
split
(
'\n'
)
:
[];
lines
.
forEach
((
line
,
index
)
=>
{
const
y
=
4
69
+
(
index
*
3
7
);
// 每行文本的垂直位置
const
y
=
4
73
+
(
index
*
2
7
);
// 每行文本的垂直位置
let
currentLine
=
''
;
let
arr
=
[];
for
(
let
word
of
line
)
{
...
...
@@ -158,12 +164,12 @@
}
arr
.
push
(
currentLine
);
arr
.
forEach
((
line
,
index
)
=>
{
context
.
fillText
(
line
,
1
38
,
y
+
(
index
*
20
));
// 调整行高
context
.
fillText
(
line
,
1
29
,
y
+
(
index
*
20
));
// 调整行高
})
})
let
lines1
=
this
.
bdcqz
.
fj
?
this
.
bdcqz
.
fj
.
split
(
' '
)
:
[];
lines1
.
forEach
((
line
,
index
)
=>
{
const
y
=
100
+
(
index
*
3
7
);
// 每行文本的垂直位置
const
y
=
100
+
(
index
*
2
7
);
// 每行文本的垂直位置
let
currentLine
=
''
;
let
arr
=
[];
for
(
let
word
of
line
)
{
...
...
@@ -181,7 +187,71 @@
context
.
fillText
(
line
,
580
,
y
+
(
index
*
20
));
// 调整行高
})
})
let
lines3
=
this
.
bdcqz
.
syqx
?
this
.
bdcqz
.
syqx
.
split
(
' '
)
:
[];
lines3
.
forEach
((
line
,
index
)
=>
{
const
y
=
423
+
(
index
*
27
);
// 每行文本的垂直位置
let
currentLine
=
''
;
let
arr
=
[];
for
(
let
word
of
line
)
{
const
testLine
=
currentLine
+
word
;
const
lineWidth
=
context
.
measureText
(
testLine
).
width
;
if
(
lineWidth
<=
315
)
{
currentLine
=
testLine
;
}
else
{
arr
.
push
(
currentLine
);
currentLine
=
word
;
}
}
arr
.
push
(
currentLine
);
arr
.
forEach
((
line
,
index
)
=>
{
context
.
fillText
(
line
,
129
,
y
+
(
index
*
20
));
// 调整行高
})
})
let
lines2
=
this
.
bdcqz
.
zl
?
this
.
bdcqz
.
zl
.
split
(
' '
)
:
[];
if
(
lines2
.
length
>
22
)
{
lines2
.
forEach
((
line
,
index
)
=>
{
const
y
=
170
+
(
index
*
20
);
// 每行文本的垂直位置
let
currentLine
=
''
;
let
arr
=
[];
for
(
let
word
of
line
)
{
const
testLine
=
currentLine
+
word
;
const
lineWidth
=
context
.
measureText
(
testLine
).
width
;
if
(
lineWidth
<=
360
)
{
currentLine
=
testLine
;
}
else
{
arr
.
push
(
currentLine
);
currentLine
=
word
;
}
}
arr
.
push
(
currentLine
);
arr
.
forEach
((
line
,
index
)
=>
{
context
.
fillText
(
line
,
129
,
y
+
(
index
*
20
));
// 调整行高
})
})
}
else
{
lines2
.
forEach
((
line
,
index
)
=>
{
const
y
=
180
+
(
index
*
20
);
// 每行文本的垂直位置
let
currentLine
=
''
;
let
arr
=
[];
for
(
let
word
of
line
)
{
const
testLine
=
currentLine
+
word
;
const
lineWidth
=
context
.
measureText
(
testLine
).
width
;
if
(
lineWidth
<=
360
)
{
currentLine
=
testLine
;
}
else
{
arr
.
push
(
currentLine
);
currentLine
=
word
;
}
}
arr
.
push
(
currentLine
);
arr
.
forEach
((
line
,
index
)
=>
{
context
.
fillText
(
line
,
129
,
y
+
(
index
*
20
));
// 调整行高
})
})
}
}
image
.
src
=
this
.
imgSrc
},
...
...
src/views/workflow/components/fdcqxmTable.vue
View file @
e2a01a9
...
...
@@ -18,51 +18,54 @@
>
<el-table-column
prop=
"index"
width=
"50"
:render-header=
"renderHeader"
>
<template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
$index
+
1
}}
</div>
<div
style=
"text-align: center"
>
{{
scope
.
$index
+
1
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"bdcdyh"
label=
"不动产单元号"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
bdcdyh
}}
</div>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
bdcdyh
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"xmmc"
label=
"项目名称"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
xmmc
}}
</div>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
xmmc
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"zcs"
label=
"总层数"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
zcs
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"ytmc"
label=
"房屋用途"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
ytmc
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"fwjgmc"
label=
"房屋结构"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
fwjgmc
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"jzmj"
label=
"建筑面积"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
jzmj
}}
</div>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
jzmj
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"
ytmc"
label=
"用途名称
"
min-width=
"100"
>
<el-table-column
prop=
"
jgsj"
label=
"竣工时间
"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
ytmc
}}
</div>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
jgsj
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"
fwjgmc"
label=
"房屋结构名称
"
min-width=
"100"
>
<el-table-column
prop=
"
zts"
label=
"总套数
"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
fwjgmc
}}
</div>
<div
style=
"text-align: center"
>
{{
scope
.
row
.
zts
}}
</div>
</
template
>
</el-table-column>
</el-table>
</div>
</template>
<
script
>
import
{
mapGetters
}
from
"vuex"
;
import
{
mapGetters
}
from
"vuex"
;
export
default
{
computed
:
{
...
...
@@ -84,11 +87,10 @@ export default {
return
{
// 键名转换,方法默认是label和children进行树状渲染
key
:
0
,
tableDataList
:
[]
tableDataList
:
[]
,
};
},
mounted
()
{
},
mounted
()
{},
watch
:
{
tableData
:
{
handler
:
function
(
val
,
oldVal
)
{
...
...
@@ -133,7 +135,7 @@ export default {
)}
<
/div
>
);
}
}
,
},
};
</
script
>
...
...
src/views/workflow/components/fzxx.vue
View file @
e2a01a9
...
...
@@ -24,7 +24,7 @@
<el-input
v-model=
"ruleForm.qlr"
clearable
placeholder=
"请输入权利人"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
class=
"btnColRight"
v-if=
"
ableOperation
"
>
<el-col
:span=
"6"
class=
"btnColRight"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"handleSearch"
>
查询
</el-button>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"zslqClick"
>
证书领取
</el-button>
...
...
@@ -50,7 +50,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
tru
e
,
viewEdit
:
fals
e
,
ruleForm
:
{
ysxlh
:
''
,
zsh
:
''
,
...
...
@@ -66,7 +66,7 @@
}
},
created
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
},
computed
:
{
...
mapGetters
([
'workFresh'
])
...
...
src/views/workflow/components/qlrCommonTable.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
04 13:26:31
* @LastEditTime: 2023-08-
16 16:44:04
-->
<
template
>
<div>
<lb-table
:column=
"column"
:pagination=
"false"
:key=
"key"
:heightNumSetting=
"true"
:data=
"tableDataList"
>
</lb-table>
<addQlr
v-model=
"dialog"
:details=
"details"
:showButton=
"
!isD
isabled"
@
updateDetail=
"handleupdateDetail"
/>
<addQlr
v-model=
"dialog"
:details=
"details"
:showButton=
"
d
isabled"
@
updateDetail=
"handleupdateDetail"
/>
</div>
</
template
>
<
script
>
...
...
@@ -44,7 +44,6 @@
dataIndex
:
0
,
dialog
:
false
,
isaddupdate
:
false
,
isDisabled
:
this
.
disabled
,
details
:
{},
tableDataList
:
[],
InformationTable
:
[
...
...
@@ -52,7 +51,7 @@
width
:
'50'
,
renderHeader
:
(
h
,
scope
)
=>
{
return
<
div
>
{
this
.
isD
isabled
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
addClick
()
}}
><
/i
>
!
this
.
d
isabled
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
addClick
()
}}
><
/i
>
}
<
/div
>
},
...
...
@@ -60,7 +59,7 @@
return
(
<
div
>
{
this
.
isD
isabled
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
!
this
.
d
isabled
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
<
i
class
=
"el-icon-minus pointer"
onClick
=
{()
=>
{
this
.
deleClick
(
scope
.
$index
,
scope
.
row
)
}}
><
/i
>
}
<
/div
>
...
...
@@ -71,7 +70,7 @@
label
:
'身份证读卡器'
,
align
:
'center'
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
"el-icon-tickets"
disabled
=
{
this
.
isD
isabled
}
onClick
=
{()
=>
{
this
.
readClick
(
scope
.
row
)
}}
>
读取
<
/el-button
>
return
<
el
-
button
type
=
"text"
icon
=
"el-icon-tickets"
disabled
=
{
!
this
.
d
isabled
}
onClick
=
{()
=>
{
this
.
readClick
(
scope
.
row
)
}}
>
读取
<
/el-button
>
}
},
{
...
...
@@ -103,13 +102,13 @@
return
(
<
div
>
{
this
.
isDisabled
?
<
el
-
button
icon
=
"el-icon-view"
type
=
"text"
onClick
=
{()
=>
{
this
.
queryViewClick
(
scope
.
$index
,
scope
.
row
)
}}
disabled
=
{
this
.
isDisabled
}
>
查看
<
/el-button> : <el-butto
n
this
.
disabled
?
<
el
-
button
icon
=
"el-icon-edit-outline"
type
=
"text"
onClick
=
{()
=>
{
this
.
editClick
(
scope
.
$index
,
scope
.
row
)
}}
disabled
=
{
this
.
isDisabled
}
>
编辑
<
/el-button
>
onClick
=
{()
=>
{
this
.
editClick
(
scope
.
$index
,
scope
.
row
)
}}
>
编辑
<
/el-button> : <el-butto
n
icon
=
"el-icon-view"
type
=
"text"
onClick
=
{()
=>
{
this
.
queryViewClick
(
scope
.
$index
,
scope
.
row
)
}}
>
查看
<
/el-button
>
}
<
/div
>
)
...
...
@@ -179,7 +178,6 @@
}
this
.
key
++
},
// 新增
/**
* @description: 新增
* @author: renchao
...
...
@@ -213,7 +211,6 @@
});
},
// 身份证读取
/**
* @description: 身份证读取
* @param {*} row
...
...
src/views/workflow/components/spyj.vue
View file @
e2a01a9
<!--
* @Description: 审批意见
* @Autor: renchao
* @LastEditTime: 2023-0
5-17 10:41:24
* @LastEditTime: 2023-0
8-16 14:39:55
-->
<
template
>
<div
class=
"spyj loadingtext"
>
...
...
@@ -25,7 +25,7 @@
<el-col
:span=
"24"
>
<el-form-item
label-width=
"0"
class=
"opinion_item"
>
<el-input
:disabled=
"!
ableOperation
|| item.show"
:disabled=
"!
viewEdit
|| item.show"
type=
"textarea"
:rows=
"4"
class=
"opinion"
...
...
@@ -35,7 +35,7 @@
<el-button
class=
"opinion_btn"
@
click=
"commonOpinion(index)"
v-if=
"
ableOperation
"
v-if=
"
viewEdit
"
>
常用意见
</el-button
>
</el-form-item>
...
...
@@ -57,7 +57,7 @@
</div>
</el-form>
</div>
<div
class=
"submit_button"
v-if=
"
ableOperation
"
>
<div
class=
"submit_button"
v-if=
"
viewEdit
"
>
<el-button
type=
"primary"
:disabled=
"shows"
@
click=
"onSubmit()"
>
保存
</el-button>
</div>
</div>
...
...
@@ -78,7 +78,7 @@ export default {
currentindex
:
0
,
bsmSlsq
:
""
,
refresh
:
10
,
ableOperation
:
false
,
viewEdit
:
false
,
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
,
bestepid
:
this
.
$route
.
query
.
bestepid
,
propsParam
:
{},
...
...
@@ -103,8 +103,7 @@ export default {
created
()
{},
mounted
()
{
this
.
propsParam
=
this
.
$attrs
;
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
// this.ableOperation = this.$parent.ableOperation;
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
getShList
();
switch
(
this
.
$parent
.
dqhj
)
{
...
...
src/views/workflow/components/szxx.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
03 14:13:59
* @LastEditTime: 2023-08-
16 09:48:00
-->
<
template
>
<div
class=
"szxx"
>
...
...
@@ -41,7 +41,7 @@
<span>
印刷序列号:
{{
item
.
ysxlh
}}
</span>
</div>
</div>
<div
class=
"card_padding"
v-if=
"
ableOperation
"
>
<div
class=
"card_padding"
v-if=
"
viewEdit
"
>
<div
class=
"top_line middle_margin"
></div>
<div
class=
"text"
v-if=
"item.ysxlh"
>
<el-button
class=
"operation_button"
type=
"text"
@
click=
"openInvalidDiglog(item)"
>
再次打印(
{{
item
.
szcs
...
...
@@ -81,7 +81,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
tru
e
,
viewEdit
:
fals
e
,
dialog
:
false
,
tableData
:
[],
bdcqzlx
:
1
,
...
...
@@ -104,7 +104,7 @@
},
created
()
{
this
.
list
()
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
},
methods
:
{
//初始化列表
...
...
src/views/workflow/mixin/index.js
View file @
e2a01a9
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
0 09:34:25
* @LastEditTime: 2023-08-1
6 08:59:32
*/
import
{
getPrintTemplateByCode
}
from
"@/api/print"
;
import
{
uploadUndo
}
from
"@/api/clxx"
;
...
...
src/views/ywbl/slsqxx/cfdj/tdslxx.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-11 09:57:17
* @LastEditTime: 2023-0
8-16 09:50:02
-->
<
template
>
<div
class=
"slxx"
>
...
...
@@ -152,14 +152,14 @@
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封机关:"
prop=
"cfdj.cfjg"
>
<el-input
v-model=
"ruleForm.cfdj.cfjg"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封文号:"
prop=
"cfdj.cfwh"
>
<el-input
v-model=
"ruleForm.cfdj.cfwh"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -173,7 +173,7 @@
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封期限:"
prop=
"cfdj.cfqx"
>
<el-input
v-model=
"ruleForm.cfdj.cfqx"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -184,7 +184,7 @@
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-date-picker>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -192,7 +192,7 @@
<el-date-picker
v-model=
"ruleForm.cfdj.cfjssj"
class=
"width100"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd"
></el-date-picker>
...
...
@@ -204,14 +204,14 @@
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封文件:"
prop=
"cfdj.cfwj"
>
<el-input
v-model=
"ruleForm.cfdj.cfwj"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"16"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封范围:"
prop=
"cfdj.cffw"
>
<el-input
v-model=
"ruleForm.cfdj.cffw"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -221,7 +221,7 @@
<el-input
v-model=
"ruleForm.cfdj.fj"
type=
"textarea"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -232,7 +232,7 @@
class=
"textArea"
type=
"textarea"
v-model=
"ruleForm.cfdj.djyy"
:disabled=
"!
ableOperation
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit || isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -246,27 +246,27 @@
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"解封机关:"
prop=
"cfdj.jfjg"
>
<el-input
v-model=
"ruleForm.cfdj.jfjg"
:disabled=
"!
ableOperation
|| ableEdit"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"解封文件:"
prop=
"cfdj.jfwj"
>
<el-input
v-model=
"ruleForm.cfdj.jfwj"
:disabled=
"!
ableOperation
|| ableEdit"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"解封文号:"
prop=
"cfdj.jfwh"
>
<el-input
v-model=
"ruleForm.cfdj.jfwh"
:disabled=
"!
ableOperation
|| ableEdit"
></el-input>
:disabled=
"!
viewEdit
|| ableEdit"
></el-input>
</el-form-item>
</el-col>
</el-row>
</div>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
&& !ableEdit"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
&& !ableEdit"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -282,7 +282,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
tru
e
,
viewEdit
:
fals
e
,
disabled
:
true
,
flagTop
:
this
.
flag
?
"top"
:
""
,
rules
:
{},
...
...
@@ -299,14 +299,14 @@
async
created
()
{
this
.
propsParam
=
this
.
$attrs
;
this
.
ableEdit
=
this
.
$parent
.
showBatch
;
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
if
(
this
.
propsParam
.
djlx
==
"400"
)
{
this
.
isJfOperation
=
true
;
}
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
res
.
result
;
...
...
src/views/ywbl/slsqxx/diyaq/slxx.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 12:56:43
* @LastEditTime: 2023-08-1
6 16:10:51
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -126,7 +126,7 @@
</el-col>
<el-col
:span=
"9"
>
<el-form-item
label=
"是否存在禁止或者限制转让抵押不动产的约定:"
label-width=
"350px"
>
<el-radio-group
v-model=
"ruleForm.diyaq.sfczjzhxz"
:disabled=
"!
ableOperation
|| isJfOperation"
>
<el-radio-group
v-model=
"ruleForm.diyaq.sfczjzhxz"
:disabled=
"!
viewEdit
|| isJfOperation"
>
<el-radio
label=
"1"
>
启用
</el-radio>
<el-radio
label=
"0"
>
禁用
</el-radio>
</el-radio-group>
...
...
@@ -138,8 +138,8 @@
<el-col
:span=
"8"
v-show=
"ruleForm.diyaq.dyfs == 1"
>
<el-form-item
label=
"被担保主债权数额:"
>
<div
style=
"display:flex"
>
<el-input
v-model=
"ruleForm.diyaq.bdbzzqse"
:disabled=
"!
ableOperation
|| isJfOperation"
style=
"width:500%"
></el-input>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!
ableOperation
|| isJfOperation"
>
<el-input
v-model=
"ruleForm.diyaq.bdbzzqse"
:disabled=
"!
viewEdit
|| isJfOperation"
style=
"width:500%"
></el-input>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!
viewEdit
|| isJfOperation"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -149,19 +149,19 @@
<el-col
:span=
"8"
v-show=
"ruleForm.diyaq.dyfs == 2"
>
<el-form-item
label=
"最高债权额:"
>
<el-input
v-model=
"ruleForm.diyaq.zgzqse"
:disabled=
"!
ableOperation
|| isJfOperation"
></el-input>
<el-input
v-model=
"ruleForm.diyaq.zgzqse"
:disabled=
"!
viewEdit
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行起始时间:"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxqssj"
:disabled=
"!
ableOperation
|| isJfOperation"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxqssj"
:disabled=
"!
viewEdit
|| isJfOperation"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行结束时间:"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxjssj"
:disabled=
"!
ableOperation
|| isJfOperation"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxjssj"
:disabled=
"!
viewEdit
|| isJfOperation"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -170,21 +170,21 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.diyaq.dbfw"
:disabled=
"ruleForm.sldy.djlx == '300'&& !
ableOperation
|| isJfOperation"
></el-input>
:disabled=
"ruleForm.sldy.djlx == '300'&& !
viewEdit
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"最高债权确定事实和数额:"
>
<el-input
v-model=
"ruleForm.diyaq.zgzqqdss"
:disabled=
"!
ableOperation
|| isJfOperation"
></el-input>
<el-input
v-model=
"ruleForm.diyaq.zgzqqdss"
:disabled=
"!
viewEdit
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"!
ableOperation
|| isJfOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"!
viewEdit
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -196,7 +196,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -208,7 +208,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -221,7 +221,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -232,14 +232,13 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
@
upDateQlrxxList=
"upDateQlrxxList"
:
viewtype=
"!ableOperation"
:
gyfs=
"ruleForm.sldy.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"
viewEdit
"
@
upDateQlrxxList=
"upDateQlrxxList"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
抵押人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
:viewtype=
"!ableOperation"
/>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
:disabled=
"viewEdit"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -248,12 +247,12 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.sldy.djlx == '400'"
label=
"注销抵押原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!
ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.diyaq.zxdyyy"
>
</el-input>
</el-form-item>
<el-form-item
v-else
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.diyaq.djyy"
>
</el-input>
</el-form-item>
...
...
@@ -261,7 +260,7 @@
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmitClick()"
>
保存
</el-button>
</el-form-item>
...
...
@@ -275,7 +274,7 @@
import
{
mapGetters
}
from
"vuex"
;
export
default
{
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
if
(
this
.
propsParam
.
djlx
==
'400'
)
{
...
...
@@ -285,7 +284,7 @@
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"bsmSlsq"
,
this
.
$route
.
query
.
bsmSlsq
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
res
.
result
;
...
...
@@ -302,7 +301,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
disabled
:
true
,
czrOptions
:
[],
ruleForm
:
{
...
...
src/views/ywbl/slsqxx/fdcq1/slxx.vue
View file @
e2a01a9
<!--
* @Description: 房屋多幢受理信息
* @Autor: ssq
* @LastEditTime: 2023-08-1
4 13:02:34
* @LastEditTime: 2023-08-1
6 16:28:16
-->
<
template
>
<div
class=
"slxx"
>
<el-form
:model=
"ruleForm"
:rules=
"rules"
ref=
"ruleForm"
:label-position=
"flag ? 'top' : ''"
:inline=
"flag"
<el-form
:model=
"ruleForm"
:rules=
"rules"
ref=
"ruleForm"
:label-position=
"flag ? 'top' : ''"
:inline=
"flag"
label-width=
"120px"
>
<div
class=
"slxx_con"
:class=
"flag ? 'formMarginBot0' : ''"
>
<div
class=
"slxx_title title-block"
>
...
...
@@ -52,37 +57,81 @@
</div>
<el-row
:gutter=
"10"
v-if=
"ruleForm.qlxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"原不动产权证号:"
>
<el-input
disabled
v-model=
"ruleForm.sldy.ybdcqzsh"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"不动产单元号:"
>
<el-input
disabled
v-model=
"ruleForm.qlxx.bdcdyh"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
16
"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"坐落:"
>
<el-input
disabled
v-model=
"ruleForm.sldy.zl"
></el-input>
<el-input
v-model=
"ruleForm.sldy.zl"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.fdcq1"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"宗地面积:"
>
<div
class=
"flex"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.zdmj"
></el-input>
<el-select
disabled
v-model=
"ruleForm.zdjbxx.mjdw"
style=
"width: 20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
></el-option>
</el-select>
</div>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地性质:"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.qlxzmc"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地使用权人:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq1.tdsyqr"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.fdcq1"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"独用土地面积:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq1.dytdmj"
></el-input>
<el-input
v-model=
"ruleForm.fdcq1.dytdmj"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"分摊土地面积:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq1.fttdmj"
></el-input>
<el-input
v-model=
"ruleForm.fdcq1.fttdmj"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"房地产交易价格:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq1.fdcjyjg"
></el-input>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.fdcq1.fdcjyjg"
style=
"width: 500%"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"ruleForm.fdcq1.jedw"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
></el-option>
</el-select>
</div>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"附记:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq1.fj"
></el-input>
<el-input
v-model=
"ruleForm.fdcq1.fj"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -90,7 +139,7 @@
房屋多幢明细
<div
class=
"triangle"
></div>
<fdcqxmTable
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
:tableData=
"ruleForm.fdcqxm"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -98,7 +147,7 @@
<div
class=
"triangle"
></div>
</div>
<tdytTable
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
:tableData=
"ruleForm.tdytqxList"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -108,7 +157,9 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!ableOperation"
@
change=
"showCZInfo"
<el-radio-group
:disabled=
"!viewEdit"
@
change=
"showCZInfo"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
...
...
@@ -117,52 +168,42 @@
</el-radio-group>
</el-form-item>
</el-col>
<!--
<el-col
:span=
"5"
>
<el-form-item
label=
"发证方式:"
>
<el-radio-group
v-model=
"ruleForm.slsq.fzfs"
:disabled=
"!ableOperation"
>
<el-radio
label=
"1"
>
小证
</el-radio>
<el-radio
label=
"2"
>
大证
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
-->
<el-col
:span=
"5"
v-show=
"ruleForm.sldy.gyfs != '0'"
>
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!ableOperation"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!viewEdit"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"5"
v-show=
"ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs != '0'"
>
<el-col
:span=
"5"
v-show=
"ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs != '0'"
>
<el-form-item
label=
"持证人:"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!ableOperation"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!viewEdit"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
:label=
"item.sqrmc"
:value=
"item.zjh"
>
</el-option>
:value=
"item.zjh"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.slsq.gyfs"
/>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"viewEdit"
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
v-if=
"ruleForm.ywrList && ruleForm.qlxx.djlx == '200'"
>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
v-if=
"ruleForm.qlxx"
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
<qlrCommonTable
v-if=
"ruleForm.qlxx"
:disabled=
"viewEdit"
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
:gyfs=
"ruleForm.qlxx.gyfs"
/>
</div>
<div
class=
"slxx_title title-block"
>
...
...
@@ -172,15 +213,19 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.sldy"
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.fdcq1.djyy"
>
</el-input>
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq1.djyy"
></el-input>
</el-form-item>
</el-col>
</el-row>
</div>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -189,7 +234,7 @@
</div>
</
template
>
<
script
>
import
ywmix
from
"@/views/ywbl/mixin/index"
import
ywmix
from
"@/views/ywbl/mixin/index"
;
import
qlrCommonTable
from
"@/views/workflow/components/qlrCommonTable"
;
import
fdcqxmTable
from
"@/views/workflow/components/fdcqxmTable"
;
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
...
...
@@ -198,20 +243,22 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
{
...
res
.
result
,
...
res
.
result
.
qlxxdatas
,
}
}
;
//初始化发证方式,1:小证,2:大正
this
.
ruleForm
.
slsq
.
fzfs
==
null
?
this
.
ruleForm
.
slsq
.
fzfs
=
'1'
:
this
.
ruleForm
.
slsq
.
fzfs
;
this
.
ruleForm
.
slsq
.
fzfs
==
null
?
(
this
.
ruleForm
.
slsq
.
fzfs
=
"1"
)
:
this
.
ruleForm
.
slsq
.
fzfs
;
this
.
czrOptions
=
this
.
ruleForm
.
qlrList
;
}
});
...
...
@@ -227,31 +274,29 @@
czrOptions
:
[],
ruleForm
:
{
flow
:
{
ywh
:
''
ywh
:
""
,
},
qlxx
:
{
mj
:
''
mj
:
""
,
},
sldy
:
{
gyfs
:
''
},
slsq
:
{
gyfs
:
""
,
},
slsq
:
{},
fdcq1
:
{
zyjzmj
:
''
,
ftjzmj
:
''
zyjzmj
:
""
,
ftjzmj
:
""
,
},
zdjbxx
:
{
ghytmc
:
''
}
ghytmc
:
""
,
}
,
},
//传递参数
propsParam
:
this
.
$attrs
,
//表单是否可操作
ableOperation
:
tru
e
,
rules
:
{}
}
viewEdit
:
fals
e
,
rules
:
{}
,
}
;
},
methods
:
{
/**
...
...
@@ -294,7 +339,7 @@
* @author: renchao
*/
onSubmit
()
{
let
arr
=
this
.
ruleForm
.
tdytqxList
.
filter
(
item
=>
!
item
.
yt
)
let
arr
=
this
.
ruleForm
.
tdytqxList
.
filter
(
(
item
)
=>
!
item
.
yt
);
if
(
arr
.
length
>
0
)
{
this
.
$message
({
showClose
:
true
,
...
...
@@ -310,18 +355,18 @@
message
:
"保存成功!"
,
type
:
"success"
,
});
this
.
$store
.
dispatch
(
'user/refreshPage'
,
true
);
this
.
$store
.
dispatch
(
"user/refreshPage"
,
true
);
}
else
{
this
.
$message
({
showClose
:
true
,
message
:
res
.
message
,
type
:
"error"
})
}
})
}
}
type
:
"error"
,
});
}
});
},
},
};
</
script
>
<
style
scoped
lang=
'scss'
>
@import
"~@/styles/public.scss"
;
...
...
src/views/ywbl/slsqxx/fdcq2/slxx.vue
View file @
e2a01a9
<!--
* @Description: 受理信息
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 12:57:21
* @LastEditTime: 2023-08-1
6 16:05:34
-->
<
template
>
<div
class=
"slxx"
>
...
...
@@ -52,65 +52,191 @@
</div>
<el-row
:gutter=
"10"
v-if=
"ruleForm.qlxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"原不动产权证号:"
>
<el-input
disabled
v-model=
"ruleForm.sldy.ybdcqzsh"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"不动产单元号:"
>
<el-input
disabled
v-model=
"ruleForm.sldy.bdcdyh"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
16
"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"坐落:"
>
<el-input
disabled
v-model=
"ruleForm.sldy.zl"
></el-input>
<el-input
v-model=
"ruleForm.sldy.zl"
disabled
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.fdcq2"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地使用期限:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.tdsyqx"
></el-input>
<el-form-item
label=
"宗地面积:"
>
<div
class=
"flex"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.zdmj"
></el-input>
<el-select
disabled
v-model=
"ruleForm.zdjbxx.mjdw"
style=
"width: 68px"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
</div>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地使用权人:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.tdsyqr"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地性质:"
>
<treeselect
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq2.tdxz"
noOptionsText=
"暂无数据"
placeholder=
""
:normalizer=
"normalizer"
:default-expand-level=
"1"
:show-count=
"true"
:options=
"dictData['A9']"
/>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.qlxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"规划用途名称:"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.ghytmc"
></el-input>
<el-form-item
label=
"独用土地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.fdcq2.dytdmj"
:disabled=
"!viewEdit"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width: 68px"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
</div>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"分摊土地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.fdcq2.fttdmj"
:disabled=
"!viewEdit"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width: 68px"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
</div>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋性质:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.fwxzmc"
></el-input>
<el-select
v-model=
"ruleForm.fdcq2.fwxz"
:disabled=
"!viewEdit"
>
<el-option
v-for=
"item in dictData['A19']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.qlxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋用途:"
>
<treeselect
v-model=
"ruleForm.fdcq2.ghyt"
:disabled=
"!viewEdit"
noOptionsText=
""
placeholder=
""
:normalizer=
"normalizer"
:show-count=
"true"
:options=
"dictData['A17']"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋结构:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.fwjgmc"
></el-input>
<el-select
v-model=
"ruleForm.fdcq2.fwjg"
:disabled=
"!viewEdit"
>
<el-option
v-for=
"item in dictData['A46']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"竣工时间:"
>
<!--
<el-input
v-model=
"ruleForm.fdcq2.jgsj"
></el-input>
-->
<el-date-picker
v-model=
"ruleForm.fdcq2.jgsj"
class=
"width100"
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd"
:disabled=
"!viewEdit || ableEdit || isJfOperation"
></el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.qlxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"所在层:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.szc
"
></el-input>
<el-input
v-model=
"ruleForm.fdcq2.szc"
:disabled=
"!viewEdit
"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"总层数:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.zcs
"
></el-input>
<el-input
:disabled=
"!viewEdit"
v-model
.
number=
"ruleForm.fdcq2.zcs"
oninput=
"value=value.replace(/[^0-9]/g,'')
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.fdcq2"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"竣工时间:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.jgsj"
></el-input>
<el-form-item
label=
"房地产交易价格:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.fdcq2.fdcjyjg"
style=
"width: 500%"
:disabled=
"!viewEdit"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"ruleForm.fdcq2.jedw"
:disabled=
"!viewEdit"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
</div>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.fdcq2"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"建筑面积:"
>
<div
class=
"flex"
>
<el-input
disabled
v-model=
"ruleForm.qlxx.mj
"
<el-input
v-model=
"ruleForm.fdcq2.jzmj"
:disabled=
"!viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -124,12 +250,12 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"专有建筑面积:"
>
<div
class=
"flex"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.zyjzmj
"
<el-input
v-model=
"ruleForm.fdcq2.zyjzmj"
:disabled=
"!viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -140,18 +266,15 @@
</div>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"分摊建筑面积:"
>
<div
class=
"flex"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2.ftjzmj
"
<el-input
v-model=
"ruleForm.fdcq2.ftjzmj"
:disabled=
"!viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -163,12 +286,19 @@
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"附记:"
>
<el-input
v-model=
"ruleForm.fdcq2.fj"
:disabled=
"!viewEdit"
></el-input>
</el-form-item>
</el-col>
</el-row>
<div
class=
"slxx_title title-block"
>
土地用途
<div
class=
"triangle"
></div>
</div>
<tdytTable
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
:tableData=
"ruleForm.tdytqxList"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -178,7 +308,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
...
...
@@ -191,7 +321,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -204,7 +334,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -215,8 +345,8 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
:gyfs=
"ruleForm.sl
sq
.gyfs"
/>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sl
dy
.gyfs"
/>
<div
v-if=
"ruleForm.ywrList && ruleForm.qlxx.djlx == '200'"
>
<div
class=
"slxx_title title-block"
>
...
...
@@ -224,7 +354,7 @@
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
v-if=
"ruleForm.qlxx"
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
</div>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -233,14 +363,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.sldy"
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.fdcq2.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -257,12 +387,12 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
{
...
...
@@ -282,6 +412,17 @@
data
()
{
return
{
mjdw
:
"1"
,
// 键名转换,方法默认是label和children进行树状渲染
normalizer
(
node
)
{
//方法
if
(
node
.
children
==
null
||
node
.
children
==
"null"
)
{
delete
node
.
children
;
}
return
{
id
:
node
.
dcode
,
label
:
node
.
dname
,
};
},
disabled
:
true
,
tdytOption
:
[],
czrOptions
:
[],
...
...
@@ -309,7 +450,7 @@
//传递参数
propsParam
:
this
.
$attrs
,
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
rules
:
{}
}
},
...
...
src/views/ywbl/slsqxx/fdcq2/slxx300.vue
View file @
e2a01a9
<!--
* @Description: 受理信息
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 12:58:13
* @LastEditTime: 2023-08-1
6 15:53:25
-->
<
template
>
<div
class=
"slxx"
>
...
...
@@ -82,11 +82,6 @@
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.qlxx"
>
<!--
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋用途:"
>
<el-input
disabled
v-model=
"ruleForm.qlxx.ytmc"
></el-input>
</el-form-item>
</el-col>
-->
<el-col
:span=
"8"
>
<el-form-item
label=
"规划用途名称:"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.ghytmc"
></el-input>
...
...
@@ -111,7 +106,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"总层数:"
>
<el-input
disabled
v-model
=
"ruleForm.fdcq2.zcs
"
></el-input>
<el-input
disabled
v-model
.
number=
"ruleForm.fdcq2.zcs"
oninput=
"value=value.replace(/[^0-9]/g,'')
"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -129,7 +124,7 @@
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -148,7 +143,7 @@
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -167,7 +162,7 @@
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -184,7 +179,7 @@
<div
class=
"triangle"
></div>
</div>
<tdytTable
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
:tableData=
"ruleForm.tdytqxList"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -194,7 +189,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -206,7 +201,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -219,7 +214,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -230,8 +225,8 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!
ableOperation
"
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.sl
sq
.gyfs"
/>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!
viewEdit
"
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.sl
dy
.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -239,14 +234,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.fdcq2"
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.fdcq2.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -263,12 +258,12 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
{
...
...
@@ -291,7 +286,7 @@
return
{
mjdw
:
"1"
,
//表单是否可操作
ableOperation
:
tru
e
,
viewEdit
:
fals
e
,
disabled
:
true
,
tdytOption
:
[],
czrOptions
:
[],
...
...
src/views/ywbl/slsqxx/fdcq2/slxxCompareDetai.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
6-30 17:09:35
* @LastEditTime: 2023-0
8-16 08:53:48
-->
<
template
>
<div
class=
"djxxTable"
:style=
"
{'max-height': this.timeLineHeight + 'px' }"
...
...
@@ -50,7 +50,14 @@
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
<span
v-else
>
{{
row
[
item
.
prop
]
}}
</span>
<span
v-if=
"item.prop != 'djyy'"
>
{{
row
[
item
.
prop
]
}}
</span>
<el-tooltip
v-else
effect=
"dark"
:content=
"row[item.prop]"
placement=
"top"
>
<span
class=
"ellipsis-line"
>
{{
row
[
item
.
prop
]
}}
</span>
</el-tooltip>
</td>
</tr>
</table>
...
...
src/views/ywbl/slsqxx/fdcq2/slxxOverview.vue
View file @
e2a01a9
<!--
* @Description: 受理信息
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 12:58:35
* @LastEditTime: 2023-08-1
6 16:36:31
-->
<
template
>
<div
class=
"slxx"
>
...
...
@@ -11,8 +11,7 @@
ref=
"ruleForm"
:label-position=
"flag ? 'top' : ''"
:inline=
"flag"
label-width=
"130px"
>
label-width=
"130px"
>
<div
class=
"slxx_con"
:class=
"flag ? 'formMarginBot0' : ''"
>
<div
class=
"slxx_title title-block"
>
受理信息
...
...
@@ -38,18 +37,12 @@
<el-row
:gutter=
"10"
v-if=
"ruleForm.slsq"
>
<el-col
:span=
"8"
v-if=
"ruleForm.sldyList.length > 0"
>
<el-form-item
label=
"权利类型:"
>
<el-input
disabled
v-model=
"ruleForm.sldyList[0].qllxmc"
></el-input>
<el-input
disabled
v-model=
"ruleForm.sldyList[0].qllxmc"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
v-if=
"ruleForm.sldyList.length > 0"
>
<el-form-item
label=
"登记类型:"
>
<el-input
disabled
v-model=
"ruleForm.sldyList[0].djlxmc"
></el-input>
<el-input
disabled
v-model=
"ruleForm.sldyList[0].djlxmc"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -59,34 +52,60 @@
</el-col>
</el-row>
<div
class=
"slxx_title title-block"
>
房屋
概
况
房屋
批量情
况
<div
class=
"triangle"
></div>
</div>
<el-row
:gutter=
"10"
v-if=
"ruleForm.zdjbxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"规划用途名称:"
>
<el-form-item
label=
"宗地面积:"
>
<div
class=
"flex"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.zdmj"
></el-input>
<el-select
disabled
v-model=
"ruleForm.zdjbxx.mjdw"
style=
"width: 68px"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
></el-option>
</el-select>
</div>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地性质:"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.ghytmc"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"
权利设定方式名称
:"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.
qlsdfs
mc"
></el-input>
<el-form-item
label=
"
土地用途
:"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.
ghyt
mc"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.zdjbxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋性质:"
>
<el-input
disabled
v-model=
"ruleForm.zdjbxx.qlsdfsmc"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋用途:"
>
<el-input
disabled
v-model=
"splicingFdcq2.fwxz"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.zdjbxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋结构:"
>
<el-input
disabled
v-model=
"splicingFdcq2.fwjg"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.zdjbxx"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋总层数:"
>
<el-input
disabled
v-model=
"ruleForm.fdcq2List[0].zcs"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"
建筑总
面积:"
>
<el-form-item
label=
"
房屋总建筑
面积:"
>
<el-input
disabled
v-model=
"splicingFdcq2.jzmj"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -97,8 +116,13 @@
</el-col>
</el-row>
<el-row
:gutter=
"10"
v-if=
"ruleForm.slsq"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"竣工时间:"
>
<el-input
disabled
v-model=
"splicingFdcq2.jzmj"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"发证方式:"
>
<el-form-item
label=
"发证方式:"
:disabled=
"!viewEdit"
>
<el-radio-group
v-model=
"ruleForm.slsq.fzfs"
>
<el-radio
label=
"1"
>
小证
</el-radio>
<el-radio
label=
"2"
>
大证
</el-radio>
...
...
@@ -114,10 +138,9 @@
<el-col
:span=
"12"
v-if=
"ruleForm.sldyList.length>0"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
@
change=
"showCZInfo"
v-model=
"ruleForm.sldyList[0].gyfs"
>
v-model=
"ruleForm.sldyList[0].gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -130,35 +153,32 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldyList[0].sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"6"
v-if=
"ruleForm.sldyList[0].gyfs!=0"
>
<el-col
:span=
"6"
v-if=
"ruleForm.sldyList[0].gyfs!=0"
>
<el-form-item
label=
"持证人:"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
:label=
"item.sqrmc"
:value=
"item.zjh"
>
</el-option>
:value=
"item.zjh"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:disabled=
"viewEdit"
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.sldyList[0].gyfs"
/>
:gyfs=
"ruleForm.sldyList[0].gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -169,15 +189,16 @@
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.fdcq2List[0].djyy"
>
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq2List[0].djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -186,16 +207,21 @@
</div>
</
template
>
<
script
>
import
ywmix
from
"@/views/ywbl/mixin/index"
import
ywmix
from
"@/views/ywbl/mixin/index"
;
import
qlrCommonTable
from
"@/views/workflow/components/qlrCommonTable"
;
import
{
BatchInit
,
Init
,
saveBatchData
,
saveData
}
from
"@/api/workflow/fwsyqFlow.js"
;
import
{
BatchInit
,
Init
,
saveBatchData
,
saveData
,
}
from
"@/api/workflow/fwsyqFlow.js"
;
import
{
mapGetters
}
from
"vuex"
;
export
default
{
mixins
:
[
ywmix
],
computed
:
{
...
mapGetters
([
"dictData"
,
"flag"
]),
},
components
:
{
qlrCommonTable
},
components
:
{
qlrCommonTable
},
// 更新义务人信息
/**
...
...
@@ -203,7 +229,7 @@
* @param {*} val
* @author: renchao
*/
upDateYwrxxList
(
val
)
{
upDateYwrxxList
(
val
)
{
this
.
ruleForm
.
ywrList
=
_
.
cloneDeep
(
val
);
},
data
()
{
...
...
@@ -211,52 +237,54 @@
disabled
:
true
,
tdytOption
:
[],
ruleForm
:
{
cfdjList
:
[]
//查封登记
,
diyaqList
:
[]
//抵押权
,
fdcq2List
:
[]
//房屋信息集合
,
qlrList
:
[]
//权利人
,
ywrList
:
[]
//义务人
,
qlxxList
:
[]
//权利信息集合
,
sldyList
:
[]
//受理不动产单元集合
,
slsq
:
{}
//受理申请流程明细
,
flow
:
{}
//受理申请流程明细
,
sqrList
:
[]
//申请人
,
ssQlxxList
:
[]
//上手权利信息
,
user
:
{}
//用户
,
zdjbxx
:
{}
//宗地基本信息
cfdjList
:
[]
,
//查封登记
diyaqList
:
[],
//抵押权
fdcq2List
:
[],
//房屋信息集合
qlrList
:
[],
//权利人
ywrList
:
[],
//义务人
qlxxList
:
[],
//权利信息集合
sldyList
:
[],
//受理不动产单元集合
slsq
:
{},
//受理申请流程明细
flow
:
{},
//受理申请流程明细
sqrList
:
[],
//申请人
ssQlxxList
:
[],
//上手权利信息
user
:
{},
//用户
zdjbxx
:
{},
//宗地基本信息
},
czrOptions
:
[],
//传递参数
propsParam
:
this
.
$attrs
,
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
rules
:
{},
gyfs
:
""
,
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
,
//受理申请标识码
splicingFdcq2
:
{
//前端根据后台数组组装展示内容
fwxz
:
''
//房屋性质
,
fwjg
:
''
//房屋结构
,
jzmj
:
''
//建筑面积
,
zts
:
''
//房屋总套数
}
}
gyfs
:
""
,
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
,
//受理申请标识码
splicingFdcq2
:
{
//前端根据后台数组组装展示内容
tdxz
:
""
,
//土地性质
fwxz
:
""
,
//房屋性质
fwjg
:
""
,
//房屋结构
jzmj
:
""
,
//建筑面积
zts
:
""
,
//房屋总套数
},
};
},
mounted
(
callbackfn
,
thisArg
)
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"bsmSlsq"
,
this
.
bsmSlsq
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
BatchInit
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
ruleForm
=
res
.
result
;
this
.
czrOptions
=
this
.
ruleForm
.
qlrList
;
this
.
gyfs
=
this
.
ruleForm
.
sldyList
[
0
].
gyfs
this
.
gyfs
=
this
.
ruleForm
.
sldyList
[
0
].
gyfs
;
this
.
splicingFdcq2Info
();
}
})
})
;
},
methods
:
{
//组装房地产权通用信息
...
...
@@ -269,11 +297,11 @@
let
fwxzArr
=
[];
let
fwjgArr
=
[];
let
jzmj
=
0
;
fdcq2List
.
forEach
(
fdcq2
=>
{
fdcq2List
.
forEach
(
(
fdcq2
)
=>
{
fwxzArr
.
push
(
fdcq2
.
fwxzmc
);
fwjgArr
.
push
(
fdcq2
.
fwjgmc
);
jzmj
+=
parseFloat
(
fdcq2
.
jzmj
);
})
})
;
//将数据转为字符串
//房屋性质
let
fwxz
=
Array
.
from
(
new
Set
(
fwxzArr
)).
join
(
","
);
...
...
@@ -283,7 +311,6 @@
this
.
splicingFdcq2
.
fwjg
=
fwjg
;
this
.
splicingFdcq2
.
jzmj
=
jzmj
==
null
?
0
:
jzmj
;
this
.
splicingFdcq2
.
zts
=
fdcq2List
.
length
;
},
/**
* @description: 更新权利人信息
...
...
@@ -315,7 +342,7 @@
* @author: renchao
*/
onSubmit
()
{
if
(
this
.
ruleForm
.
sldyList
[
0
].
gyfs
==
"0"
)
{
if
(
this
.
ruleForm
.
sldyList
[
0
].
gyfs
==
"0"
)
{
if
(
this
.
ruleForm
.
qlrList
.
length
>
1
)
{
this
.
$message
({
showClose
:
true
,
...
...
@@ -328,7 +355,8 @@
if
(
this
.
ruleForm
.
qlrList
.
length
<=
1
)
{
this
.
$message
({
showClose
:
true
,
message
:
"共有方式:共同所有,按份所有,其他所有,权利人必须是两个以上"
,
message
:
"共有方式:共同所有,按份所有,其他所有,权利人必须是两个以上"
,
type
:
"error"
,
});
return
false
;
...
...
@@ -341,66 +369,66 @@
message
:
"保存成功!"
,
type
:
"success"
,
});
this
.
$store
.
dispatch
(
'user/refreshPage'
,
true
);
this
.
$store
.
dispatch
(
"user/refreshPage"
,
true
);
}
else
{
this
.
$message
({
showClose
:
true
,
message
:
res
.
message
,
type
:
"error"
})
}
})
}
}
type
:
"error"
,
});
}
});
},
},
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
@import
"~@/styles/public.scss"
;
/
deep
/
.el-form
{
/
deep
/
.el-form
{
display
:
flex
;
flex-direction
:
column
;
height
:
calc
(
100vh
-
130px
);
}
}
/
deep
/
.el-form-item__label
{
/
deep
/
.el-form-item__label
{
padding
:
0
;
}
}
/
deep
/
.el-radio
{
/
deep
/
.el-radio
{
margin-right
:
10px
;
}
}
/
deep
/
.el-select
{
/
deep
/
.el-select
{
width
:
100%
;
}
}
/
deep
/
.el-form-item
{
/
deep
/
.el-form-item
{
margin-bottom
:
8px
;
}
}
.marginBot0
{
.marginBot0
{
margin-bottom
:
0
!important
;
}
}
.slxx
{
.slxx
{
box-sizing
:
border-box
;
}
}
.slxx_con
{
.slxx_con
{
flex
:
1
;
height
:
100%
;
background-color
:
#ffffff
;
overflow-y
:
auto
;
padding-right
:
3px
;
overflow-x
:
hidden
;
}
}
.submit_btn
{
.submit_btn
{
height
:
50px
;
}
}
.slxx_title
{
.slxx_title
{
border-bottom
:
1px
solid
$
borderColor
;
padding-left
:
10px
;
padding-bottom
:
5px
;
...
...
@@ -409,23 +437,23 @@
font-size
:
16px
;
font-weight
:
500
;
color
:
#4a4a4a
;
}
}
.btn
{
.btn
{
text-align
:
center
;
padding-top
:
10px
;
height
:
36px
;
background-color
:
#ffffff
;
padding
:
5px
0
;
}
}
.textArea
{
.textArea
{
/deep/.el-textarea__inner
{
min-height
:
90px
!important
;
}
}
}
/
deep
/
.el-form-item__label
{
/
deep
/
.el-form-item__label
{
padding-bottom
:
0px
;
}
}
</
style
>
...
...
src/views/ywbl/slsqxx/fwsyq/slxx.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 13:03:32
* @LastEditTime: 2023-08-1
6 16:12:58
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -129,7 +129,7 @@
<div
class=
"triangle"
></div>
</div>
<tdytTable
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
:tableData=
"ruleForm.tdytqxList"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -139,31 +139,32 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.gyfs"
>
<el-radio
label=
"1"
>
单独所有
</el-radio>
<el-radio
label=
"2"
>
共同共有
</el-radio>
<el-radio
label=
"3"
>
按份所有
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"5"
v-show=
"ruleForm.gyfs == '2'"
>
<el-col
:span=
"5"
v-show=
"ruleForm.gyfs != '1'"
>
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sffbcz"
:disabled=
"!
ableOperation
"
>
<el-radio-group
v-model=
"ruleForm.sffbcz"
:disabled=
"!
viewEdit
"
>
<el-radio
label=
"1"
>
是
</el-radio>
<el-radio
label=
"0"
>
否
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"5"
v-show=
"ruleForm.gyfs
== '2
'"
>
<el-col
:span=
"5"
v-show=
"ruleForm.gyfs
!= '1' && ruleForm.sffbcz=='0
'"
>
<el-form-item
label=
"持证人:"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.gyfs"
:disabled=
"
!ableOperation
"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.gyfs"
:disabled=
"
viewEdit
"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -171,13 +172,13 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
v-model=
"ruleForm.djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -194,7 +195,7 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
...
...
@@ -217,7 +218,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
tru
e
,
viewEdit
:
fals
e
,
disabled
:
true
,
tdytOption
:
[],
czrOptions
:
[],
...
...
@@ -278,7 +279,7 @@
list
(
bsmSldy
)
{
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
bsmSldy
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
{
...
...
src/views/ywbl/slsqxx/jsydsyq/slxx.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 13:04:38
* @LastEditTime: 2023-08-1
6 16:13:05
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -78,7 +78,7 @@
<el-select
disabled
v-model=
"mjdw"
style=
"width:
20%
"
>
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -142,7 +142,7 @@
<div
class=
"triangle"
></div>
</div>
<tdytTable
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
:tableData=
"ruleForm.tdytqxList"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -152,7 +152,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -164,7 +164,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -177,7 +177,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"(item,index) in czrOptions"
:key=
"index"
...
...
@@ -189,7 +189,7 @@
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
:disabled=
"
viewEdit
"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
v-if=
"ruleForm.ywrList && ruleForm.ywrList.length > 0"
>
...
...
@@ -197,7 +197,7 @@
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"
!ableOperation
"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
<qlrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"
viewEdit
"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
<div
class=
"slxx_title title-block"
>
...
...
@@ -207,14 +207,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.jsydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -231,14 +231,14 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
let
that
=
this
this
.
$startLoading
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
this
.
$nextTick
(()
=>
{
that
.
ruleForm
=
res
.
result
;
...
...
@@ -253,7 +253,7 @@
...
mapGetters
([
"dictData"
,
"flag"
]),
// 根据流程判断表单是否为只读
editDisabled
()
{
if
(
!
this
.
ableOperation
)
{
if
(
!
this
.
viewEdit
)
{
//只读状态
return
true
;
}
...
...
@@ -264,7 +264,7 @@
return
{
mjdw
:
"1"
,
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
key
:
0
,
isShow
:
false
,
disabled
:
true
,
...
...
src/views/ywbl/slsqxx/jsydsyq/slxx300.vue
View file @
e2a01a9
...
...
@@ -2,7 +2,7 @@
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 12:54:53
* @LastEditTime: 2023-08-1
6 16:13:20
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -126,7 +126,7 @@
<el-input
type=
"textarea"
v-model=
"ruleForm.jsydsyq.fj"
:disabled=
"!
ableOperation
"
></el-input>
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -136,7 +136,7 @@
</div>
<tdytTable
:tableData=
"ruleForm.tdytqxList"
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
权利人信息
...
...
@@ -146,7 +146,7 @@
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
...
...
@@ -159,7 +159,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -172,7 +172,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -185,7 +185,7 @@
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
:disabled=
"
viewEdit
"
@
upDateQlrxxList=
"upDateQlrxxList"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -198,14 +198,15 @@
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit"
v-model=
"ruleForm.jsydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -222,13 +223,13 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
this
.
$startLoading
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
res
.
result
;
...
...
@@ -244,7 +245,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
tru
e
,
viewEdit
:
fals
e
,
disabled
:
true
,
czrOptions
:
[],
ruleForm
:
{
...
...
src/views/ywbl/slsqxx/lqslxx/index.vue
View file @
e2a01a9
<!--
* @Description: 房屋多幢受理信息
* @Autor: ssq
* @LastEditTime: 2023-08-1
5 10:24:21
* @LastEditTime: 2023-08-1
6 16:14:03
-->
<
template
>
<div
class=
"slxx"
>
...
...
@@ -152,7 +152,7 @@
<div
class=
"triangle"
></div>
</div>
<tdytTable
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
:tableData=
"ruleForm.tdytqxList"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
...
...
@@ -163,7 +163,7 @@
<el-col
:span=
"12"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
...
...
@@ -176,7 +176,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -189,7 +189,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"(item,index) in czrOptions"
:key=
"index"
...
...
@@ -203,8 +203,8 @@
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
:gyfs=
"ruleForm.sl
sq
.gyfs"
/>
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sl
dy
.gyfs"
/>
<div
v-if=
"ruleForm.ywrList && ruleForm.slsq.djlx == '200'"
>
<div
class=
"slxx_title title-block"
>
...
...
@@ -215,7 +215,7 @@
v-if=
"ruleForm.qlxx"
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
</div>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -227,14 +227,15 @@
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit"
v-model=
"ruleForm.lq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -251,12 +252,12 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
viewEdit
;
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
{
...
...
@@ -302,7 +303,7 @@
//传递参数
propsParam
:
this
.
$attrs
,
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
rules
:
{},
};
},
...
...
src/views/ywbl/slsqxx/nydsyq/slxx.vue
View file @
e2a01a9
...
...
@@ -100,7 +100,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地所有权性质:"
>
<el-select
v-model=
"ruleForm.nydsyq.tdsyqxzmc"
:disabled=
"!
ableOperation
"
class=
"width100"
filterable
clearable
>
<el-select
v-model=
"ruleForm.nydsyq.tdsyqxzmc"
:disabled=
"!
viewEdit
"
class=
"width100"
filterable
clearable
>
<el-option
v-for=
"item in dictData['A45']"
:key=
"item.dname"
:label=
"item.dname"
:value=
"item.dname"
>
</el-option>
</el-select>
...
...
@@ -122,7 +122,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"水域滩涂类型:"
>
<el-select
v-model=
"ruleForm.nydsyq.syttlx"
:disabled=
"!
ableOperation
"
class=
"width100"
filterable
clearable
@
change=
"changeSyttlx"
>
<el-select
v-model=
"ruleForm.nydsyq.syttlx"
:disabled=
"!
viewEdit
"
class=
"width100"
filterable
clearable
@
change=
"changeSyttlx"
>
<el-option
v-for=
"item in dictData['A23']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -130,7 +130,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"养殖业方式:"
>
<el-select
v-model=
"ruleForm.nydsyq.yzyfs"
:disabled=
"!
ableOperation
"
class=
"width100"
filterable
clearable
@
change=
"changeYzyfs"
>
<el-select
v-model=
"ruleForm.nydsyq.yzyfs"
:disabled=
"!
viewEdit
"
class=
"width100"
filterable
clearable
@
change=
"changeYzyfs"
>
<el-option
v-for=
"item in dictData['A24']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -138,19 +138,19 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"草原质量:"
>
<el-input
v-model=
"ruleForm.nydsyq.cyzl"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.cyzl"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"适宜载畜量:"
>
<el-input
v-model=
"ruleForm.nydsyq.syzcl"
:disabled=
"!
ableOperation
"
oninput=
"value=value.replace(/[^\d.]/g,'')"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.syzcl"
:disabled=
"!
viewEdit
"
oninput=
"value=value.replace(/[^\d.]/g,'')"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"用地用海分类:"
>
<el-select
v-model=
"ruleForm.nydsyq.ydyhfl"
class=
"width100"
:disabled=
"!
ableOperation
"
filterable
clearable
@
change=
"changeYdyhfl"
>
<el-select
v-model=
"ruleForm.nydsyq.ydyhfl"
class=
"width100"
:disabled=
"!
viewEdit
"
filterable
clearable
@
change=
"changeYdyhfl"
>
<el-option
v-for=
"item in dictData['A51']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -158,14 +158,14 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地承包合同:"
>
<el-input
v-model=
"ruleForm.nydsyq.tdcbht"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.tdcbht"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -176,7 +176,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
v-model=
"ruleForm.sldy.gyfs"
:disabled=
"!
ableOperation
"
>
<el-radio-group
v-model=
"ruleForm.sldy.gyfs"
:disabled=
"!
viewEdit
"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -188,7 +188,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -201,7 +201,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -212,12 +212,13 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"viewEdit"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
家庭成员
<div
class=
"triangle"
></div>
</div>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
@
upDateJtcyList=
"upDateJtcyList"
:disabled=
"
!ableOperation"
:gyfs=
"ruleForm.slywxx
.gyfs"
/>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
@
upDateJtcyList=
"upDateJtcyList"
:disabled=
"
viewEdit"
:gyfs=
"ruleForm.sldy
.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -225,14 +226,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.nydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -249,13 +250,13 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
this
.
$startLoading
();
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
this
.
ruleForm
=
res
.
result
;
this
.
czrOptions
=
this
.
ruleForm
.
qlrList
;
...
...
@@ -279,7 +280,7 @@
//传递参数
propsParam
:
{},
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
rules
:
{}
}
},
...
...
src/views/ywbl/slsqxx/nydsyq/slxx200.vue
View file @
e2a01a9
...
...
@@ -90,17 +90,17 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"发包方名称:"
>
<el-input
v-model=
"ruleForm.nydsyq.fbfmc"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.fbfmc"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"发包方代码:"
>
<el-input
v-model=
"ruleForm.nydsyq.fbfdm"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.fbfdm"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地所有权性质:"
>
<el-select
v-model=
"ruleForm.nydsyq.tdsyqxzmc"
class=
"width100"
:disabled=
"!
ableOperation
"
filterable
clearable
>
<el-select
v-model=
"ruleForm.nydsyq.tdsyqxzmc"
class=
"width100"
:disabled=
"!
viewEdit
"
filterable
clearable
>
<el-option
v-for=
"item in dictData['A45']"
:key=
"item.dname"
:label=
"item.dname"
:value=
"item.dname"
>
</el-option>
</el-select>
...
...
@@ -122,7 +122,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"水域滩涂类型:"
>
<el-select
v-model=
"ruleForm.nydsyq.syttlx"
:disabled=
"!
ableOperation
"
class=
"width100"
filterable
clearable
@
change=
"changeSyttlx"
>
<el-select
v-model=
"ruleForm.nydsyq.syttlx"
:disabled=
"!
viewEdit
"
class=
"width100"
filterable
clearable
@
change=
"changeSyttlx"
>
<el-option
v-for=
"item in dictData['A23']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -130,7 +130,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"养殖业方式:"
>
<el-select
v-model=
"ruleForm.nydsyq.yzyfs"
:disabled=
"!
ableOperation
"
class=
"width100"
filterable
clearable
@
change=
"changeYzyfs"
>
<el-select
v-model=
"ruleForm.nydsyq.yzyfs"
:disabled=
"!
viewEdit
"
class=
"width100"
filterable
clearable
@
change=
"changeYzyfs"
>
<el-option
v-for=
"item in dictData['A24']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -138,19 +138,19 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"草原质量:"
>
<el-input
v-model=
"ruleForm.nydsyq.cyzl"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.cyzl"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"适宜载畜量:"
>
<el-input
v-model=
"ruleForm.nydsyq.syzcl"
:disabled=
"!
ableOperation
"
oninput=
"value=value.replace(/[^\d.]/g,'')"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.syzcl"
:disabled=
"!
viewEdit
"
oninput=
"value=value.replace(/[^\d.]/g,'')"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"用地用海分类:"
>
<el-select
v-model=
"ruleForm.nydsyq.ydyhfl"
:disabled=
"!
ableOperation
"
class=
"width100"
filterable
clearable
@
change=
"changeYdyhfl"
>
<el-select
v-model=
"ruleForm.nydsyq.ydyhfl"
:disabled=
"!
viewEdit
"
class=
"width100"
filterable
clearable
@
change=
"changeYdyhfl"
>
<el-option
v-for=
"item in dictData['A51']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -158,14 +158,14 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"土地承包合同:"
>
<el-input
v-model=
"ruleForm.nydsyq.tdcbht"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.nydsyq.tdcbht"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -176,7 +176,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -188,7 +188,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -201,7 +201,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -212,17 +212,18 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"viewEdit"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
!ableOperation
"
/>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
viewEdit
"
/>
<div
class=
"slxx_title title-block"
>
家庭成员
<div
class=
"triangle"
></div>
</div>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
:disabled=
"!
ableOperation
"
@
upDateJtcyList=
"upDateJtcyList"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
:disabled=
"!
viewEdit
"
@
upDateJtcyList=
"upDateJtcyList"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -230,14 +231,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.nydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -254,13 +255,13 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
this
.
$startLoading
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
this
.
ruleForm
=
res
.
result
;
this
.
czrOptions
=
this
.
ruleForm
.
qlrList
;
...
...
@@ -275,7 +276,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
disabled
:
true
,
czrOptions
:
[],
ruleForm
:
{},
...
...
src/views/ywbl/slsqxx/tdsyq/slxx.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-1
4 13:06:03
* @LastEditTime: 2023-08-1
6 16:09:58
-->
<
template
>
<!-- 受理信息 -->
...
...
@@ -92,12 +92,12 @@
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.nydmj"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -113,12 +113,12 @@
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.gdmj"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -134,12 +134,12 @@
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.ldmj"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -157,12 +157,12 @@
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.cdmj"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -178,12 +178,12 @@
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.qtnydmj"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -199,12 +199,12 @@
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.jsydmj"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -222,12 +222,12 @@
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.wlydmj"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
...
...
@@ -245,7 +245,7 @@
</div>
<tdytTable
:tableData=
"ruleForm.tdytqxList"
:ableOperation=
"
ableOperation
"
:ableOperation=
"
viewEdit
"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
权利人信息
...
...
@@ -255,7 +255,7 @@
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
...
...
@@ -268,7 +268,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -281,7 +281,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -294,7 +294,7 @@
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
:disabled=
"
viewEdit
"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:gyfs=
"ruleForm.sldy.gyfs"
/>
...
...
@@ -306,7 +306,7 @@
</div>
<qlrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"
!ableOperation
"
:disabled=
"
viewEdit
"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
...
...
@@ -321,15 +321,16 @@
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
maxlength=
"500"
show-word-limit
type=
"textarea"
:disabled=
"!
ableOperation
"
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.tdsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -347,14 +348,14 @@
mixins
:
[
ywmix
],
components
:
{
qlrCommonTable
,
tdytTable
},
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
;
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
let
that
=
this
;
this
.
$startLoading
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
this
.
$nextTick
(()
=>
{
that
.
ruleForm
=
res
.
result
;
...
...
@@ -383,7 +384,7 @@
},
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
key
:
0
,
isShow
:
false
,
disabled
:
true
,
...
...
src/views/ywbl/slsqxx/ygdj/slxx.vue
View file @
e2a01a9
...
...
@@ -113,8 +113,8 @@
<el-input
v-model=
"ruleForm.ygdj.qdjg"
></el-input>
<el-select
v-model=
"ruleForm.ygdj.jedw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
...
...
@@ -134,7 +134,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"总层数:"
>
<el-input
v-model
=
"ruleForm.ygdj.zcs
"
></el-input>
<el-input
v-model
.
number=
"ruleForm.ygdj.zcs"
oninput=
"value=value.replace(/[^0-9]/g,'')
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -143,9 +143,9 @@
<div
class=
"triangle"
></div>
</div>
<el-row
:gutter=
"10"
>
<el-col
:span=
"1
4
"
v-if=
"ruleForm.qlxx"
>
<el-col
:span=
"1
2
"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -157,7 +157,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -170,7 +170,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -181,14 +181,14 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"
!ableOperation
"
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"
viewEdit
"
:tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
!ableOperation
"
:tableData=
"ruleForm.ywrList"
:gyfs=
"ruleForm.
qlxx
.gyfs"
/>
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
viewEdit
"
:tableData=
"ruleForm.ywrList"
:gyfs=
"ruleForm.
sldy
.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -196,14 +196,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.ygdj.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -219,13 +219,13 @@
export
default
{
mixins
:
[
ywmix
],
created
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
this
.
$startLoading
();
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
(
res
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
res
.
result
;
...
...
@@ -241,7 +241,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
disabled
:
true
,
tdytOption
:
[],
czrOptions
:
[],
...
...
src/views/ywbl/slsqxx/ygdj/slxx300.vue
View file @
e2a01a9
...
...
@@ -102,7 +102,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"总层数:"
>
<el-input
disabled
v-model
=
"ruleForm.ygdj.zcs
"
></el-input>
<el-input
disabled
v-model
.
number=
"ruleForm.ygdj.zcs"
oninput=
"value=value.replace(/[^0-9]/g,'')
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -113,7 +113,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -125,7 +125,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -138,7 +138,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -149,13 +149,13 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
:disabled=
"
!ableOperation
"
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -164,14 +164,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.ygdj.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -187,13 +187,13 @@
export
default
{
mixins
:
[
ywmix
],
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
this
.
$startLoading
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
$endLoading
();
...
...
@@ -209,7 +209,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
disabled
:
true
,
tdytOption
:
[],
czrOptions
:
[],
...
...
src/views/ywbl/slsqxx/ygdy/slxx.vue
View file @
e2a01a9
...
...
@@ -117,11 +117,11 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"被担保主债权数额:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.ygdj.qdjg"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.ygdj.qdjg"
:disabled=
"!
viewEdit
"
></el-input>
<el-select
v-model=
"ruleForm.ygdj.jedw"
:disabled=
"!
ableOperation
"
style=
"width:
20%
"
>
:disabled=
"!
viewEdit
"
style=
"width:
68px
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
...
...
@@ -134,13 +134,13 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行起始时间:"
>
<el-date-picker
v-model=
"ruleForm.ygdj.zwlxqssj"
:disabled=
"!
ableOperation
"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.ygdj.zwlxqssj"
:disabled=
"!
viewEdit
"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行结束时间:"
>
<el-date-picker
v-model=
"ruleForm.ygdj.zwlxjssj"
:disabled=
"!
ableOperation
"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.ygdj.zwlxjssj"
:disabled=
"!
viewEdit
"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -149,13 +149,13 @@
<el-col
:span=
"16"
>
<el-form-item
label=
"是否存在禁止或限制转让抵押不动产的约定:"
>
<el-input
v-model=
"ruleForm.ygdj.sfczjzhxz"
:disabled=
"ruleForm.sldy.djlx == '300' && !
ableOperation
"
></el-input>
:disabled=
"ruleForm.sldy.djlx == '300' && !
viewEdit
"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.ygdj.dbfw"
:disabled=
"ruleForm.sldy.djlx == '300' && !
ableOperation
"
></el-input>
:disabled=
"ruleForm.sldy.djlx == '300' && !
viewEdit
"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -163,7 +163,7 @@
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.ygdj.fj"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.ygdj.fj"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -174,7 +174,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -186,7 +186,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -199,7 +199,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -210,13 +210,13 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"
!ableOperation
"
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
:disabled=
"
!ableOperation
"
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -225,14 +225,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.ygdj.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -248,7 +248,7 @@
export
default
{
mixins
:
[
ywmix
],
created
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
let
that
=
this
...
...
@@ -256,7 +256,7 @@
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"bsmSlsq"
,
this
.
$route
.
query
.
bsmSlsq
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
that
.
ruleForm
=
res
.
result
;
...
...
@@ -274,7 +274,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
loading
:
false
,
disabled
:
true
,
tdytOption
:
[],
...
...
src/views/ywbl/slsqxx/zjgcdy/batchSlxx.vue
View file @
e2a01a9
...
...
@@ -62,7 +62,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"抵押金额类型:"
>
<el-radio-group
v-model=
"ruleForm.diyaqList[0].dyjelx"
:disabled=
"!
ableOperation
"
>
<el-radio-group
v-model=
"ruleForm.diyaqList[0].dyjelx"
:disabled=
"!
viewEdit
"
>
<el-radio
label=
"0"
>
独立抵押
</el-radio>
<el-radio
label=
"1"
>
整体抵押
</el-radio>
</el-radio-group>
...
...
@@ -70,7 +70,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"是否存在禁止或者限制转让抵押不动产的约定:"
label-width=
"350px"
>
<el-radio-group
v-model=
"ruleForm.diyaqList[0].sfczjzhxz"
:disabled=
"!
ableOperation
"
>
<el-radio-group
v-model=
"ruleForm.diyaqList[0].sfczjzhxz"
:disabled=
"!
viewEdit
"
>
<el-radio
label=
"1"
>
启用
</el-radio>
<el-radio
label=
"0"
>
禁用
</el-radio>
</el-radio-group>
...
...
@@ -81,8 +81,8 @@
<el-row
:gutter=
"10"
v-if=
"ruleForm.diyaqList && ruleForm.diyaqList.length>0"
>
<el-col
:span=
"8"
v-show=
"ruleForm.diyaqList[0].dyfs == 1"
>
<el-form-item
label=
"被担保主债权数额:"
>
<el-input
v-model=
"ruleForm.diyaqList[0].bdbzzqse"
:disabled=
"!
ableOperation
"
></el-input>
<el-select
v-model=
"ruleForm.diyaqList[0].jedw"
:disabled=
"!
ableOperation
"
>
<el-input
v-model=
"ruleForm.diyaqList[0].bdbzzqse"
:disabled=
"!
viewEdit
"
></el-input>
<el-select
v-model=
"ruleForm.diyaqList[0].jedw"
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -91,8 +91,8 @@
<el-col
:span=
"8"
v-show=
"ruleForm.diyaqList[0].dyfs == 2"
>
<el-form-item
label=
"最高债权额:"
>
<el-input
v-model=
"ruleForm.diyaqList[0].zgzqse"
:disabled=
"!
ableOperation
"
></el-input>
<el-select
v-model=
"ruleForm.diyaqList[0].jedw"
:disabled=
"!
ableOperation
"
>
<el-input
v-model=
"ruleForm.diyaqList[0].zgzqse"
:disabled=
"!
viewEdit
"
></el-input>
<el-select
v-model=
"ruleForm.diyaqList[0].jedw"
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -101,13 +101,13 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行起始时间:"
>
<el-date-picker
v-model=
"ruleForm.diyaqList[0].zwlxqssj"
:disabled=
"!
ableOperation
"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.diyaqList[0].zwlxqssj"
:disabled=
"!
viewEdit
"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行结束时间:"
>
<el-date-picker
v-model=
"ruleForm.diyaqList[0].zwlxjssj"
:disabled=
"!
ableOperation
"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.diyaqList[0].zwlxjssj"
:disabled=
"!
viewEdit
"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -117,21 +117,21 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.diyaqList[0].dbfw"
:disabled=
"ruleForm.sldyList[0].djlx == '300' && !
ableOperation
"
></el-input>
:disabled=
"ruleForm.sldyList[0].djlx == '300' && !
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
v-if=
"ruleForm.diyaqList && ruleForm.diyaqList.length>0"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"最高债权确定事实和数额:"
>
<el-input
v-model=
"ruleForm.diyaqList[0].zgzqqdss"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.diyaqList[0].zgzqqdss"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
v-if=
"ruleForm.diyaqList && ruleForm.diyaqList.length>0"
>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaqList[0].fj"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaqList[0].fj"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -143,7 +143,7 @@
<el-row
:gutter=
"10"
v-if=
"ruleForm.sldyList && ruleForm.sldyList.length>0"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldyList[0].gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldyList[0].gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -154,7 +154,7 @@
<el-col
:span=
"5"
v-show=
"ruleForm.sldyList[0].gyfs != '0'"
>
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldyList[0].sqfbcz"
:disabled=
"!
ableOperation
"
>
<el-radio-group
v-model=
"ruleForm.sldyList[0].sqfbcz"
:disabled=
"!
viewEdit
"
>
<el-radio
label=
"1"
>
是
</el-radio>
<el-radio
label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -162,7 +162,7 @@
</el-col>
<el-col
:span=
"5"
v-show=
"ruleForm.sldyList[0].gyfs != '0'"
>
<el-form-item
label=
"持证人:"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
...
...
@@ -170,12 +170,12 @@
</el-col>
</el-row>
<qlrCommonTable
v-if=
"ruleForm.sldyList && ruleForm.sldyList.length>0"
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"
!ableOperation
"
:gyfs=
"ruleForm.sldyList[0].gyfs"
/>
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sldyList[0].gyfs"
/>
<div
class=
"slxx_title title-block"
>
抵押人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
!ableOperation
"
/>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
viewEdit
"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -184,19 +184,19 @@
<el-row
:gutter=
"10"
v-if=
"ruleForm.diyaqList && ruleForm.diyaqList.length>0"
>
<el-col>
<el-form-item
v-if=
"ruleForm.sldyList[0].djlx == '400'"
label=
"注销抵押原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!
ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.diyaqList[0].zxdyyy"
>
</el-input>
</el-form-item>
<el-form-item
v-else
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.diyaqList[0].djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmitClick()"
>
保存
</el-button>
</el-form-item>
...
...
@@ -211,14 +211,14 @@
import
{
mapGetters
}
from
"vuex"
;
export
default
{
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
this
.
$startLoading
();
formdata
.
append
(
"bsmSlsq"
,
this
.
$route
.
query
.
bsmSlsq
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
bacthInit
(
formdata
).
then
((
res
)
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
&&
res
.
result
)
{
...
...
@@ -236,7 +236,7 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
disabled
:
true
,
czrOptions
:
[],
ruleForm
:
{},
...
...
src/views/ywbl/slsqxx/zjgcdy/slxx.vue
View file @
e2a01a9
...
...
@@ -49,7 +49,14 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"房屋用途:"
>
<el-input
disabled
v-model=
"ruleForm.qjh.showfwyt"
></el-input>
<treeselect
v-model=
"ruleForm.qjh.showfwyt"
noOptionsText=
""
disabled
placeholder=
""
:normalizer=
"normalizer"
:show-count=
"true"
:options=
"dictData['A17']"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -115,7 +122,7 @@
</el-col>
<el-col
:span=
"16"
>
<el-form-item
label=
"是否存在禁止或者限制转让抵押不动产的约定:"
label-width=
"350px"
>
<el-radio-group
v-model=
"ruleForm.diyaq.sfczjzhxz"
:disabled=
"!
ableOperation
"
>
<el-radio-group
v-model=
"ruleForm.diyaq.sfczjzhxz"
:disabled=
"!
viewEdit
"
>
<el-radio
label=
"1"
>
启用
</el-radio>
<el-radio
label=
"0"
>
禁用
</el-radio>
</el-radio-group>
...
...
@@ -126,8 +133,8 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
v-show=
"ruleForm.diyaq.dyfs == 1"
>
<el-form-item
label=
"被担保主债权数额:"
>
<el-input
v-model=
"ruleForm.diyaq.bdbzzqse"
:disabled=
"!
ableOperation
"
></el-input>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!
ableOperation
"
>
<el-input
v-model=
"ruleForm.diyaq.bdbzzqse"
:disabled=
"!
viewEdit
"
></el-input>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -136,8 +143,8 @@
<el-col
:span=
"8"
v-show=
"ruleForm.diyaq.dyfs == 2"
>
<el-form-item
label=
"最高债权额:"
>
<el-input
v-model=
"ruleForm.diyaq.zgzqse"
:disabled=
"!
ableOperation
"
></el-input>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!
ableOperation
"
>
<el-input
v-model=
"ruleForm.diyaq.zgzqse"
:disabled=
"!
viewEdit
"
></el-input>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -146,13 +153,13 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行起始时间:"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxqssj"
:disabled=
"!
ableOperation
"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxqssj"
:disabled=
"!
viewEdit
"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"债务履行结束时间:"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxjssj"
:disabled=
"!
ableOperation
"
type=
"date"
>
<el-date-picker
v-model=
"ruleForm.diyaq.zwlxjssj"
:disabled=
"!
viewEdit
"
type=
"date"
>
</el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -162,21 +169,21 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.diyaq.dbfw"
:disabled=
"ruleForm.sldy.djlx == '300' && !
ableOperation
"
></el-input>
:disabled=
"ruleForm.sldy.djlx == '300' && !
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"最高债权确定事实和数额:"
>
<el-input
v-model=
"ruleForm.diyaq.zgzqqdss"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
v-model=
"ruleForm.diyaq.zgzqqdss"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"!
ableOperation
"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"!
viewEdit
"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -188,7 +195,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"!
ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -200,7 +207,7 @@
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-radio
:label=
"1"
>
是
</el-radio>
<el-radio
:label=
"0"
>
否
</el-radio>
</el-radio-group>
...
...
@@ -213,7 +220,7 @@
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!
ableOperation
"
>
:disabled=
"!
viewEdit
"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
...
...
@@ -224,12 +231,12 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"
!ableOperation
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"
viewEdit
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
抵押人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
!ableOperation
"
/>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"
viewEdit
"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -238,19 +245,19 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.sldy.djlx == '400'"
label=
"注销抵押原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!
ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!
viewEdit
"
v-model=
"ruleForm.diyaq.zxdyyy"
>
</el-input>
</el-form-item>
<el-form-item
v-else
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation
"
<el-input
class=
"textArea"
type=
"textarea"
maxlength=
"500"
show-word-limit
:disabled=
"!viewEdit
"
v-model=
"ruleForm.diyaq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-row
class=
"btn"
v-if=
"
viewEdit
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmitClick()"
>
保存
</el-button>
</el-form-item>
...
...
@@ -264,13 +271,13 @@
import
{
mapGetters
}
from
"vuex"
;
export
default
{
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
viewEdit
=
this
.
$parent
.
currentSelectTab
.
ableOperation
this
.
propsParam
=
this
.
$attrs
;
var
formdata
=
new
FormData
();
this
.
$startLoading
();
formdata
.
append
(
"bsmSldy"
,
this
.
propsParam
.
bsmSldy
);
formdata
.
append
(
"djlx"
,
this
.
propsParam
.
djlx
);
formdata
.
append
(
"isEdit"
,
this
.
ableOperation
);
formdata
.
append
(
"isEdit"
,
this
.
viewEdit
);
Init
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
this
.
ruleForm
=
res
.
result
;
...
...
@@ -286,13 +293,24 @@
data
()
{
return
{
//表单是否可操作
ableOperation
:
true
,
viewEdit
:
true
,
disabled
:
true
,
czrOptions
:
[],
ruleForm
:
{},
//传递参数
propsParam
:
{},
rules
:
{},
// 键名转换,方法默认是label和children进行树状渲染
normalizer
(
node
)
{
//方法
if
(
node
.
children
==
null
||
node
.
children
==
"null"
)
{
delete
node
.
children
;
}
return
{
id
:
node
.
dcode
,
label
:
node
.
dname
,
};
},
};
},
methods
:
{
...
...
src/views/ywbl/ywsq/components/cfdj.vue
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-
02 09:53:35
* @LastEditTime: 2023-08-
16 14:59:46
-->
<
template
>
<div
class=
"from-clues"
>
...
...
@@ -239,7 +239,6 @@
* @author: miaofang
*/
openBook
(
row
)
{
console
.
log
(
"的急急急急急急"
);
var
param
=
{
bdcdyid
:
row
.
bdcdyid
,
qllx
:
row
.
qllx
,
...
...
src/views/ywbl/ywsq/components/selectLqsc.vue
View file @
e2a01a9
...
...
@@ -110,10 +110,8 @@
}
this
.
loading
=
true
startBusinessFlow
({
bsmSqyw
:
this
.
bsmSqyw
,
bsmSqyw
:
this
.
sqywInfo
.
bsmSqyw
,
bdcdysz
:
this
.
bdcdysz
,
djqxbm
:
this
.
sqywInfo
.
nodetype
==
"djqx"
?
this
.
sqywInfo
.
nodecode
:
""
,
djqxmc
:
this
.
sqywInfo
.
nodetype
==
"djqx"
?
this
.
sqywInfo
.
nodename
:
""
,
}).
then
((
res
)
=>
{
this
.
loading
=
false
if
(
res
.
code
==
200
)
{
...
...
src/views/ywbl/ywsq/components/selectSllm.vue
0 → 100644
View file @
e2a01a9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-15 14:36:06
-->
<
template
>
<div
class=
"from-clues"
>
<!-- 表单部分 森林林木 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"宗地代码"
>
<el-input
placeholder=
"请输入宗地代码"
maxlength=
"19"
v-model=
"queryForm.zddm"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"不动产单元号"
>
<el-input
placeholder=
"请输入不动产单元号"
maxlength=
"28"
v-model=
"queryForm.bdcdyh"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"坐落"
>
<el-input
placeholder=
"请输入坐落"
v-model
.
trim=
"queryForm.zl"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
class=
"btnColRight"
>
<el-form-item>
<!--
<el-button
type=
"primary"
@
click=
"resetForm(true)"
>
重置
</el-button>
-->
<el-button
type=
"primary"
@
click=
"handleSearch"
>
查询
</el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<!-- 表格 -->
<div
class=
"from-clues-content loadingtext"
>
<lb-table
ref=
"table"
@
row-click=
"handleRowClick"
:page-size=
"pageData.pageSize"
:calcHeight=
"300"
:current-page
.
sync=
"pageData.currentPage"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
select=
"select"
@
p-current-change=
"handleCurrentChange"
@
selection-change=
"handleSelectionChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
</div>
<div
class=
"submit_button"
>
<el-button
@
click=
"$popupCacel"
>
取消
</el-button>
<el-button
type=
"primary"
plain
@
click=
"submitForm"
:loading=
"loading"
>
发起申请
</el-button>
</div>
</div>
</
template
>
<
script
>
//首次登记
import
jump
from
"./mixin/jump"
;
import
store
from
'@/store/index.js'
import
table
from
"@/utils/mixin/table"
;
import
{
ywPopupDialog
}
from
"@/utils/popup.js"
;
import
{
selectZdjbxx
}
from
"@/api/ywsq.js"
;
import
{
startBusinessFlow
}
from
"@/api/workFlow.js"
;
import
{
datas
,
sendThis
}
from
"../javascript/selectQjzdjbxx.js"
;
import
{
defaultParameters
}
from
"../javascript/publicDefaultPar.js"
;
export
default
{
mixins
:
[
table
,
jump
],
props
:
{
isJump
:
{
type
:
Boolean
,
default
:
false
},
sqywInfo
:
{
type
:
Object
,
default
:
()
=>
{
}
},
},
data
()
{
return
{
loading
:
false
,
queryForm
:
defaultParameters
.
defaultParameters
(),
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
data
:
[],
},
bdcdysz
:
[],
};
},
mounted
()
{
sendThis
(
this
);
},
methods
:
{
/**
* @description: queryClick
* @author: renchao
*/
queryClick
()
{
this
.
$startLoading
();
this
.
queryForm
.
sqywbm
=
this
.
sqywInfo
.
djywbm
;
selectZdjbxx
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
((
res
)
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
records
;
}
});
},
/**
* @description: submitForm
* @author: renchao
*/
submitForm
()
{
if
(
this
.
bdcdysz
.
length
==
0
)
{
this
.
$alert
(
"请至少选择一条数据"
);
return
;
}
this
.
loading
=
true
startBusinessFlow
({
bsmSqyw
:
this
.
sqywInfo
.
bsmSqyw
,
bdcdysz
:
this
.
bdcdysz
,
}).
then
((
res
)
=>
{
this
.
loading
=
false
if
(
res
.
code
==
200
)
{
this
.
$message
({
showClose
:
true
,
message
:
"发起申请成功"
,
type
:
"success"
,
});
if
(
!
this
.
isJump
)
{
this
.
jump
(
res
.
result
,
this
.
djywbm
);
}
else
{
store
.
dispatch
(
'user/refreshPage'
,
true
);
}
this
.
$popupCacel
()
}
else
{
ywPopupDialog
(
"申请错误明细"
,
"components/ywdialog"
,
{
message
:
res
.
message
,
result
:
res
.
result
},
'36%'
,
true
)
}
}).
catch
(()
=>
{
this
.
loading
=
false
})
},
/**
* @description: handleSelectionChange
* @param {*} val
* @author: renchao
*/
handleSelectionChange
(
val
)
{
val
.
forEach
((
item
,
index
)
=>
{
item
.
bsm
=
item
.
zdbsm
;
});
if
(
this
.
sqywInfo
.
sqywdylx
==
"1"
)
{
if
(
val
.
length
>
1
)
{
this
.
bdcdysz
=
[...
val
[
val
.
length
-
1
]];
}
else
{
this
.
bdcdysz
=
val
;
}
}
else
{
this
.
bdcdysz
=
val
;
}
},
/**
* @description: select
* @param {*} selection
* @param {*} row
* @author: renchao
*/
select
(
selection
,
row
)
{
if
(
this
.
sqywInfo
.
sqywdylx
==
"1"
)
{
// 清除 所有勾选项
this
.
$refs
.
table
.
clearSelection
()
// 当表格数据都没有被勾选的时候 就返回
// 主要用于将当前勾选的表格状态清除
if
(
selection
.
length
==
0
)
return
this
.
$refs
.
table
.
toggleRowSelection
(
row
,
true
);
}
},
/**
* @description: handleRowClick
* @param {*} row
* @author: renchao
*/
handleRowClick
(
row
)
{
// 如果状态是1,那就是单选
if
(
this
.
sqywInfo
.
sqywdylx
==
"1"
)
{
const
bdcdysz
=
this
.
bdcdysz
this
.
$refs
.
table
.
clearSelection
()
if
(
bdcdysz
.
length
==
1
)
{
bdcdysz
.
forEach
(
item
=>
{
// 判断 如果当前的一行被勾选, 再次点击的时候就会取消选中
if
(
item
==
row
)
{
this
.
$refs
.
table
.
toggleRowSelection
(
row
,
false
);
}
// 不然就让当前的一行勾选
else
{
this
.
$refs
.
table
.
toggleRowSelection
(
row
,
true
);
}
})
}
else
{
this
.
$refs
.
table
.
toggleRowSelection
(
row
,
true
);
}
}
else
{
this
.
$refs
.
table
.
toggleRowSelection
(
row
);
}
},
/**
* @description: openBook
* @param {*} row
* @author: renchao
*/
openBook
(
row
)
{
var
param
=
{
bdcdyid
:
row
.
bdcdyid
,
qllx
:
row
.
qllx
,
bdcdyh
:
row
.
bdcdyh
,
bsmQlxx
:
row
.
bsmQlxx
,
};
this
.
$popup
(
"登记簿详情"
,
"registerBook/djbFrame"
,
{
formData
:
param
})
},
},
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
@import
"~@/styles/public.scss"
;
</
style
>
src/views/ywbl/ywsq/javascript/fwsyq.js
View file @
e2a01a9
...
...
@@ -38,8 +38,9 @@ class data extends filter {
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
a
style
=
'color:#3498db;'
v
-
show
=
{
scope
.
row
.
djblzt
==
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/a
>
<
span
v
-
show
=
{
scope
.
row
.
djblzt
!=
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/span
>
{
/*<a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>*/
}
<
span
v
-
show
=
{
scope
.
row
.
qqzt
==
1
}
>
已确权
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
qqzt
==
0
}
>
未确权
<
/span
>
<
/div
>
)
}
...
...
src/views/ywbl/ywsq/javascript/selecBdcql.js
View file @
e2a01a9
...
...
@@ -40,17 +40,6 @@ class data extends filter {
<
div
>
<
a
style
=
'color:#3498db;'
v
-
show
=
{
scope
.
row
.
djblzt
==
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/a
>
<
span
v
-
show
=
{
scope
.
row
.
djblzt
!=
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/span
>
{
/* <a icon="el-icon-discover" style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
<span icon="el-icon-discover" v-show={scope.row.zjgcdyzt == 1}>在建工程抵押</span>
<span icon="el-icon-discover" v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span icon="el-icon-discover" v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span icon="el-icon-discover" v-show={scope.row.cfzt == 1}> 已查封</span>
<span icon="el-icon-discover" v-show={scope.row.diyizt == 1}>,已地役</span>
<span icon="el-icon-discover" v-show={scope.row.yyzt == 1}>,异议中</span>
<span icon="el-icon-discover" v-show={scope.row.xzzt == 1}>,已限制</span>
<span icon="el-icon-discover" v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
<span icon="el-icon-discover" v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
<span icon="el-icon-discover" v-show={scope.row.dyzt == 1}>,已抵押</span> */
}
<
/div
>
)
}
...
...
@@ -92,11 +81,15 @@ class data extends filter {
minWidth
:
'150'
},
{
prop
:
"mj"
,
prop
:
"qlxzmc"
,
label
:
"权利性质"
,
},
{
prop
:
"qlmjmc"
,
label
:
"面积"
,
},
{
prop
:
"ytmc"
,
prop
:
"
ql
ytmc"
,
label
:
"用途"
,
},
{
...
...
src/views/ywbl/ywsq/javascript/selectFwsyq.js
View file @
e2a01a9
...
...
@@ -70,32 +70,28 @@ class data extends filter {
minWidth
:
'150'
},
{
prop
:
"fwxz"
,
label
:
"房屋性质"
,
},
{
prop
:
"fwjgmc"
,
label
:
"房屋结构"
,
prop
:
"gyqk"
,
label
:
"共有情况"
,
},
{
prop
:
"qlrmc"
,
label
:
"权利人"
,
},
{
prop
:
"
zjh
"
,
prop
:
"
qlrzjhm
"
,
label
:
"证件号"
,
},
{
prop
:
"
mj
"
,
label
:
"
面积
"
,
prop
:
"
qlxzmc
"
,
label
:
"
权利性质
"
,
},
{
prop
:
"
showTdyt
"
,
prop
:
"
qlytmc
"
,
label
:
"用途"
,
},
{
prop
:
"
zdmj
"
,
label
:
"
宗地
面积"
,
prop
:
"
qlmjmc
"
,
label
:
"面积"
,
},
{
prop
:
"zl"
,
...
...
src/views/ywbl/ywsq/javascript/selectJsydsyq.js
View file @
e2a01a9
...
...
@@ -77,12 +77,12 @@ class data extends filter {
label
:
"权利性质"
,
},
{
prop
:
"mjmc"
,
prop
:
"
ql
mjmc"
,
width
:
'100'
,
label
:
"使用权面积"
,
},
{
prop
:
"ytmc"
,
prop
:
"
ql
ytmc"
,
label
:
"土地用途"
,
},
{
...
...
src/views/ywbl/ywsq/javascript/selectJsydsyqhbfg.js
View file @
e2a01a9
...
...
@@ -78,12 +78,12 @@ class data extends filter {
label
:
"权利性质"
,
},
{
prop
:
"
mj
"
,
prop
:
"
qlmjmc
"
,
width
:
'100'
,
label
:
"使用权面积"
,
},
{
prop
:
"ytmc"
,
prop
:
"
ql
ytmc"
,
label
:
"土地用途"
,
},
{
...
...
src/views/ywbl/ywsq/javascript/selectTdsyq.js
View file @
e2a01a9
...
...
@@ -40,17 +40,6 @@ class data extends filter {
<
div
>
<
a
style
=
'color:#3498db;'
v
-
show
=
{
scope
.
row
.
djblzt
==
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/a
>
<
span
v
-
show
=
{
scope
.
row
.
djblzt
!=
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/span
>
{
/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
<span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
<span v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span v-show={scope.row.cfzt == 1}>,已查封</span>
<span v-show={scope.row.diyizt == 1}>,已地役</span>
<span v-show={scope.row.yyzt == 1}>,异议中</span>
<span v-show={scope.row.xzzt == 1}>,已限制</span>
<span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
<span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
<span v-show={scope.row.dyzt == 1}>,已抵押</span> */
}
<
/div
>
)
}
...
...
@@ -87,12 +76,12 @@ class data extends filter {
label
:
"权利性质"
,
},
{
prop
:
"mjmc"
,
prop
:
"
ql
mjmc"
,
width
:
'100'
,
label
:
"使用权面积"
,
},
{
prop
:
"ytmc"
,
prop
:
"
ql
ytmc"
,
label
:
"土地用途"
,
},
{
...
...
src/views/ywbl/ywsq/javascript/selectYgdj200.js
View file @
e2a01a9
...
...
@@ -40,17 +40,6 @@ class data extends filter {
<
div
>
<
a
style
=
'color:#3498db;'
v
-
show
=
{
scope
.
row
.
djblzt
==
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/a
>
<
span
v
-
show
=
{
scope
.
row
.
djblzt
!=
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/span
>
{
/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
<span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
<span v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span v-show={scope.row.cfzt == 1}>,已查封</span>
<span v-show={scope.row.diyizt == 1}>,已地役</span>
<span v-show={scope.row.yyzt == 1}>,异议中</span>
<span v-show={scope.row.xzzt == 1}>,已限制</span>
<span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
<span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
<span v-show={scope.row.dyzt == 1}>,已抵押</span> */
}
<
/div
>
)
}
...
...
@@ -66,18 +55,10 @@ class data extends filter {
},
{
prop
:
"bdcqzh"
,
label
:
"不动产
权证
号"
,
label
:
"不动产
登记证明
号"
,
minWidth
:
'150'
},
{
prop
:
"fwxz"
,
label
:
"房屋性质"
,
},
{
prop
:
"fwjgmc"
,
label
:
"房屋结构"
,
},
{
prop
:
"qlrmc"
,
label
:
"权利人"
,
},
...
...
@@ -86,16 +67,29 @@ class data extends filter {
label
:
"证件号"
,
},
{
prop
:
"
mj
"
,
label
:
"
面积
"
,
prop
:
"
ywrmc
"
,
label
:
"
义务人
"
,
},
{
prop
:
"showTdyt"
,
label
:
"用途"
,
prop
:
"ywrzjhm"
,
label
:
"义务人证件号"
,
minWidth
:
'150'
},
{
prop
:
"fwxzmc"
,
label
:
"房屋性质"
,
},
{
prop
:
"ytmc"
,
label
:
"房屋用途"
,
},
{
prop
:
"fwjgmc"
,
label
:
"房屋结构"
,
},
{
prop
:
"
zd
mj"
,
label
:
"
宗地面积
"
,
prop
:
"
jz
mj"
,
label
:
"
房屋面积(㎡)
"
,
},
{
prop
:
"zl"
,
...
...
src/views/ywbl/ywsq/javascript/selectYgdy.js
View file @
e2a01a9
...
...
@@ -40,24 +40,13 @@ class data extends filter {
<
div
>
<
a
style
=
'color:#3498db;'
v
-
show
=
{
scope
.
row
.
djblzt
==
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/a
>
<
span
v
-
show
=
{
scope
.
row
.
djblzt
!=
1
}
>
{
this
.
yWstatus
(
scope
.
row
)}
<
/span
>
{
/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
<span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
<span v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span v-show={scope.row.ycfzt == 1}>,已预查封</span>
<span v-show={scope.row.cfzt == 1}>,已查封</span>
<span v-show={scope.row.diyizt == 1}>,已地役</span>
<span v-show={scope.row.yyzt == 1}>,异议中</span>
<span v-show={scope.row.xzzt == 1}>,已限制</span>
<span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
<span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
<span v-show={scope.row.dyzt == 1}>,已抵押</span> */
}
<
/div
>
)
}
},
{
prop
:
"bdcqzh"
,
label
:
"不动产证明号"
,
label
:
"不动产
登记
证明号"
,
minWidth
:
'150'
},
{
...
...
src/views/ywbl/ywsq/javascript/slectBdcdata.js
View file @
e2a01a9
...
...
@@ -108,6 +108,9 @@ export function queueDjywmc (djywbm, djqxbm) {
case
"A11400"
:
//林地使用权变更
vm
=
"selectLqqt"
;
break
;
case
"A12100"
:
//森林林木首次
vm
=
"selectSllm"
;
break
;
default
:
vm
=
"selecBdcql"
;
break
;
...
...
Please
register
or
sign in
to post a comment