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
da7590f9
authored
2023-07-20 09:07:31 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
1Merge branch 'dev' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
into dev
2 parents
80c2a733
1a57a7e8
Hide whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
697 additions
and
898 deletions
src/api/sysPushRecord.js
src/api/workflow/cfdjFlow.js
src/api/workflow/jsydsyqFlow.js
src/api/workflow/nydsyqFlow.js
src/api/workflow/tdsyqFlow.js
src/api/workflow/ygdjFlow.js
src/api/workflow/ygdyFlow.js
src/api/workflow/zjgcdyFlow.js
src/components/CheckBox/checkbox.vue
src/components/DialogBox/dialogBox.vue
src/components/LbTable/lb-table.vue
src/views/components/imagePreview.vue
src/views/djbworkflow/components/JtcyTable.vue
src/views/djbworkflow/components/processViewer.vue
src/views/djbworkflow/components/qlrCommonTable.vue
src/views/djbworkflow/components/ywrCommonTable.vue
src/views/djbworkflow/djbBook/components/blxxtabs/fdcq.vue
src/views/djbworkflow/djbBook/components/blxxtabs/yydj.vue
src/views/djbworkflow/workFrame.vue
src/views/djbworkflow/workFrameView.vue
src/views/workflow/components/JtcyTable.vue
src/views/workflow/components/clxx/clxx.vue
src/views/workflow/components/clxx/clxxUnify.vue
src/views/workflow/components/dialog/clxxDetailDialog.vue
src/views/workflow/components/qlrCommonTable.vue
src/views/workflow/components/spyj.vue
src/views/workflow/components/sqrViewTable.vue
src/views/workflow/components/tdytTable.vue
src/views/workflow/workFrame.vue
src/views/ywbl/slsqxx/cfdj/plcfslxx.vue
src/views/ywbl/slsqxx/cfdj/tdslxx.vue
src/views/ywbl/slsqxx/diyaq/slxx.vue
src/views/ywbl/slsqxx/fdcq2/slxx.vue
src/views/ywbl/slsqxx/fdcq2/slxx300.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/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/ybx/ybx.vue
src/api/sysPushRecord.js
View file @
da7590f
...
...
@@ -6,8 +6,11 @@
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
// 数据上报推送查询
/**
* @description: 数据上报推送查询
* @param {*} data
* @author: renchao
*/
export
function
list
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/system/sysPushRecord/list'
,
...
...
@@ -16,7 +19,11 @@ export function list (data) {
})
}
// 数据上报推送
/**
* @description: 数据上报推送
* @param {*} data
* @author: renchao
*/
export
function
push
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/system/sysPushRecord/push'
,
...
...
@@ -25,7 +32,11 @@ export function push (data) {
})
}
// 数据上报推送
/**
* @description: 数据上报推送
* @param {*} bsm
* @author: renchao
*/
export
function
detail
(
bsm
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/system/sysPushRecord/detail?bsm='
+
bsm
,
...
...
src/api/workflow/cfdjFlow.js
View file @
da7590f
/*
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:25:58
*/
...
...
@@ -31,6 +31,11 @@ export function BatchInit (data) {
})
}
/**
* @description: 初始化
* @param {*} data
* @author: renchao
*/
export
function
Init
(
data
)
{
let
apiUrl
=
""
;
switch
(
data
.
get
(
"djlx"
))
{
...
...
src/api/workflow/jsydsyqFlow.js
View file @
da7590f
...
...
@@ -6,7 +6,11 @@
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
// 初始化内容
/**
* @description: 初始化
* @param {*} data
* @author: renchao
*/
export
function
Init
(
data
)
{
let
apiUrl
=
""
;
switch
(
data
.
get
(
"djlx"
))
{
...
...
src/api/workflow/nydsyqFlow.js
View file @
da7590f
/*
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:32:29
*/
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
// 初始化内容
/**
* @description: 初始化
* @param {*} data
* @author: renchao
*/
export
function
Init
(
data
)
{
let
apiUrl
=
""
;
switch
(
data
.
get
(
"djlx"
))
{
...
...
@@ -39,7 +43,11 @@ export function Init (data) {
})
}
// 初始化内容
/**
* @description: 保存数据
* @param {*} data
* @author: renchao
*/
export
function
saveData
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/nydsyqlr/saveData'
,
...
...
src/api/workflow/tdsyqFlow.js
View file @
da7590f
...
...
@@ -6,7 +6,11 @@
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
// 初始化内容
/**
* @description: 初始化
* @param {*} data
* @author: renchao
*/
export
function
Init
(
data
)
{
let
apiUrl
=
""
;
switch
(
data
.
get
(
"djlx"
))
{
...
...
src/api/workflow/ygdjFlow.js
View file @
da7590f
/*
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:32:37
*/
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
// 初始化内容
/**
* @description: 初始化
* @param {*} data
* @author: renchao
*/
export
function
Init
(
data
)
{
let
apiUrl
=
""
;
switch
(
data
.
get
(
"djlx"
))
{
...
...
@@ -37,7 +41,11 @@ export function Init (data) {
data
})
}
// 初始化内容
/**
* @description: 保存数据
* @param {*} data
* @author: renchao
*/
export
function
saveData
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/ygmmdj/saveData'
,
...
...
src/api/workflow/ygdyFlow.js
View file @
da7590f
/*
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:32:41
*/
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
// 初始化内容
/**
* @description: 初始化
* @param {*} data
* @author: renchao
*/
export
function
Init
(
data
)
{
let
apiUrl
=
""
;
switch
(
data
.
get
(
"djlx"
))
{
...
...
@@ -37,7 +41,11 @@ export function Init (data) {
data
})
}
// 初始化内容
/**
* @description: 保存数据
* @param {*} data
* @author: renchao
*/
export
function
saveData
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/ygdydj/saveData'
,
...
...
src/api/workflow/zjgcdyFlow.js
View file @
da7590f
...
...
@@ -6,7 +6,11 @@
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
// 初始化内容
/**
* @description: 初始化
* @param {*} data
* @author: renchao
*/
export
function
Init
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
"/rest/ywbl/zjgcdy/init"
,
...
...
@@ -14,7 +18,11 @@ export function Init (data) {
data
})
}
// 批量初始化内容
/**
* @description: 批量初始化
* @param {*} data
* @author: renchao
*/
export
function
bacthInit
(
data
)
{
let
apiUrl
=
""
;
switch
(
data
.
get
(
"djlx"
))
{
...
...
@@ -46,7 +54,11 @@ export function bacthInit (data) {
data
})
}
// 受理信息保存
/**
* @description: 保存数据
* @param {*} data
* @author: renchao
*/
export
function
saveData
(
data
,
djlx
)
{
let
apiUrl
=
"/rest/ywbl/zjgcdy/saveData"
;
if
(
djlx
==
"400"
)
{
...
...
@@ -59,7 +71,11 @@ export function saveData (data, djlx) {
})
}
// 受理信息保存
/**
* @description: 批量保存
* @param {*} data
* @author: renchao
*/
export
function
saveBatchData
(
data
,
djlx
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
"/rest/ywbl/zjgcdy/saveBatchData"
,
...
...
@@ -67,7 +83,12 @@ export function saveBatchData (data, djlx) {
data
})
}
// 上传单个文件
/**
* @description: 上传当个文件
* @param {*} data
* @author: renchao
*/
export
function
sjClmxUpload
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/sjClmx/upload'
,
...
...
@@ -75,7 +96,12 @@ export function sjClmxUpload (data) {
data
})
}
// 删除上传文件
/**
* @description: 删除多个文件
* @param {*} data
* @author: renchao
*/
export
function
sjClmxDelete
(
bsmClmx
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/zhcx/sjClmx/delete?bsmClmx='
+
bsmClmx
,
...
...
src/components/CheckBox/checkbox.vue
View file @
da7590f
...
...
@@ -54,12 +54,20 @@ export default {
computed
:
{
model
:
{
/**
* @description: get
* @author: renchao
*/
get
()
{
return
this
.
isGroup
?
this
.
store
:
this
.
value
!==
undefined
?
this
.
value
:
this
.
selfModel
;
},
/**
* @description: set
* @param {*} val
* @author: renchao
*/
set
(
val
)
{
if
(
this
.
isGroup
)
{
this
.
isLimitExceeded
=
false
;
...
...
@@ -80,6 +88,10 @@ export default {
}
},
/**
* @description: isChecked
* @author: renchao
*/
isChecked
()
{
if
({}.
toString
.
call
(
this
.
model
)
===
'[object Boolean]'
)
{
return
this
.
model
;
...
...
@@ -89,7 +101,10 @@ export default {
return
this
.
model
===
this
.
trueLabel
;
}
},
/**
* @description: isGroup
* @author: renchao
*/
isGroup
()
{
let
parent
=
this
.
$parent
;
while
(
parent
)
{
...
...
@@ -102,29 +117,44 @@ export default {
}
return
false
;
},
/**
* @description: store
* @author: renchao
*/
store
()
{
return
this
.
_checkboxGroup
?
this
.
_checkboxGroup
.
value
:
this
.
value
;
},
/* used to make the isDisabled judgment under max/min props */
/**
* @description: isLimitDisabled
* @author: renchao
*/
isLimitDisabled
()
{
const
{
max
,
min
}
=
this
.
_checkboxGroup
;
return
!!
(
max
||
min
)
&&
(
this
.
model
.
length
>=
max
&&
!
this
.
isChecked
)
||
(
this
.
model
.
length
<=
min
&&
this
.
isChecked
);
},
/**
* @description: isDisabled
* @author: renchao
*/
isDisabled
()
{
return
this
.
isGroup
?
this
.
_checkboxGroup
.
disabled
||
this
.
disabled
||
(
this
.
elForm
||
{}).
disabled
||
this
.
isLimitDisabled
:
this
.
disabled
||
(
this
.
elForm
||
{}).
disabled
;
},
/**
* @description: _elFormItemSize
* @author: renchao
*/
_elFormItemSize
()
{
return
(
this
.
elFormItem
||
{}).
elFormItemSize
;
},
/**
* @description: checkboxSize
* @author: renchao
*/
checkboxSize
()
{
const
temCheckboxSize
=
this
.
size
||
this
.
_elFormItemSize
||
(
this
.
$ELEMENT
||
{}).
size
;
return
this
.
isGroup
...
...
@@ -149,6 +179,10 @@ export default {
},
methods
:
{
/**
* @description: addToStore
* @author: renchao
*/
addToStore
()
{
if
(
Array
.
isArray
(
this
.
model
)
&&
...
...
@@ -159,6 +193,10 @@ export default {
this
.
model
=
this
.
trueLabel
||
true
;
}
},
/**
* @description: handleChange
* @author: renchao
*/
handleChange
(
ev
)
{
if
(
this
.
isLimitExceeded
)
return
;
let
value
;
...
...
@@ -175,16 +213,26 @@ export default {
});
}
},
/**
* @description: created
* @author: renchao
*/
created
()
{
this
.
checked
&&
this
.
addToStore
();
},
/**
* @description: mounted
* @author: renchao
*/
mounted
()
{
// 为indeterminate元素 添加aria-controls 属性
if
(
this
.
indeterminate
)
{
this
.
$el
.
setAttribute
(
'aria-controls'
,
this
.
controls
);
}
},
/**
* @description: watch
* @author: renchao
*/
watch
:
{
value
(
value
)
{
this
.
dispatch
(
'ElFormItem'
,
'el.form.change'
,
value
);
...
...
src/components/DialogBox/dialogBox.vue
View file @
da7590f
...
...
@@ -92,6 +92,10 @@ export default {
}
},
methods
:
{
/**
* @description: handleFullscreen
* @author: renchao
*/
handleFullscreen
()
{
this
.
fullscreen
=
!
this
.
fullscreen
if
(
!
this
.
fullscreen
)
{
...
...
@@ -100,11 +104,19 @@ export default {
this
.
scrollerHeight
=
(
window
.
innerHeight
-
120
)
+
'px'
}
},
/**
* @description: submitForm
* @author: renchao
*/
submitForm
()
{
if
(
this
.
isButton
)
{
this
.
$emit
(
'submitForm'
);
}
},
/**
* @description: closeDialog
* @author: renchao
*/
closeDialog
()
{
this
.
key
++
this
.
$emit
(
'input'
,
false
)
...
...
@@ -124,4 +136,4 @@ export default {
left
:
50%
!important
;
transform
:
translate
(
-50%
,
-50%
)
!important
;
}
</
style
>
\ No newline at end of file
</
style
>
...
...
src/components/LbTable/lb-table.vue
View file @
da7590f
...
...
@@ -106,6 +106,11 @@
components
:
{
LbColumn
,
},
/**
* @description: data
* @author: renchao
*/
data
()
{
return
{
tableHeight
:
'auto'
,
...
...
@@ -114,6 +119,10 @@
selected
:
''
}
},
/**
* @description: created
* @author: renchao
*/
created
()
{
this
.
getMergeArr
(
this
.
data
,
this
.
merge
)
this
.
getHeight
()
...
...
@@ -124,17 +133,29 @@
},
},
methods
:
{
// 单选
/**
* @description: 单选
* @param {*} row
* @author: renchao
*/
singleElection
(
row
)
{
this
.
selected
=
this
.
data
.
indexOf
(
row
);
// this.$emit('row-click', row)
},
/**
* @description: tableRowClassName
* @author: renchao
*/
tableRowClassName
({
row
,
rowIndex
})
{
if
(
rowIndex
%
2
===
1
)
{
return
'interlaced'
;
}
},
/**
* @description: getHeight
* @author: renchao
*/
getHeight
()
{
if
(
!
this
.
heightNumSetting
)
{
let
_this
=
this
...
...
@@ -170,6 +191,12 @@
})
}
},
/**
* @description: calcHeightx
* @param {*} value
* @param {*} wappered
* @author: renchao
*/
calcHeightx
(
value
,
wappered
=
true
)
{
//项目自定义的公共header部分的高度,可忽略
let
header
=
document
.
querySelector
(
".from-clues-header"
).
offsetHeight
;
...
...
@@ -195,36 +222,89 @@
}
return
res
;
},
/**
* @description: clearSelection
* @author: renchao
*/
clearSelection
()
{
this
.
$refs
.
elTable
.
clearSelection
()
},
/**
* @description: toggleRowSelection
* @author: renchao
*/
toggleRowSelection
(
row
,
selected
)
{
this
.
$refs
.
elTable
.
toggleRowSelection
(
row
,
selected
)
},
/**
* @description: toggleAllSelection
* @author: renchao
*/
toggleAllSelection
()
{
this
.
$refs
.
elTable
.
toggleAllSelection
()
},
/**
* @description: toggleRowExpansion
* @param {*} row
* @param {*} bsm
* @author: renchao
*/
toggleRowExpansion
(
row
,
expanded
)
{
this
.
$refs
.
elTable
.
toggleRowExpansion
(
row
,
expanded
)
},
/**
* @description: setCurrentRow
* @param {*} row
* @author: renchao
*/
setCurrentRow
(
row
)
{
this
.
$refs
.
elTable
.
setCurrentRow
(
row
)
},
/**
* @description: setCurrentRow
* @author: renchao
*/
clearSort
()
{
this
.
$refs
.
elTable
.
clearSort
()
},
/**
* @description: clearFilter
* @param {*} columnKey
* @author: renchao
*/
clearFilter
(
columnKey
)
{
this
.
$refs
.
elTable
.
clearFilter
(
columnKey
)
},
/**
* @description: doLayout
* @author: renchao
*/
doLayout
()
{
this
.
$refs
.
elTable
.
doLayout
()
},
/**
* @description: sort
* @param {*} prop
* @param {*} order
* @author: renchao
*/
sort
(
prop
,
order
)
{
this
.
$refs
.
elTable
.
sort
(
prop
,
order
)
},
/**
* @description: paginationCurrentChange
* @param {*} val
* @author: renchao
*/
paginationCurrentChange
(
val
)
{
this
.
$emit
(
'p-current-change'
,
val
)
},
/**
* @description: getMergeArr
* @param {*} tableData
* @param {*} merge
* @author: renchao
*/
getMergeArr
(
tableData
,
merge
)
{
if
(
!
merge
)
return
this
.
mergeLine
=
{}
...
...
@@ -247,6 +327,10 @@
})
})
},
/**
* @description: mergeMethod
* @author: renchao
*/
mergeMethod
({
row
,
column
,
rowIndex
,
columnIndex
})
{
const
index
=
this
.
merge
.
indexOf
(
column
.
property
)
if
(
index
>
-
1
)
{
...
...
@@ -260,9 +344,17 @@
},
},
watch
:
{
/**
* @description: merge
* @author: renchao
*/
merge
()
{
this
.
getMergeArr
(
this
.
data
,
this
.
merge
)
},
/**
* @description: dataLength
* @author: renchao
*/
dataLength
()
{
this
.
getMergeArr
(
this
.
data
,
this
.
merge
)
}
...
...
src/views/components/imagePreview.vue
View file @
da7590f
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-04 16:07:37
-->
...
...
@@ -26,11 +26,11 @@
<el-upload
class=
"fileUpdate"
ref=
"upload"
action=
""
:show-file-list=
"false"
:multiple=
"true"
:auto-upload=
"false"
:on-change=
"handleChange"
accept=
".JPG, .PNG, .JPEG,.jpg, .png, .jpeg"
:before-upload=
"beforeUpload"
>
<el-button
icon=
"el-icon-upload"
type=
"primary"
v-if=
"
!this.$route.query.viewtype &&
ableOperation"
>
上传
</el-button>
<el-button
icon=
"el-icon-upload"
type=
"primary"
v-if=
"ableOperation"
>
上传
</el-button>
</el-upload>
<el-button
type=
"primary"
icon=
"el-icon-delete-solid"
@
click=
"handleDelete"
v-if=
"
!this.$route.query.viewtype &&
thumbnailImages.length>0 && ableOperation"
>
删除
</el-button>
<div
v-if=
"
!this.$route.query.viewtype
"
class=
"pl-5"
>
v-if=
"thumbnailImages.length>0 && ableOperation"
>
删除
</el-button>
<div
v-if=
"
ableOperation
"
class=
"pl-5"
>
<el-button
type=
"primary"
@
click=
"handleOpenScan"
v-if=
"ableOperation"
>
{{
scanTitle
}}
</el-button>
<el-button
type=
"primary"
@
click=
"handleViewScan"
v-if=
"isScan && ableOperation"
>
拍照
</el-button>
</div>
...
...
src/views/djbworkflow/components/JtcyTable.vue
deleted
100644 → 0
View file @
80c2a73
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:41:09
-->
<
template
>
<div>
<lb-table
:column=
"column"
border
:maxHeight=
"300"
heightNumSetting
:pagination=
"false"
:key=
"key"
:data=
"tableDataList"
>
</lb-table>
<addJtcy
v-model=
"dialog"
:details=
"details"
@
updateDetail=
"updateDetail"
/>
</div>
</
template
>
<
script
>
import
addJtcy
from
'./addJtcy.vue'
import
{
mapGetters
}
from
'vuex'
export
default
{
components
:
{
addJtcy
},
computed
:
{
...
mapGetters
([
"dictData"
]),
},
props
:
{
tableData
:
{
type
:
Array
,
default
:
function
()
{
return
[]
}
},
gyfs
:
{
type
:
String
,
default
:
'1'
}
},
data
()
{
return
{
key
:
0
,
dataIndex
:
0
,
dialog
:
false
,
details
:
{},
tableDataList
:
[],
qlrCommonTable
:
[
{
width
:
'50'
,
renderHeader
:
(
h
,
scope
)
=>
{
return
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
addClick
()
}}
><
/i
>
}
<
/div
>
},
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
<
i
class
=
"el-icon-minus pointer"
onClick
=
{()
=>
{
this
.
deleClick
(
scope
.
$index
,
scope
.
row
)
}}
><
/i
>
}
<
/div
>
)
}
},
{
label
:
'身份证读卡器'
,
align
:
'center'
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
"el-icon-tickets"
onClick
=
{()
=>
{
this
.
readClick
(
scope
)
}}
>
读取
<
/el-button
>
}
},
{
prop
:
"cyxm"
,
label
:
"成员姓名"
},
{
prop
:
"sfzhm"
,
label
:
"身份证号码"
},
{
prop
:
"dh"
,
label
:
"联系电话"
},
{
label
:
'修改'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
<
el
-
button
icon
=
"el-icon-view"
type
=
"text"
onClick
=
{()
=>
{
this
.
queryViewClick
(
scope
.
$index
,
scope
.
row
)
}}
>
查看
<
/el-button> : <el-butto
n
icon
=
"el-icon-edit-outline"
type
=
"text"
onClick
=
{()
=>
{
this
.
editClick
(
scope
.
$index
,
scope
.
row
)
}}
>
编辑
<
/el-button
>
}
<
/div
>
)
}
}
],
column
:
this
.
qlrCommonTable
}
},
watch
:
{
tableData
:
{
handler
:
function
(
val
,
oldVal
)
{
let
that
=
this
if
(
val
.
length
==
0
||
!
val
)
{
that
.
tableDataList
=
_
.
cloneDeep
([{
sqrmc
:
''
,
dlrzjlx
:
''
,
dlrzjh
:
''
,
fr
:
''
}])
}
else
{
that
.
tableDataList
=
_
.
cloneDeep
(
val
)
}
},
immediate
:
true
,
deep
:
true
},
gyfs
:
{
handler
(
newVal
,
oldValue
)
{
let
dataList
=
_
.
cloneDeep
(
this
.
qlrCommonTable
)
if
(
newVal
==
'1'
)
{
this
.
column
=
_
.
cloneDeep
(
dataList
).
slice
(
1
,
dataList
.
length
)
}
else
{
this
.
column
=
dataList
}
},
immediate
:
true
}
},
methods
:
{
updateDetail
(
value
)
{
this
.
tableDataList
[
this
.
dataIndex
]
=
value
this
.
key
++
this
.
$emit
(
'upDateJtcyList'
,
this
.
tableDataList
)
},
// 新增
addClick
()
{
this
.
dialog
=
true
},
// 删除
deleClick
(
index
,
row
)
{
this
.
tableData
.
splice
(
index
,
1
)
},
// 身份证读取
readClick
()
{
},
// 修改
editClick
(
index
,
row
)
{
console
.
log
(
row
,
'rowrowrowrowrow'
);
this
.
dataIndex
=
index
this
.
dialog
=
true
this
.
details
=
row
},
queryViewClick
()
{
this
.
dialog
=
true
}
}
}
</
script
>
<
style
scoped
lang=
'scss'
>
</
style
>
\ No newline at end of file
src/views/djbworkflow/components/processViewer.vue
deleted
100644 → 0
View file @
80c2a73
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:41:15
-->
<
template
>
<div>
<div
class=
"process-viewer"
>
<div
v-show=
"!isLoading"
ref=
"processCanvas"
class=
"process-canvas"
style=
"height: 280px;"
/>
<!-- 自定义箭头样式,用于成功状态下流程连线箭头 -->
<defs
ref=
"customSuccessDefs"
>
<marker
id=
"sequenceflow-end-white-success"
view-box=
"0 0 20 20"
ref-x=
"11"
ref-y=
"10"
marker-width=
"10"
marker-height=
"10"
orient=
"auto"
>
<path
class=
"success-arrow"
d=
"M 1 5 L 11 10 L 1 15 Z"
style=
"stroke-width: 1px; stroke-linecap: round; stroke-dasharray: 10000, 1;"
/>
</marker>
<marker
id=
"conditional-flow-marker-white-success"
view-box=
"0 0 20 20"
ref-x=
"-1"
ref-y=
"10"
marker-width=
"10"
marker-height=
"10"
orient=
"auto"
>
<path
class=
"success-conditional"
d=
"M 0 10 L 8 6 L 16 10 L 8 14 Z"
style=
"stroke-width: 1px; stroke-linecap: round; stroke-dasharray: 10000, 1;"
/>
</marker>
</defs>
<!-- 自定义箭头样式,用于失败状态下流程连线箭头 -->
<defs
ref=
"customFailDefs"
>
<marker
id=
"sequenceflow-end-white-fail"
view-box=
"0 0 20 20"
ref-x=
"11"
ref-y=
"10"
marker-width=
"10"
marker-height=
"10"
orient=
"auto"
>
<path
class=
"fail-arrow"
d=
"M 1 5 L 11 10 L 1 15 Z"
style=
"stroke-width: 1px; stroke-linecap: round; stroke-dasharray: 10000, 1;"
/>
</marker>
<marker
id=
"conditional-flow-marker-white-fail"
view-box=
"0 0 20 20"
ref-x=
"-1"
ref-y=
"10"
marker-width=
"10"
marker-height=
"10"
orient=
"auto"
>
<path
class=
"fail-conditional"
d=
"M 0 10 L 8 6 L 16 10 L 8 14 Z"
style=
"stroke-width: 1px; stroke-linecap: round; stroke-dasharray: 10000, 1;"
/>
</marker>
</defs>
<div
style=
"position: absolute; top: 0px; left: 0px; width: 100%;"
>
<el-row
type=
"flex"
justify=
"end"
>
<el-button-group
key=
"scale-control"
size=
"medium"
>
<el-button
size=
"medium"
type=
"default"
:plain=
"true"
:disabled=
"defaultZoom
<
= 0.3" icon="el-icon-zoom-out"
@click="processZoomOut()" />
<el-button
size=
"medium"
type=
"default"
style=
"width: 90px;"
>
{{
Math
.
floor
(
this
.
defaultZoom
*
10
*
10
)
+
"%"
}}
</el-button>
<el-button
size=
"medium"
type=
"default"
:plain=
"true"
:disabled=
"defaultZoom >= 3.9"
icon=
"el-icon-zoom-in"
@
click=
"processZoomIn()"
/>
<el-button
size=
"medium"
type=
"default"
icon=
"el-icon-c-scale-to-original"
@
click=
"processReZoom()"
/>
<slot
/>
</el-button-group>
</el-row>
</div>
</div>
<!-- 已完成节点悬浮弹窗 -->
<div
class=
"information-list"
>
<el-select
v-model=
"selectValue"
@
change=
"handleSelect"
>
<el-option
v-for=
"item in selectOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
<el-table
height=
"190"
:data=
"taskCommentList"
size=
"mini"
border
header-cell-class-name=
"table-header-gray"
>
<el-table-column
label=
"序号"
header-align=
"center"
align=
"center"
type=
"index"
width=
"55px"
/>
<el-table-column
label=
"流程状态"
header-align=
"center"
align=
"center"
>
<template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.endTime"
>
已完结
</div>
<div
v-else
>
正在办理
</div>
</
template
>
</el-table-column>
<el-table-column
label=
"环节名称"
prop=
"name"
minWidth=
"100"
align=
"center"
/>
<el-table-column
label=
"办理人"
prop=
"agent"
minWidth=
"120"
align=
"center"
/>
<el-table-column
label=
"转入时间"
prop=
"createTime"
:formatter=
"formatDate"
width=
"160"
align=
"center"
/>
<el-table-column
label=
"认领时间"
prop=
"claimTime"
:formatter=
"formatDate"
width=
"160"
align=
"center"
/>
<el-table-column
label=
"转出时间"
prop=
"endTime"
:formatter=
"formatDate"
width=
"160"
align=
"center"
/>
<el-table-column
label=
"操作方式"
prop=
"controls"
align=
"center"
/>
<el-table-column
label=
"意见"
prop=
"idea"
align=
"center"
/>
</el-table>
</div>
</div>
</template>
<
script
>
import
'@/styles/package/theme/index.scss'
import
BpmnViewer
from
'bpmn-js/lib/Viewer'
import
MoveCanvasModule
from
'diagram-js/lib/navigation/movecanvas'
export
default
{
props
:
{
formData
:
{
type
:
Object
,
default
:
{}
}
},
data
()
{
return
{
dlgTitle
:
undefined
,
defaultZoom
:
1
,
// 是否正在加载流程图
isLoading
:
true
,
bpmnViewer
:
undefined
,
// 已完成流程元素
processNodeInfo
:
undefined
,
// 当前任务id
selectTaskId
:
undefined
,
// 任务节点审批记录
taskList
:[],
taskCommentList
:
[],
// 已完成任务悬浮延迟Timer
hoverTimer
:
null
,
// 下拉
selectValue
:
''
,
selectOptions
:
[]
}
},
created
()
{
this
.
$nextTick
(()
=>
{
// 获取流程记录
this
.
getCommentList
()
this
.
setProcessStatus
(
this
.
formData
.
finishedInfo
);
this
.
importXML
(
this
.
formData
.
xml
)
})
},
destroyed
()
{
this
.
clearViewer
()
},
methods
:
{
formatDate
(
row
,
column
)
{
let
data
=
row
[
column
.
property
]
if
(
data
==
null
)
{
return
null
}
let
dt
=
new
Date
(
data
)
return
dt
.
getFullYear
()
+
'-'
+
(
dt
.
getMonth
()
+
1
)
+
'-'
+
dt
.
getDate
()
+
' '
+
dt
.
getHours
()
+
':'
+
dt
.
getMinutes
()
+
':'
+
dt
.
getSeconds
()
},
processReZoom
()
{
this
.
defaultZoom
=
1
this
.
bpmnViewer
.
get
(
'canvas'
).
zoom
(
'fit-viewport'
,
'auto'
)
},
processZoomIn
(
zoomStep
=
0.1
)
{
const
newZoom
=
Math
.
floor
(
this
.
defaultZoom
*
100
+
zoomStep
*
100
)
/
100
if
(
newZoom
>
4
)
{
throw
new
Error
(
'[Process Designer Warn ]: The zoom ratio cannot be greater than 4'
)
}
this
.
defaultZoom
=
newZoom
this
.
bpmnViewer
.
get
(
'canvas'
).
zoom
(
this
.
defaultZoom
)
},
processZoomOut
(
zoomStep
=
0.1
)
{
const
newZoom
=
Math
.
floor
(
this
.
defaultZoom
*
100
-
zoomStep
*
100
)
/
100
if
(
newZoom
<
0.2
)
{
throw
new
Error
(
'[Process Designer Warn ]: The zoom ratio cannot be scss than 0.2'
)
}
this
.
defaultZoom
=
newZoom
this
.
bpmnViewer
.
get
(
'canvas'
).
zoom
(
this
.
defaultZoom
)
},
getOperationTagType
(
type
)
{
return
'success'
},
// 流程图预览清空
clearViewer
(
a
)
{
if
(
this
.
$refs
.
processCanvas
)
{
this
.
$refs
.
processCanvas
.
innerHTML
=
''
}
if
(
this
.
bpmnViewer
)
{
this
.
bpmnViewer
.
destroy
()
}
this
.
bpmnViewer
=
null
},
// 添加自定义箭头
addCustomDefs
()
{
const
canvas
=
this
.
bpmnViewer
.
get
(
'canvas'
)
const
svg
=
canvas
.
_svg
const
customSuccessDefs
=
this
.
$refs
.
customSuccessDefs
const
customFailDefs
=
this
.
$refs
.
customFailDefs
svg
.
appendChild
(
customSuccessDefs
)
svg
.
appendChild
(
customFailDefs
)
},
// 任务悬浮弹窗
onSelectElement
(
element
)
{
this
.
selectTaskId
=
undefined
this
.
dlgTitle
=
undefined
let
allfinishedTaskSet
=
[...
this
.
processNodeInfo
.
finishedTaskSet
,
...
this
.
processNodeInfo
.
unfinishedTaskSet
]
if
(
this
.
processNodeInfo
==
null
||
allfinishedTaskSet
==
null
)
return
if
(
element
==
null
||
allfinishedTaskSet
.
indexOf
(
element
.
id
)
===
-
1
)
{
return
}
this
.
selectTaskId
=
element
.
id
this
.
selectValue
=
element
.
id
this
.
dlgTitle
=
element
.
businessObject
?
element
.
businessObject
.
name
:
undefined
// 计算当前悬浮任务审批记录,如果记录为空不显示弹窗
this
.
taskCommentList
=
(
this
.
taskList
||
[]).
filter
(
item
=>
{
return
item
.
taskDefinitionKey
===
this
.
selectTaskId
})
if
(
this
.
taskCommentList
.
length
==
0
)
{
this
.
taskCommentList
=
this
.
taskList
;
}
},
// 下拉列表切换
handleSelect
(
val
)
{
this
.
taskCommentList
=
(
this
.
taskList
||
[]).
filter
(
item
=>
{
return
item
.
taskDefinitionKey
===
val
})
if
(
this
.
taskCommentList
.
length
==
0
)
{
this
.
taskCommentList
=
this
.
taskList
;
}
},
// 显示流程图
async
importXML
(
xml
)
{
let
xmlData
=
this
.
$x2js
.
xml2js
(
xml
).
definitions
.
process
;
this
.
selectOptions
=
xmlData
.
userTask
.
map
(
item
=>
{
return
{
value
:
item
.
_id
,
label
:
item
.
_name
}
})
this
.
selectOptions
=
[{
value
:
xmlData
.
startEvent
.
_id
,
label
:
'浏览记录'
},
...
this
.
selectOptions
]
this
.
selectOptions
=
this
.
selectOptions
.
map
(
item
=>
{
if
(
this
.
formData
.
finishedInfo
.
finishedTaskSet
.
includes
(
item
.
value
))
{
return
item
}
if
(
this
.
formData
.
finishedInfo
.
unfinishedTaskSet
.
includes
(
item
.
value
))
{
return
item
}
}).
filter
(
Boolean
);
this
.
selectValue
=
xmlData
.
startEvent
.
_id
this
.
clearViewer
(
'a'
)
if
(
xml
!=
null
&&
xml
!==
''
)
{
try
{
this
.
bpmnViewer
=
new
BpmnViewer
({
additionalModules
:
[
// 移动整个画布
MoveCanvasModule
],
container
:
this
.
$refs
.
processCanvas
})
// 任务节点悬浮事件
this
.
bpmnViewer
.
on
(
'element.click'
,
({
element
})
=>
{
this
.
onSelectElement
(
element
)
})
await
this
.
bpmnViewer
.
importXML
(
xml
)
this
.
isLoading
=
true
this
.
addCustomDefs
()
}
catch
(
e
)
{
this
.
clearViewer
(
'b'
)
}
finally
{
this
.
isLoading
=
false
this
.
setProcessStatus
(
this
.
processNodeInfo
)
this
.
$nextTick
(()
=>
{
this
.
processReZoom
()
})
}
}
},
// 获取流程记录
getCommentList
()
{
this
.
formData
.
allCommentList
.
forEach
(
async
(
item
,
index
)
=>
{
item
.
comments
.
forEach
(
element
=>
{
if
(
element
.
type
==
"COMPLETE"
){
this
.
formData
.
allCommentList
[
index
].
idea
=
element
.
message
this
.
formData
.
allCommentList
[
index
].
controls
=
"完成"
}
});
this
.
formData
.
allCommentList
[
index
].
agent
=
item
.
assignee
.
name
})
this
.
formData
.
handlinglist
.
forEach
(
async
(
item
,
index
)
=>
{
if
(
item
.
assignee
.
name
){
this
.
formData
.
handlinglist
[
index
].
agent
=
item
.
assignee
.
name
}
else
{
let
str
=
""
item
.
countersign
.
forEach
((
item
)
=>
{
str
+=
item
.
name
+
","
})
str
=
str
.
slice
(
0
,
-
1
);
this
.
formData
.
allCommentList
[
index
].
agent
=
str
}
})
this
.
taskList
=
[...
this
.
formData
.
allCommentList
,...
this
.
formData
.
handlinglist
];
// this.taskList =this.formData.allCommentList;
// 处理数据之后赋值
this
.
taskCommentList
=
this
.
taskList
},
// 设置流程图元素状态
setProcessStatus
(
processNodeInfo
)
{
this
.
processNodeInfo
=
processNodeInfo
if
(
this
.
isLoading
||
this
.
processNodeInfo
==
null
||
this
.
bpmnViewer
==
null
)
return
const
{
finishedTaskSet
,
rejectedTaskSet
,
unfinishedTaskSet
,
finishedSequenceFlowSet
}
=
this
.
processNodeInfo
const
canvas
=
this
.
bpmnViewer
.
get
(
'canvas'
)
const
elementRegistry
=
this
.
bpmnViewer
.
get
(
'elementRegistry'
)
if
(
Array
.
isArray
(
finishedSequenceFlowSet
))
{
finishedSequenceFlowSet
.
forEach
(
item
=>
{
if
(
item
!=
null
)
{
canvas
.
addMarker
(
item
,
'success'
)
const
element
=
elementRegistry
.
get
(
item
)
const
conditionExpression
=
element
.
businessObject
.
conditionExpression
if
(
conditionExpression
)
{
canvas
.
addMarker
(
item
,
'condition-expression'
)
}
}
})
}
if
(
Array
.
isArray
(
finishedTaskSet
))
{
finishedTaskSet
.
forEach
(
item
=>
canvas
.
addMarker
(
item
,
'success'
))
}
if
(
Array
.
isArray
(
unfinishedTaskSet
))
{
unfinishedTaskSet
.
forEach
(
item
=>
canvas
.
addMarker
(
item
,
'primary'
))
}
if
(
Array
.
isArray
(
rejectedTaskSet
))
{
rejectedTaskSet
.
forEach
(
item
=>
{
if
(
item
!=
null
)
{
const
element
=
elementRegistry
.
get
(
item
)
if
(
element
.
type
.
includes
(
'Task'
))
{
canvas
.
addMarker
(
item
,
'danger'
)
}
else
{
canvas
.
addMarker
(
item
,
'warning'
)
}
}
})
}
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
.information-list
{
height
:
220px
;
margin-top
:
10px
;
p
{
font-size
:
16px
;
line-height
:
24px
;
}
}
/
deep
/
.bjs-powered-by
{
display
:
none
;
}
//
/
deep
/
.information-list
{
//
height
:
170px
;
//
overflow
:
visible
;
//
}
</
style
>
src/views/djbworkflow/components/qlrCommonTable.vue
View file @
da7590f
...
...
@@ -143,7 +143,7 @@ export default {
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
?
(
{
!
this
.
showButton
?
(
<
el
-
button
icon
=
"el-icon-view"
type
=
"text"
...
...
@@ -263,22 +263,12 @@ export default {
},
// 修改
editClick
(
index
,
row
)
{
// popupDialog("申请人信息", "workflow/components/addQlr", {
// showButton: this.$route.query.viewtype ? false : true,
// dataIndex :index,
// details :row,
// isaddupdate :false
// });
this
.
dataIndex
=
index
;
this
.
dialog
=
true
;
this
.
details
=
row
;
this
.
isaddupdate
=
false
;
},
queryViewClick
(
index
,
row
)
{
// popupDialog("申请人信息", "workflow/components/addQlr", {
// showButton: this.$route.query.viewtype ? false : true,
// details: row,
// });
this
.
dialog
=
true
;
this
.
details
=
row
;
},
...
...
src/views/djbworkflow/components/ywrCommonTable.vue
View file @
da7590f
...
...
@@ -143,7 +143,7 @@ export default {
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
?
(
{
!
this
.
showButton
?
(
<
el
-
button
icon
=
"el-icon-view"
type
=
"text"
...
...
@@ -259,22 +259,12 @@ export default {
// 修改
editClick
(
index
,
row
)
{
// popupDialog("申请人信息", "workflow/components/addYwr", {
// showButton: this.$route.query.viewtype ? false : true,
// dataIndex :index,
// details :row,
// isaddupdate :false
// });
this
.
dataIndex
=
index
;
this
.
dialog
=
true
;
this
.
details
=
row
;
this
.
isaddupdate
=
false
;
},
queryViewClick
(
index
,
row
)
{
// popupDialog("申请人信息", "workflow/components/addYwr", {
// showButton: this.$route.query.viewtype ? false : true,
// details: row,
// });
this
.
dialog
=
true
;
this
.
details
=
row
;
},
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/fdcq.vue
View file @
da7590f
...
...
@@ -468,8 +468,8 @@ export default {
djjgrules
:
[{
required
:
true
,
message
:
"登记机构"
,
trigger
:
"blur"
}],
dbrrules
:
[{
required
:
true
,
message
:
"登簿人"
,
trigger
:
"blur"
}],
djsjrules
:
[{
required
:
true
,
message
:
"登记时间"
,
trigger
:
"blur"
}],
fwjgrules
:
[{
required
:
true
,
message
:
"房屋结构"
,
trigger
:
"
blur
"
}],
djlxrules
:
[{
required
:
true
,
message
:
"登记类型"
,
trigger
:
"
blur
"
}],
fwjgrules
:
[{
required
:
true
,
message
:
"房屋结构"
,
trigger
:
"
change
"
}],
djlxrules
:
[{
required
:
true
,
message
:
"登记类型"
,
trigger
:
"
change
"
}],
},
};
},
...
...
@@ -549,14 +549,6 @@ export default {
});
return
false
;
}
if
(
this
.
ruleForm
.
ywrData
.
length
==
0
)
{
this
.
$message
({
showClose
:
true
,
message
:
"请确认义务人信息"
,
type
:
"error"
,
});
return
false
;
}
if
(
this
.
ruleForm
.
tdytqxList
.
length
==
0
&&
!
this
.
tdxz
)
{
this
.
$message
({
showClose
:
true
,
...
...
src/views/djbworkflow/djbBook/components/blxxtabs/yydj.vue
View file @
da7590f
...
...
@@ -224,7 +224,7 @@
/>
</div>
</div>
<el-row
class=
"btn"
v-if=
"
!$route.query.viewtype
"
>
<el-row
class=
"btn"
v-if=
"
ableOperation
"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/djbworkflow/workFrame.vue
View file @
da7590f
...
...
@@ -71,7 +71,7 @@
import
{
getForm
}
from
"./flowform"
;
import
{
getStepFormInfo
}
from
"@/api/workFlow.js"
;
import
NoticeBar
from
"@/components/NoticeBar/index"
;
import
ProcessViewer
from
"./components/processViewer.vue"
;
//
import ProcessViewer from "./components/processViewer.vue";
import
ordinaryMenu
from
"./components/leftmenu/ordinaryMenu.vue"
;
import
qllxDailog
from
"./djbBook/components/qllxDailog"
;
...
...
@@ -86,7 +86,6 @@
components
:
{
selectBdc
,
NoticeBar
,
ProcessViewer
,
ordinaryMenu
,
qllxDailog
,
},
...
...
src/views/djbworkflow/workFrameView.vue
View file @
da7590f
...
...
@@ -71,7 +71,7 @@
import
{
getForm
}
from
"./flowform"
;
import
{
getBlYbxStepFormInfo
}
from
"@/api/workFlow.js"
;
import
NoticeBar
from
"@/components/NoticeBar/index"
;
import
ProcessViewer
from
"./components/processViewer.vue"
;
//
import ProcessViewer from "./components/processViewer.vue";
// 引入左侧菜单
import
{
leftMenubl
}
from
"@/api/djbRepair.js"
;
import
ordinaryMenu
from
"./components/leftmenu/ordinaryMenu.vue"
;
...
...
@@ -86,7 +86,6 @@
components
:
{
selectBdc
,
NoticeBar
,
ProcessViewer
,
ordinaryMenu
,
qllxDailog
,
},
...
...
src/views/workflow/components/JtcyTable.vue
View file @
da7590f
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-17 13:51:03
-->
...
...
@@ -38,6 +38,7 @@
},
data
()
{
return
{
isDisabled
:
this
.
disabled
,
key
:
0
,
dataIndex
:
0
,
dialog
:
false
,
...
...
@@ -48,7 +49,7 @@
width
:
'50'
,
renderHeader
:
(
h
,
scope
)
=>
{
return
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
addClick
()
}}
><
/i
>
this
.
isDisabled
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
addClick
()
}}
><
/i
>
}
<
/div
>
},
...
...
@@ -56,7 +57,7 @@
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
this
.
isDisabled
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
<
i
class
=
"el-icon-minus pointer"
onClick
=
{()
=>
{
this
.
deleClick
(
scope
.
$index
,
scope
.
row
)
}}
><
/i
>
}
<
/div
>
...
...
@@ -88,7 +89,7 @@
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
<
el
-
button
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
...
...
src/views/workflow/components/clxx/clxx.vue
View file @
da7590f
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-04 16:05:44
-->
...
...
@@ -74,7 +74,7 @@
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
'序号'
:
this
.
ableOperation
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
...
...
@@ -91,7 +91,7 @@
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
this
.
ableOperation
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
<
i
class
=
"el-icon-minus pointer"
...
...
@@ -536,4 +536,4 @@
}
}
}
</
style
>
\ No newline at end of file
</
style
>
...
...
src/views/workflow/components/clxx/clxxUnify.vue
View file @
da7590f
...
...
@@ -23,7 +23,7 @@
</div>
</div>
<el-button
type=
"primary"
native-type=
"submit"
style=
"width:100%"
@
click=
"handleAdd()"
v-if=
"
!this.$route.query.viewtype &&
ableOperation"
>
新增
</el-button>
v-if=
"ableOperation"
>
新增
</el-button>
</div>
<image-preview
ref=
'imageRef'
v-if=
"tableData.length>0"
:previewImg=
"previewImg"
:ableOperation=
"ableOperation"
@
updateList=
"updateList"
@
nextPriview=
"nextPriview"
...
...
@@ -71,7 +71,7 @@
},
mounted
()
{
this
.
ableOperation
=
this
.
$parent
.
ableOperation
},
},
methods
:
{
// 自动预览
nextPriview
()
{
...
...
src/views/workflow/components/dialog/clxxDetailDialog.vue
View file @
da7590f
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:39:57
-->
...
...
@@ -275,4 +275,4 @@
margin-bottom
:
-1px
;
}
}
</
style
>
\ No newline at end of file
</
style
>
...
...
src/views/workflow/components/qlrCommonTable.vue
View file @
da7590f
...
...
@@ -8,7 +8,7 @@
<lb-table
:column=
"column"
:pagination=
"false"
:key=
"key"
:heightNumSetting=
"true"
:minHeight=
"150"
:data=
"tableDataList"
>
</lb-table>
<addQlr
v-model=
"dialog"
:details=
"details"
:showButton=
"
showButton
"
@
updateDetail=
"handleupdateDetail"
/>
<addQlr
v-model=
"dialog"
:details=
"details"
:showButton=
"
!isDisabled
"
@
updateDetail=
"handleupdateDetail"
/>
</div>
</
template
>
<
script
>
...
...
@@ -44,7 +44,6 @@
dataIndex
:
0
,
dialog
:
false
,
isaddupdate
:
false
,
showButton
:
this
.
$route
.
query
.
viewtype
?
false
:
true
,
isDisabled
:
this
.
disabled
,
details
:
{},
tableDataList
:
[],
...
...
@@ -53,7 +52,7 @@
width
:
'50'
,
renderHeader
:
(
h
,
scope
)
=>
{
return
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
addClick
()
}}
><
/i
>
this
.
isDisabled
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
addClick
()
}}
><
/i
>
}
<
/div
>
},
...
...
@@ -61,7 +60,7 @@
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
this
.
isDisabled
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
<
i
class
=
"el-icon-minus pointer"
onClick
=
{()
=>
{
this
.
deleClick
(
scope
.
$index
,
scope
.
row
)
}}
><
/i
>
}
<
/div
>
...
...
@@ -104,7 +103,7 @@
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
?
<
el
-
button
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
...
...
@@ -239,7 +238,7 @@
/
deep
/
.el-table
th
{
height
:
30px
!important
;
}
/
deep
/
.el-table--small
.el-table__
cell
{
padding
:
3
px
;
/
deep
/
.el-table
.
cell
{
padding
-right
:
12
px
;
}
</
style
>
...
...
src/views/workflow/components/spyj.vue
View file @
da7590f
...
...
@@ -83,11 +83,7 @@
},
},
mounted
()
{
this
.
propsParam
.
isEdit
=
this
.
$parent
.
isEdit
this
.
propsParam
=
this
.
$attrs
;
if
(
this
.
$route
.
query
.
viewtype
)
{
this
.
ableOperation
=
false
}
this
.
ableOperation
=
this
.
$parent
.
ableOperation
;
this
.
list
();
},
methods
:
{
...
...
@@ -98,7 +94,7 @@
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmBusiness"
,
this
.
propsParam
.
bsmBusiness
);
formdata
.
append
(
"bestepid"
,
this
.
$route
.
query
.
bestepid
);
formdata
.
append
(
"ableOperation"
,
this
.
ableOperation
)
//
formdata.append("ableOperation", this.ableOperation)
getSpyjList
(
formdata
).
then
((
res
)
=>
{
this
.
$endLoading
()
if
(
res
.
code
===
200
&&
res
.
result
)
{
...
...
src/views/workflow/components/sqrViewTable.vue
View file @
da7590f
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-17 13:51:09
-->
...
...
@@ -41,7 +41,7 @@
width
:
'50'
,
renderHeader
:
(
h
,
scope
)
=>
{
return
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
handleAdd
()
}}
><
/i
>
this
.
ableOperation
?
'序号'
:
<
i
class
=
"el-icon-plus pointer"
onClick
=
{()
=>
{
this
.
handleAdd
()
}}
><
/i
>
}
<
/div
>
},
...
...
@@ -49,7 +49,7 @@
return
(
<
div
>
{
this
.
$route
.
query
.
viewtype
==
1
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
this
.
ableOperation
?
<
span
>
{
scope
.
$index
+
1
}
<
/span>
:
<
i
class
=
"el-icon-minus pointer"
onClick
=
{()
=>
{
this
.
handleMinus
(
scope
.
$index
,
scope
.
row
)
}}
><
/i
>
}
<
/div
>
...
...
src/views/workflow/components/tdytTable.vue
View file @
da7590f
...
...
@@ -281,7 +281,5 @@
/
deep
/
.el-table
th
{
height
:
30px
!important
;
}
/
deep
/
.el-table--small
.el-table__cell
{
padding
:
5px
;
}
</
style
>
...
...
src/views/workflow/workFrame.vue
View file @
da7590f
...
...
@@ -63,7 +63,7 @@
import
{
getStepFormInfo
,
unClaimTask
}
from
"@/api/workFlow.js"
import
{
getForm
}
from
"./flowform"
import
NoticeBar
from
"@/components/NoticeBar/index"
import
ProcessViewer
from
"./components/processViewer.vue"
//
import ProcessViewer from "./components/processViewer.vue"
// 引入左侧菜单
import
ordinaryMenu
from
"./components/leftmenu/ordinaryMenu.vue"
// 引入左侧菜单
...
...
@@ -73,7 +73,6 @@
components
:
{
selectBdc
,
NoticeBar
,
ProcessViewer
,
ordinaryMenu
,
segmentMenu
},
...
...
src/views/ywbl/slsqxx/cfdj/plcfslxx.vue
View file @
da7590f
...
...
@@ -64,12 +64,12 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封机关:"
prop=
"cfdj.cfjg"
>
<el-input
v-model=
"ruleForm.cfdjList[0].cfjg"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].cfjg"
:disabled=
"
!ableOperation
|| 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.cfdjList[0].cfwh"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].cfwh"
:disabled=
"
!ableOperation
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
<!-- 批量查封状态有多种查封类型,不予展示 -->
...
...
@@ -82,19 +82,19 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封期限:"
prop=
"cfdj.cfqx"
>
<el-input
v-model=
"ruleForm.cfdjList[0].cfqx"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].cfqx"
:disabled=
"
!ableOperation
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封起始时间:"
prop=
"cfdj.cfqssj"
>
<el-date-picker
v-model=
"ruleForm.cfdjList[0].cfqssj"
class=
"width100"
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
></el-date-picker>
value-format=
"yyyy-MM-dd"
:disabled=
"
!ableOperation
|| isJfOperation"
></el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封结束时间:"
prop=
"cfdj.cfjssj"
>
<el-date-picker
v-model=
"ruleForm.cfdjList[0].cfjssj"
class=
"width100"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
type=
"date"
placeholder=
"选择日期"
:disabled=
"
!ableOperation
|| isJfOperation"
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd"
></el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -102,19 +102,19 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封文件:"
prop=
"cfdj.cfwj"
>
<el-input
v-model=
"ruleForm.cfdjList[0].cfwj"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].cfwj"
:disabled=
"
!ableOperation
|| 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.cfdjList[0].cffw"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].cffw"
:disabled=
"
!ableOperation
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"10"
>
<el-col
:span=
"24"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"附记:"
prop=
"cfdj.fj"
>
<el-input
v-model=
"ruleForm.cfdjList[0].fj"
type=
"textarea"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
>
<el-input
v-model=
"ruleForm.cfdjList[0].fj"
type=
"textarea"
:disabled=
"
!ableOperation
|| isJfOperation"
>
</el-input>
</el-form-item>
</el-col>
...
...
@@ -123,7 +123,7 @@
<el-col>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"登记原因:"
prop=
"cfdj.djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
v-model=
"ruleForm.cfdjList[0].djyy"
:disabled=
"
$route.query.viewtype
|| isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| isJfOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -135,23 +135,23 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"8"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"解封机关:"
prop=
"cfdj.jfjg"
>
<el-input
v-model=
"ruleForm.cfdjList[0].jfjg"
:disabled=
"
$route.query.viewtype
"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].jfjg"
:disabled=
"
!ableOperation
"
></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.cfdjList[0].jfwj"
:disabled=
"
$route.query.viewtype
"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].jfwj"
:disabled=
"
!ableOperation
"
></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.cfdjList[0].jfwh"
:disabled=
"
$route.query.viewtype
"
></el-input>
<el-input
v-model=
"ruleForm.cfdjList[0].jfwh"
:disabled=
"
!ableOperation
"
></el-input>
</el-form-item>
</el-col>
</el-row>
</div>
</div>
<el-row
class=
"btn"
v-if=
"
!$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/cfdj/tdslxx.vue
View file @
da7590f
...
...
@@ -152,14 +152,14 @@
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
label=
"查封机关:"
prop=
"cfdj.cfjg"
>
<el-input
v-model=
"ruleForm.cfdj.cfjg"
:disabled=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-date-picker>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit || isJfOperation"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit"
></el-input>
:disabled=
"
!ableOperation
|| 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=
"
$route.query.viewtype
|| ableEdit"
></el-input>
:disabled=
"
!ableOperation
|| ableEdit"
></el-input>
</el-form-item>
</el-col>
</el-row>
</div>
</div>
<el-row
class=
"btn"
v-if=
"
!$route.query.viewtype
&& !ableEdit"
>
<el-row
class=
"btn"
v-if=
"
ableOperation
&& !ableEdit"
>
<el-form-item
:class=
"flag ? 'marginBot0' : ''"
>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/diyaq/slxx.vue
View file @
da7590f
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-11 10:00:43
-->
...
...
@@ -139,7 +139,7 @@
<el-form-item
label=
"被担保主债权数额:"
>
<div
style=
"display:flex"
>
<el-input
v-model=
"ruleForm.diyaq.bdbzzqse"
:disabled=
"!ableOperation"
style=
"width:500%"
></el-input>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"
$route.query.viewtype == '1' &&
!ableOperation"
>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!ableOperation"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -170,7 +170,7 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.diyaq.dbfw"
:disabled=
"
($route.query.viewtype == 1 || ruleForm.sldy.djlx == '300')
&& !ableOperation"
></el-input>
:disabled=
"
ruleForm.sldy.djlx == '300'
&& !ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -184,7 +184,7 @@
<el-row>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -196,7 +196,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -222,13 +222,13 @@
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
"upDateQlrxxList"
:viewtype=
"
$route.query.viewtype
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
:viewtype=
"
!ableOperation
"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
抵押人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
"upDateYwrxxList"
:viewtype=
"
$route.query.viewtype
"
/>
:viewtype=
"
!ableOperation
"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -237,12 +237,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=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
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=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.diyaq.djyy"
>
</el-input>
</el-form-item>
...
...
@@ -250,7 +250,7 @@
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
!$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmitClick()"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/fdcq2/slxx.vue
View file @
da7590f
...
...
@@ -141,7 +141,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
@
change=
"showCZInfo"
<el-radio-group
:disabled=
"!ableOperation"
@
change=
"showCZInfo"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
...
...
@@ -194,14 +194,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.sldy"
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.fdcq2.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/fdcq2/slxx300.vue
View file @
da7590f
...
...
@@ -153,7 +153,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -187,14 +187,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.fdcq2"
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.fdcq2.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/fdcq2/slxxOverview.vue
View file @
da7590f
...
...
@@ -101,7 +101,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1
"
@
change=
"showCZInfo"
<el-radio-group
:disabled=
"
!ableOperation
"
@
change=
"showCZInfo"
v-model=
"ruleForm.sldyList[0].gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
...
...
@@ -138,14 +138,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.slsq"
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1
"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
!ableOperation
"
v-model=
"ruleForm.fdcq2List[0].djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/fwsyq/slxx.vue
View file @
da7590f
...
...
@@ -139,7 +139,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.gyfs"
>
<el-radio
label=
"1"
>
单独所有
</el-radio>
<el-radio
label=
"2"
>
共同共有
</el-radio>
<el-radio
label=
"3"
>
按份所有
</el-radio>
...
...
@@ -171,13 +171,13 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/jsydsyq/slxx.vue
View file @
da7590f
...
...
@@ -138,7 +138,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 0 &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -165,16 +165,14 @@
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.sldy.gyfs"
/>
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
v-if=
"ruleForm.ywrList && ruleForm.ywrList.length > 0"
>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"!ableOperation"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
:viewtype=
"$route.query.viewtype"
/>
<qlrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"!ableOperation"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
<div
class=
"slxx_title title-block"
>
...
...
@@ -184,14 +182,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.jsydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/jsydsyq/slxx300.vue
View file @
da7590f
...
...
@@ -121,7 +121,7 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.jsydsyq.fj"
:disabled=
"
$route.query.viewtype=='1' &&
!ableOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.jsydsyq.fj"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -143,7 +143,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype=='1' &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -168,8 +168,7 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
'upDateQlrxxList'
:viewtype=
"$route.query.viewtype=='1'"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
'upDateQlrxxList'
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -177,14 +176,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype=='1' &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.jsydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype=='1' &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/nydsyq/slxx.vue
View file @
da7590f
...
...
@@ -165,7 +165,7 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"
$route.query.viewtype &&
!ableOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -176,7 +176,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
v-model=
"ruleForm.sldy.gyfs"
:disabled=
"
$route.query.viewtype&&
!ableOperation"
>
<el-radio-group
v-model=
"ruleForm.sldy.gyfs"
:disabled=
"!ableOperation"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -201,14 +201,12 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<div
class=
"slxx_title title-block"
>
家庭成员
<div
class=
"triangle"
></div>
</div>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
@
upDateJtcyList=
"upDateJtcyList"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
@
upDateJtcyList=
"upDateJtcyList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -216,14 +214,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype &&
ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
!
ableOperation"
v-model=
"ruleForm.nydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"
!$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -327,4 +325,4 @@
<
style
scoped
lang=
'scss'
>
@import
"~@/styles/public.scss"
;
@import
"~@/styles/slxx/slxx.scss"
;
</
style
>
\ No newline at end of file
</
style
>
...
...
src/views/ywbl/slsqxx/nydsyq/slxx200.vue
View file @
da7590f
...
...
@@ -165,7 +165,7 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.nydsyq.fj"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -176,7 +176,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -201,20 +201,17 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"!ableOperation"
:viewtype=
"$route.query.viewtype"
/>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"!ableOperation"
/>
<div
class=
"slxx_title title-block"
>
家庭成员
<div
class=
"triangle"
></div>
</div>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
:disabled=
"!ableOperation"
@
upDateJtcyList=
"upDateJtcyList"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<JtcyTable
:tableData=
"ruleForm.jtcyList"
:disabled=
"!ableOperation"
@
upDateJtcyList=
"upDateJtcyList"
:gyfs=
"ruleForm.slywxx.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -222,14 +219,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.nydsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -338,4 +335,4 @@
<
style
scoped
lang=
'scss'
>
@import
"~@/styles/public.scss"
;
@import
"~@/styles/slxx/slxx.scss"
;
</
style
>
\ No newline at end of file
</
style
>
...
...
src/views/ywbl/slsqxx/tdsyq/slxx.vue
View file @
da7590f
...
...
@@ -6,8 +6,15 @@
<
template
>
<!-- 受理信息 -->
<div
class=
"slxx"
>
<el-form
:model=
"ruleForm"
:rules=
"rules"
class=
"loadingtext"
ref=
"ruleForm"
:label-position=
"flag ? 'top' : ''"
:inline=
"flag"
label-width=
"120px"
>
<el-form
:model=
"ruleForm"
:rules=
"rules"
class=
"loadingtext"
ref=
"ruleForm"
:label-position=
"flag ? 'top' : ''"
:inline=
"flag"
label-width=
"120px"
>
<div
class=
"slxx_con"
v-if=
"isShow"
:class=
"flag ? 'formMarginBot0' : ''"
>
<div
class=
"slxx_title title-block"
>
受理信息
...
...
@@ -81,7 +88,10 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"面积单位:"
>
<el-input
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
></el-input>
<el-input
v-model=
"ruleForm.tdsyq.mjdw"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -89,10 +99,22 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"农用地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.nydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
style=
"width:20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
<el-input
v-model=
"ruleForm.tdsyq.nydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
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>
...
...
@@ -101,10 +123,22 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"耕地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.gdmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
style=
"width:20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
<el-input
v-model=
"ruleForm.tdsyq.gdmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
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>
...
...
@@ -113,10 +147,22 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"林地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.ldmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
style=
"width:20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
<el-input
v-model=
"ruleForm.tdsyq.ldmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
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>
...
...
@@ -127,10 +173,22 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"草地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.cdmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
style=
"width:20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
<el-input
v-model=
"ruleForm.tdsyq.cdmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
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>
...
...
@@ -139,10 +197,22 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"其他农用地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.qtnydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
style=
"width:20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
<el-input
v-model=
"ruleForm.tdsyq.qtnydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
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>
...
...
@@ -151,10 +221,22 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"建筑使用面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.jsydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
style=
"width:20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
<el-input
v-model=
"ruleForm.tdsyq.jsydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
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>
...
...
@@ -165,10 +247,22 @@
<el-col
:span=
"8"
>
<el-form-item
label=
"未利用地面积:"
>
<div
class=
"flex"
>
<el-input
v-model=
"ruleForm.tdsyq.wlydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null">
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
style=
"width:20%"
>
<el-option
v-for=
"item in dictData['A7']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
<el-input
v-model=
"ruleForm.tdsyq.wlydmj"
:disabled=
"!ableOperation"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,3})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"mjdw"
:disabled=
"!ableOperation"
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>
...
...
@@ -181,8 +275,9 @@
</div>
<tdytTable
:tableData=
"ruleForm.tdytqxList"
:ableOperation=
"ableOperation"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
:ableOperation=
"ableOperation"
@
upDateTdytxxList=
"upDateTdytxxList"
/>
<div
class=
"slxx_title title-block"
>
权利人信息
<div
class=
"triangle"
></div>
...
...
@@ -190,7 +285,10 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"$route.query.viewtype == 0"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -200,31 +298,56 @@
</el-col>
<el-col
:span=
"6"
v-show=
"ruleForm.sldy.gyfs == '1'"
>
<el-form-item
label=
"是否分别持证:"
>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!ableOperation"
>
<el-radio
:label=
1
>
是
</el-radio>
<el-radio
:label=
0
>
否
</el-radio>
<el-radio-group
v-model=
"ruleForm.sldy.sqfbcz"
:disabled=
"!ableOperation"
>
<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-show=
"ruleForm.sldy.sqfbcz == '0'&&ruleForm.sldy.gyfs == '1'"
>
<el-col
:span=
"6"
v-show=
"ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'"
>
<el-form-item
label=
"持证人:"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!ableOperation"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
:label=
"item.sqrmc"
:value=
"item.zjh"
>
<el-select
v-model=
"ruleForm.czr"
placeholder=
"持证人"
:disabled=
"!ableOperation"
>
<el-option
v-for=
"item in czrOptions"
:key=
"item.zjh"
:label=
"item.sqrmc"
:value=
"item.zjh"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
:disabled=
"!ableOperation"
@
upDateQlrxxList=
"upDateQlrxxList"
:key=
"key"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
v-if=
"ruleForm.ywrList && ruleForm.ywrList.length > 0"
>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"!ableOperation"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
:viewtype=
"$route.query.viewtype"
/>
<qlrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"!ableOperation"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
<div
class=
"slxx_title title-block"
>
...
...
@@ -234,14 +357,18 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.tdsyq.djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.tdsyq.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
@@ -250,134 +377,135 @@
</div>
</
template
>
<
script
>
import
{
mapGetters
}
from
"vuex"
import
{
Init
,
saveData
}
from
"@/api/workflow/tdsyqFlow.js"
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
import
qlrCommonTable
from
"@/views/workflow/components/qlrCommonTable"
export
default
{
components
:
{
qlrCommonTable
,
tdytTable
},
mounted
()
{
this
.
ableOperation
=
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
);
Init
(
formdata
).
then
((
res
)
=>
{
this
.
$nextTick
(()
=>
{
that
.
ruleForm
=
res
.
result
;
that
.
$endLoading
();
that
.
isShow
=
true
;
this
.
czrOptions
=
this
.
ruleForm
.
qlrList
;
})
})
},
computed
:
{
...
mapGetters
([
"dictData"
,
"flag"
])
},
data
()
{
return
{
mjdw
:
'1'
,
value2
:
{
id
:
"520000198407304275"
,
user
:
"史平"
},
props
:
{
label
:
'user'
,
value
:
'id'
,
keyword
:
"keyword"
},
//表单是否可操作
ableOperation
:
true
,
key
:
0
,
isShow
:
false
,
disabled
:
true
,
czrOptions
:
[],
ruleForm
:
{},
//传递参数
propsParam
:
{},
rules
:
{}
}
},
methods
:
{
// 更新土地用途信息
upDateTdytxxList
(
val
)
{
this
.
ruleForm
.
tdytqxList
&&
(
this
.
ruleForm
.
tdytqxList
=
_
.
cloneDeep
(
val
));
this
.
key
++
;
},
// 更新权利人信息
upDateQlrxxList
(
val
)
{
this
.
ruleForm
.
qlrList
&&
(
this
.
ruleForm
.
qlrList
=
_
.
cloneDeep
(
val
))
import
{
mapGetters
}
from
"vuex"
;
import
{
Init
,
saveData
}
from
"@/api/workflow/tdsyqFlow.js"
;
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
import
qlrCommonTable
from
"@/views/workflow/components/qlrCommonTable"
;
export
default
{
components
:
{
qlrCommonTable
,
tdytTable
},
mounted
()
{
this
.
ableOperation
=
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
);
Init
(
formdata
).
then
((
res
)
=>
{
this
.
$nextTick
(()
=>
{
that
.
ruleForm
=
res
.
result
;
that
.
$endLoading
();
that
.
isShow
=
true
;
this
.
czrOptions
=
this
.
ruleForm
.
qlrList
;
this
.
key
++
});
});
},
computed
:
{
...
mapGetters
([
"dictData"
,
"flag"
]),
},
data
()
{
return
{
mjdw
:
"1"
,
value2
:
{
id
:
"520000198407304275"
,
user
:
"史平"
,
},
// 更新义务人信息
upDateYwrxxList
(
val
)
{
this
.
ruleForm
.
ywrList
&&
(
this
.
ruleForm
.
ywrList
=
_
.
cloneDeep
(
val
))
this
.
key
++
props
:
{
label
:
"user"
,
value
:
"id"
,
keyword
:
"keyword"
,
},
onSubmit
()
{
if
(
this
.
ruleForm
.
qlrList
.
length
==
0
)
{
//表单是否可操作
ableOperation
:
true
,
key
:
0
,
isShow
:
false
,
disabled
:
true
,
czrOptions
:
[],
ruleForm
:
{},
//传递参数
propsParam
:
{},
rules
:
{},
};
},
methods
:
{
// 更新土地用途信息
upDateTdytxxList
(
val
)
{
this
.
ruleForm
.
tdytqxList
&&
(
this
.
ruleForm
.
tdytqxList
=
_
.
cloneDeep
(
val
));
this
.
key
++
;
},
// 更新权利人信息
upDateQlrxxList
(
val
)
{
this
.
ruleForm
.
qlrList
&&
(
this
.
ruleForm
.
qlrList
=
_
.
cloneDeep
(
val
));
this
.
czrOptions
=
this
.
ruleForm
.
qlrList
;
this
.
key
++
;
},
// 更新义务人信息
upDateYwrxxList
(
val
)
{
this
.
ruleForm
.
ywrList
&&
(
this
.
ruleForm
.
ywrList
=
_
.
cloneDeep
(
val
));
this
.
key
++
;
},
onSubmit
()
{
if
(
this
.
ruleForm
.
qlrList
.
length
==
0
)
{
this
.
$message
({
showClose
:
true
,
message
:
"请确认权利人信息"
,
type
:
"error"
,
});
return
false
;
}
if
(
this
.
ruleForm
.
sldy
.
gyfs
==
"0"
)
{
if
(
this
.
ruleForm
.
qlrList
.
length
>
1
)
{
this
.
$message
({
showClose
:
true
,
message
:
"
请确认权利人信息
"
,
message
:
"
共有方式:单独所有,权利人只能是一个人
"
,
type
:
"error"
,
});
return
false
;
}
if
(
this
.
ruleForm
.
sldy
.
gyfs
==
"0"
)
{
if
(
this
.
ruleForm
.
qlrList
.
length
>
1
)
{
this
.
$message
({
showClose
:
true
,
message
:
"共有方式:单独所有,权利人只能是一个人"
,
type
:
"error"
,
});
return
false
;
}
this
.
ruleForm
.
qlrList
[
0
].
sfczr
=
"1"
;
}
if
(
this
.
ruleForm
.
sldy
.
gyfs
==
"1"
)
{
//是否分别持证
if
(
this
.
ruleForm
.
sldy
.
sqfbcz
==
'1'
)
{
//是
this
.
ruleForm
.
qlrList
.
forEach
((
item
,
index
)
=>
{
item
.
sfczr
=
"1"
});
}
else
{
this
.
ruleForm
.
qlrList
.
forEach
((
item
,
index
)
=>
{
if
(
item
.
zjh
==
this
.
ruleForm
.
czr
)
{
item
.
sfczr
=
"1"
}
else
{
item
.
sfczr
=
"0"
}
})
}
this
.
ruleForm
.
qlrList
[
0
].
sfczr
=
"1"
;
}
if
(
this
.
ruleForm
.
sldy
.
gyfs
==
"1"
)
{
//是否分别持证
if
(
this
.
ruleForm
.
sldy
.
sqfbcz
==
"1"
)
{
//是
this
.
ruleForm
.
qlrList
.
forEach
((
item
,
index
)
=>
{
item
.
sfczr
=
"1"
;
});
}
else
{
this
.
ruleForm
.
qlrList
.
forEach
((
item
,
index
)
=>
{
if
(
item
.
zjh
==
this
.
ruleForm
.
czr
)
{
item
.
sfczr
=
"1"
;
}
else
{
item
.
sfczr
=
"0"
;
}
});
}
saveData
(
this
.
ruleForm
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
({
showClose
:
true
,
message
:
"保存成功!"
,
type
:
"success"
})
this
.
$store
.
dispatch
(
'user/refreshPage'
,
true
);
}
else
{
this
.
$message
({
showClose
:
true
,
message
:
res
.
message
,
type
:
"error"
})
}
})
}
}
}
saveData
(
this
.
ruleForm
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
({
showClose
:
true
,
message
:
"保存成功!"
,
type
:
"success"
,
});
this
.
$store
.
dispatch
(
"user/refreshPage"
,
true
);
}
else
{
this
.
$message
({
showClose
:
true
,
message
:
res
.
message
,
type
:
"error"
,
});
}
});
},
},
};
</
script
>
<
style
scoped
lang=
'scss'
>
@import
"~@/styles/public.scss"
;
@import
"~@/styles/slxx/slxx.scss"
;
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
@import
"~@/styles/slxx/slxx.scss"
;
</
style
>
...
...
src/views/ywbl/slsqxx/ygdj/slxx.vue
View file @
da7590f
...
...
@@ -111,7 +111,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"
!ableOperation
"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -120,13 +120,13 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:tableData=
"ruleForm.qlrList"
<qlrCommonTable
@
upDateQlrxxList=
"upDateQlrxxList"
:
disabled=
"!ableOperation"
:
tableData=
"ruleForm.qlrList"
:gyfs=
"ruleForm.qlxx.gyfs"
/>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:tableData=
"ruleForm.ywrList"
<qlrCommonTable
@
upDateQlrxxList=
"upDateYwrxxList"
:
disabled=
"!ableOperation"
:
tableData=
"ruleForm.ywrList"
:gyfs=
"ruleForm.qlxx.gyfs"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -135,14 +135,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1
"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
!ableOperation
"
v-model=
"ruleForm.ygdj.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/ygdj/slxx300.vue
View file @
da7590f
...
...
@@ -114,7 +114,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
v-if=
"ruleForm.qlxx"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -138,14 +138,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.ygdj.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/ygdy/slxx.vue
View file @
da7590f
...
...
@@ -136,13 +136,13 @@
<el-col
:span=
"16"
>
<el-form-item
label=
"是否存在禁止或限制转让抵押不动产的约定:"
>
<el-input
v-model=
"ruleForm.ygdj.sfczjzhxz"
:disabled=
"
($route.query.viewtype == 1 || ruleForm.sldy.djlx == '300')
&& !ableOperation"
></el-input>
:disabled=
"
ruleForm.sldy.djlx == '300'
&& !ableOperation"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.ygdj.dbfw"
:disabled=
"
($route.query.viewtype == 1 || ruleForm.sldy.djlx == '300')
&& !ableOperation"
></el-input>
:disabled=
"
ruleForm.sldy.djlx == '300'
&& !ableOperation"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -150,7 +150,7 @@
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.ygdj.fj"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.ygdj.fj"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -161,7 +161,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -185,14 +185,14 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
label=
"登记原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.ygdj.djyy"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/zjgcdy/batchSlxx.vue
View file @
da7590f
...
...
@@ -83,7 +83,7 @@
<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=
"
$route.query.viewtype == '1' &&
!ableOperation"
>
<el-select
v-model=
"ruleForm.diyaqList[0].jedw"
:disabled=
"!ableOperation"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -93,7 +93,7 @@
<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=
"
$route.query.viewtype == '1' &&
!ableOperation"
>
<el-select
v-model=
"ruleForm.diyaqList[0].jedw"
:disabled=
"!ableOperation"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -118,7 +118,7 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.diyaqList[0].dbfw"
:disabled=
"
($route.query.viewtype == 1 || ruleForm.sldyList[0].djlx == '300')
&& !ableOperation"
></el-input>
:disabled=
"
ruleForm.sldyList[0].djlx == '300'
&& !ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -132,7 +132,7 @@
<el-row>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaqList[0].fj"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaqList[0].fj"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -144,7 +144,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.sldyList[0].gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldyList[0].gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -169,14 +169,12 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.sldyList[0].gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.sldyList[0].gyfs"
/>
<div
class=
"slxx_title title-block"
>
抵押人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"!ableOperation"
:viewtype=
"$route.query.viewtype"
/>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"!ableOperation"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -185,12 +183,12 @@
<el-row
:gutter=
"10"
>
<el-col>
<el-form-item
v-if=
"ruleForm.sldyList[0].djlx == '400'"
label=
"注销抵押原因:"
prop=
"djyy"
>
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
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=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
v-model=
"ruleForm.diyaqList[0].djyy"
>
</el-input>
</el-form-item>
...
...
@@ -198,7 +196,7 @@
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmitClick()"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/slsqxx/zjgcdy/slxx.vue
View file @
da7590f
...
...
@@ -127,7 +127,7 @@
<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=
"
$route.query.viewtype == '1' &&
!ableOperation"
>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!ableOperation"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -137,7 +137,7 @@
<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=
"
$route.query.viewtype == '1' &&
!ableOperation"
>
<el-select
v-model=
"ruleForm.diyaq.jedw"
:disabled=
"!ableOperation"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
</el-select>
...
...
@@ -162,7 +162,7 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"担保范围:"
>
<el-input
v-model=
"ruleForm.diyaq.dbfw"
:disabled=
"
($route.query.viewtype == 1 || ruleForm.sldy.djlx == '300')
&& !ableOperation"
></el-input>
:disabled=
"
ruleForm.sldy.djlx == '300'
&& !ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -176,7 +176,7 @@
<el-row>
<el-col>
<el-form-item
label=
"附记:"
prop=
"fj"
>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
></el-input>
<el-input
type=
"textarea"
v-model=
"ruleForm.diyaq.fj"
:disabled=
"!ableOperation"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -188,7 +188,7 @@
<el-row
:gutter=
"10"
>
<el-col
:span=
"14"
>
<el-form-item
label=
"共有方式:"
>
<el-radio-group
:disabled=
"
$route.query.viewtype == 1 &&
!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio-group
:disabled=
"!ableOperation"
v-model=
"ruleForm.sldy.gyfs"
>
<el-radio
label=
"0"
>
单独所有
</el-radio>
<el-radio
label=
"1"
>
共同共有
</el-radio>
<el-radio
label=
"2"
>
按份所有
</el-radio>
...
...
@@ -213,14 +213,12 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:viewtype=
"$route.query.viewtype"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<qlrCommonTable
:tableData=
"ruleForm.qlrList"
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"!ableOperation"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
class=
"slxx_title title-block"
>
抵押人信息
<div
class=
"triangle"
></div>
</div>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"!ableOperation"
:viewtype=
"$route.query.viewtype"
/>
<qlrCommonTable
:tableData=
"ruleForm.ywrList"
@
upDateQlrxxList=
"upDateYwrxxList"
:disabled=
"!ableOperation"
/>
<div
class=
"slxx_title title-block"
>
登记原因
...
...
@@ -229,12 +227,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=
"
$route.query.viewtype == 1 &&
!ableOperation"
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation"
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=
"
$route.query.viewtype == 1 &&
!ableOperation "
<el-input
class=
"textArea"
type=
"textarea"
:disabled=
"!ableOperation "
v-model=
"ruleForm.diyaq.djyy"
>
</el-input>
</el-form-item>
...
...
@@ -242,7 +240,7 @@
</el-row>
</div>
<el-row
class=
"btn"
v-if=
"!
$route.query.viewtype &&
ableOperation"
>
<el-row
class=
"btn"
v-if=
"!ableOperation"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmitClick()"
>
保存
</el-button>
</el-form-item>
...
...
src/views/ywbl/ybx/ybx.vue
View file @
da7590f
...
...
@@ -211,9 +211,7 @@
"/workFrameView?bsmSlsq="
+
item
.
bsmSlsq
+
"&bestepid="
+
item
.
bestepid
+
"&bsmBusiness="
+
"&viewtype=1"
item
.
bestepid
);
window
.
open
(
href
,
`workFrameView
${
item
.
bsmSlsq
}
`
);
}
...
...
Please
register
or
sign in
to post a comment