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
bcf4fcfe
authored
2023-06-19 16:58:19 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
登记簿菜单调整
1 parent
fbb72e1a
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
439 additions
and
124 deletions
src/image/icons/svg/addQlxx.svg
src/views/djbworkflow/djbBook/components/qllxDailog.vue
src/views/djbworkflow/flowform.js
src/views/djbworkflow/mixin/index.js
src/views/djbworkflow/workFrame.vue
src/views/registerBook/cfdj.vue
src/views/registerBook/diyaq.vue
src/views/registerBook/diyiq.vue
src/views/registerBook/fdcq1.vue
src/views/registerBook/fdcq2.vue
src/views/registerBook/jsydsyq.vue
src/views/registerBook/nydsyq.vue
src/views/registerBook/ygdj.vue
src/views/registerBook/yydj.vue
src/image/icons/svg/addQlxx.svg
0 → 100644
View file @
bcf4fcf
<svg
t=
"1661331325273"
class=
"icon"
viewBox=
"0 0 1024 1024"
version=
"1.1"
xmlns=
"http://www.w3.org/2000/svg"
p-id=
"2167"
width=
"200"
height=
"200"
><path
d=
"M521.309091 158.254545a27.927273 27.927273 0 0 1 27.927273 27.927273v586.472727a27.927273 27.927273 0 0 1-27.927273 27.927273h-372.363636a83.781818 83.781818 0 0 1-83.781819-83.781818V242.036364a83.781818 83.781818 0 0 1 83.781819-83.781819z m400.290909 0a83.781818 83.781818 0 0 1 83.502545 76.893091l0.279273 6.888728v474.763636a83.781818 83.781818 0 0 1-76.893091 83.502545l-6.888727 0.279273h-260.654545a27.927273 27.927273 0 0 1-4.51491-55.482182L660.945455 744.727273h260.654545a27.927273 27.927273 0 0 0 27.554909-23.412364l0.372364-4.514909V242.036364a27.927273 27.927273 0 0 0-23.412364-27.554909L921.6 214.109091h-260.654545a27.927273 27.927273 0 0 1-4.51491-55.482182L660.945455 158.254545h260.654545z m-428.218182 55.854546H148.945455a27.927273 27.927273 0 0 0-27.55491 23.412364L121.018182 242.036364v474.763636a27.927273 27.927273 0 0 0 27.927273 27.927273h344.436363V214.109091z"
p-id=
"2168"
></path></svg>
\ No newline at end of file
src/views/djbworkflow/djbBook/components/qllxDailog.vue
0 → 100644
View file @
bcf4fcf
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-09 09:20:10
-->
<
template
>
<el-dialog
:close-on-click-modal=
"false"
title=
"选择权利类型"
class=
"qllxdialog"
:visible
.
sync=
"dialogVisible"
custom-class=
"insetDialog"
append-to-body
width=
"20%"
>
<el-select
v-model=
"qllxvalue"
placeholder=
"请选择"
>
<el-option
v-for=
"item in options"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
<!--
<el-radio-group
v-model=
"radio"
>
<el-radio
:label=
"1"
>
111
</el-radio>
<el-radio
:label=
"2"
>
111
</el-radio>
</el-radio-group>
-->
<el-button
type=
"primary"
@
click=
"handleSubmit"
>
确定
</el-button>
<el-button
type=
"primary"
@
click=
"closeDialog"
>
取消
</el-button>
</el-dialog>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
dialogVisible
:
false
,
options
:
[
{
value
:
"选项1"
,
label
:
"抵押权"
,
},
{
value
:
"选项2"
,
label
:
"地役权"
,
},
{
value
:
"选项3"
,
label
:
"预告登记"
,
},
{
value
:
"选项4"
,
label
:
"异议登记"
,
},
{
value
:
"选项5"
,
label
:
"查封登记"
,
},
],
qllxvalue
:
""
,
radio
:
3
,
qllxobj
:{
qllx
:
""
,
bsmQlxx
}
};
},
methods
:
{
closeDialog
()
{
this
.
dialogVisible
=
false
},
handleSubmit
()
{
let
qllxobj
=
{
qllx
:
this
.
value
,
bsmQlxx
:
this
.
value
}
// this.$parent.addRepairRecord(qllxobj)
},
},
};
</
script
>
<
style
scoped
lang=
"scss"
>
.qllxdialog
{
margin-top
:
200px
;
/deep/.el-dialog__body{
margin-top
:
10px
;
height
:
100px
;
}
.el-button
{
margin-top
:
10px
;
margin-left
:
20px
;
}
}
</
style
>
src/views/djbworkflow/flowform.js
View file @
bcf4fcf
...
...
@@ -56,46 +56,79 @@ export function getForm (tabName, djywbm) {
// case "zdt":
// form = require("@/views/djbworkflow/components/zdt.vue");
// break;
// 宗地基本信息
case
"zdjbxx"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/zdjbxx.vue"
);
form
=
require
(
"@/views/register
Book/zdjbxx.vue"
);
break
;
// 查封登记
case
"cfdj"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/cfdj.vue"
);
form
=
require
(
"@/views/register
Book/cfdj.vue"
);
break
;
// 国有建设用地使用权
case
"jsydsyq"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/jsydsyq.vue"
);
form
=
require
(
"@/views/register
Book/jsydsyq.vue"
);
break
;
// 农用地使用权
case
"nydsyq"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/nydsyq.vue"
);
form
=
require
(
"@/views/register
Book/nydsyq.vue"
);
break
;
// 房屋产权2
case
"fdcq2"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/fdcq2.vue"
);
form
=
require
(
"@/views/register
Book/fdcq2.vue"
);
break
;
// 抵押权
case
"diyaq"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/diyaq.vue"
);
form
=
require
(
"@/views/register
Book/diyaq.vue"
);
break
;
// 预告登记
case
"ygdj"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/ygdj.vue"
);
form
=
require
(
"@/views/register
Book/ygdj.vue"
);
break
;
// 地役权
case
"diyiq"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/diyiq.vue"
);
form
=
require
(
"@/views/register
Book/diyiq.vue"
);
break
;
// 登记簿封面
case
"djbfm"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/djbfm.vue"
);
form
=
require
(
"@/views/register
Book/djbfm.vue"
);
break
;
// 异议登记
case
"yydj"
:
form
=
require
(
"@/views/djbworkflow/djb
Book/yydj.vue"
);
form
=
require
(
"@/views/register
Book/yydj.vue"
);
break
;
// // 宗地基本信息
// case "zdjbxx":
// form = require("@/views/djbworkflow/djbBook/zdjbxx.vue");
// break;
// // 查封登记
// case "cfdj":
// form = require("@/views/djbworkflow/djbBook/cfdj.vue");
// break;
// // 国有建设用地使用权
// case "jsydsyq":
// form = require("@/views/djbworkflow/djbBook/jsydsyq.vue");
// break;
// // 农用地使用权
// case "nydsyq":
// form = require("@/views/djbworkflow/djbBook/nydsyq.vue");
// break;
// // 房屋产权2
// case "fdcq2":
// form = require("@/views/djbworkflow/djbBook/fdcq2.vue");
// break;
// // 抵押权
// case "diyaq":
// form = require("@/views/djbworkflow/djbBook/diyaq.vue");
// break;
// // 预告登记
// case "ygdj":
// form = require("@/views/djbworkflow/djbBook/ygdj.vue");
// break;
// // 地役权
// case "diyiq":
// form = require("@/views/djbworkflow/djbBook/diyiq.vue");
// break;
// // 登记簿封面
// case "djbfm":
// form = require("@/views/djbworkflow/djbBook/djbfm.vue");
// break;
// // 异议登记
// case "yydj":
// form = require("@/views/djbworkflow/djbBook/yydj.vue");
// break;
// 受理信息
case
"slxx"
:
form
=
require
(
"@/views/djbworkflow/djbBook/components/blxxtabs/fwsyq/slxx.vue"
);
...
...
src/views/djbworkflow/mixin/index.js
View file @
bcf4fcf
...
...
@@ -80,7 +80,7 @@ export default {
break
;
case
"B2"
:
//材料分屏按钮
this
.
splitScreen
=
this
.
splitScreen
?
false
:
true
;
this
.
$store
.
dispatch
(
"app/settScreen"
,
this
.
splitScreen
);
this
.
$store
.
dispatch
(
"app/set
1
tScreen"
,
this
.
splitScreen
);
if
(
this
.
splitScreen
)
{
//如果当前选项卡为材料信息内容,递减到上一个选项卡内容
if
(
this
.
tabName
==
this
.
clxxTab
.
value
)
{
...
...
@@ -100,59 +100,44 @@ export default {
case
"B4"
:
this
.
$popupDialog
(
"登记簿详情"
,
"registerBook/djbFrame"
,
this
.
currentSelectProps
,
'80%'
,
true
)
break
;
case
"B5"
:
const
h
=
this
.
$createElement
;
this
.
$msgbox
({
title
:
'消息'
,
message
:
h
(
'p'
,
null
,
[
h
(
'span'
,
null
,
'内容可以是 '
),
h
(
'i'
,
{
style
:
'color: teal'
},
'VNode'
)
]),
showCancelButton
:
true
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
beforeClose
:
(
action
,
instance
,
done
)
=>
{
if
(
action
===
'confirm'
)
{
instance
.
confirmButtonLoading
=
true
;
instance
.
confirmButtonText
=
'执行中...'
;
setTimeout
(()
=>
{
done
();
setTimeout
(()
=>
{
instance
.
confirmButtonLoading
=
false
;
},
300
);
},
3000
);
}
else
{
done
();
}
}
}).
then
(
action
=>
{
this
.
addRepairRecord
()
this
.
$message
({
type
:
'info'
,
message
:
'action: '
+
action
});
});
// this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", {
// bsmSlsq: this.bsmSlsq,
// entryType: '1'
// }, '65%', true)
// this.$confirm('此操作将新增一条补录信息, 是否继续?', '提示', {
// case "B5":
// const h = this.$createElement;
// this.$msgbox({
// title: '请选择新增权利类型',
// message: h('p', null, [
// h('span', null, '内容可以是 '),
// h('el-button', { style: 'color: teal' }, 'VNode'),
// h('i', { style: 'color: teal' }, 'VNode')
// ]),
// showCancelButton: true,
// confirmButtonText: '确定',
// cancelButtonText: '取消',
// type: 'warning'
// }).then(() => {
// beforeClose: (action, instance, done) => {
// if (action === 'confirm') {
// instance.confirmButtonLoading = true;
// instance.confirmButtonText = '执行中...';
// setTimeout(() => {
// done();
// setTimeout(() => {
// instance.confirmButtonLoading = false;
// }, 300);
// }, 3000);
// } else {
// done();
// }
// }
// }).then(action => {
// this.addRepairRecord()
// this.$message({
// type: 'success',
// message: '补录成功!'
// });
// }).catch(() => {
// this.$message({
// type: 'info',
// message: '取消编辑'
// message: 'action: ' + action
// });
// });
// break;
case
"B5"
:
// this.$popupDialog("选择新增权力类型", "djbworkflow/djbBook/components/qllxcloseDailog", this.currentSelectProps, '50%', true)
this
.
$refs
.
qllxlist
.
dialogVisible
=
true
break
;
case
"B6"
:
//根据编号获取对应信息
...
...
src/views/djbworkflow/workFrame.vue
View file @
bcf4fcf
...
...
@@ -62,6 +62,8 @@
</div>
</div>
</div>
<!-- 新增补录信息勾选权利类型 -->
<qllxDailog
ref=
"qllxlist"
/>
</div>
</
template
>
<
style
scoped
lang=
"scss"
>
...
...
@@ -70,18 +72,18 @@
</
style
>
<
script
>
import
WorkFlow
from
"./mixin/index"
;
import
{
getForm
}
from
"./flowform"
import
{
getForm
}
from
"./flowform"
;
import
NoticeBar
from
"@/components/NoticeBar/index"
;
import
{
unClaimTask
}
from
"@/api/ywbl.js"
;
import
ProcessViewer
from
"./components/processViewer.vue"
;
// 引入左侧菜单
import
ordinaryMenu
from
"./components/leftmenu/ordinaryMenu.vue"
;
import
qllxDailog
from
"./djbBook/components/qllxDailog"
;
import
selectBdc
from
"@/views/ywbl/ywsq/selectBdc.vue"
;
import
{
loadTreeData
,
getNode
}
from
"./components/leftmenu/djbFrameData.js"
;
// 登记簿数据信息
import
{
addRepairRecord
}
from
"@/api/djbbl.js"
import
{
addRepairRecord
}
from
"@/api/djbbl.js"
;
// 获取权利类型数组
import
{
getQllxByBdcdyid
}
from
"@/api/djbbl.js"
import
{
getQllxByBdcdyid
}
from
"@/api/djbbl.js"
;
import
{
getBdcqljqtsx
}
from
"@/api/registerBook.js"
;
export
default
{
...
...
@@ -90,6 +92,7 @@ export default {
NoticeBar
,
ProcessViewer
,
ordinaryMenu
,
qllxDailog
,
},
mixins
:
[
WorkFlow
],
data
()
{
...
...
@@ -104,8 +107,10 @@ export default {
qllx
:
this
.
$route
.
query
.
qllx
,
//设置那个表单选中
tabName
:
""
,
// 弹框显示
dialogVisible
:
true
,
// 权利类型数组
qllxlist
:[],
qllxlist
:
[],
//表单集合
tabList
:
[],
//选择加载哪一个组件
...
...
@@ -118,37 +123,35 @@ export default {
clxxTab
:
{},
//页面监听时间
_beforeUnload_time
:
""
,
treedata
:{},
tabdata
:[],
defaultNode
:{}
};
},
mounted
()
{
treedata
:
{},
tabdata
:
[],
defaultNode
:
{},
};
},
mounted
()
{},
methods
:
{
getQllxByBdcdyid
(){
console
.
log
(
"this.currentSelectProps.bdcdyid"
,
this
.
currentSelectProps
.
bdcdyid
);
getQllxByBdcdyid
({
bdcdyid
:
this
.
currentSelectProps
.
bdcdyid
}).
then
(
(
res
)
=>
{
getQllxByBdcdyid
()
{
getQllxByBdcdyid
({
bdcdyid
:
this
.
currentSelectProps
.
bdcdyid
}).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
console
.
log
(
"Qllxlist"
,
res
);
console
.
log
(
"Qllxlist"
,
res
);
}
});
}
);
},
// 获取右侧选项卡
getCurrentSelectProps
(
val
)
{
this
.
currentSelectProps
=
val
if
(
this
.
currentSelectProps
.
bsmRepair
)
{
this
.
tabset
(
val
)
}
else
{
this
.
getdjblist
()
getCurrentSelectProps
(
val
)
{
this
.
currentSelectProps
=
val
;
if
(
this
.
currentSelectProps
.
bsmRepair
)
{
this
.
tabset
(
val
);
}
else
{
this
.
getdjblist
();
}
},
// 获取渲染登记簿列表
getdjblist
(){
getdjblist
()
{
getBdcqljqtsx
({
bdcdyid
:
this
.
currentSelectProps
.
bdcdyid
,
bdcdyh
:
this
.
currentSelectProps
.
bdcdyh
,
...
...
@@ -156,32 +159,36 @@ export default {
if
(
res
.
code
===
200
)
{
this
.
treedata
=
loadTreeData
(
res
.
result
,
this
.
bdcdyh
);
this
.
$nextTick
(
function
()
{
console
.
log
(
"this.currentSelectProps.qllx"
,
this
.
currentSelectProps
);
this
.
defaultNode
=
getNode
(
this
.
currentSelectProps
.
qllx
,
{
linShi
:
0
,
xianShi
:
0
,
liShi
:
0
},
""
);
console
.
log
(
"this.defaultNode"
,
this
.
defaultNode
);
this
.
tabName
=
this
.
defaultNode
.
id
;
//data[0].id为默认选中的节点
this
.
defaultNode
=
getNode
(
this
.
currentSelectProps
.
qllx
,
{
linShi
:
0
,
xianShi
:
0
,
liShi
:
0
},
""
);
this
.
tabName
=
this
.
defaultNode
.
id
;
//data[0].id为默认选中的节点
});
}
});
setTimeout
(()
=>
{
let
settree
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
treedata
))
this
.
tabdata
=
[...
settree
,...
settree
[
1
].
children
[
0
].
children
[
0
].
children
]
this
.
tabdata
.
forEach
((
item
,
index
,
arr
)
=>
{
arr
[
index
].
name
=
item
.
label
;
arr
[
index
].
value
=
item
.
id
})
this
.
tabList
=
this
.
tabdata
this
.
getQllxByBdcdyid
()
},
200
)
let
settree
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
treedata
));
this
.
tabdata
=
[
...
settree
,
...
settree
[
1
].
children
[
0
].
children
[
0
].
children
,
];
this
.
tabdata
.
forEach
((
item
,
index
,
arr
)
=>
{
arr
[
index
].
name
=
item
.
label
;
arr
[
index
].
value
=
item
.
id
;
});
this
.
tabList
=
this
.
tabdata
;
this
.
getQllxByBdcdyid
();
},
200
);
},
tabset
(
val
){
this
.
tabName
=
''
;
tabset
(
val
)
{
this
.
tabName
=
""
;
this
.
tabList
=
[
{
name
:
val
.
qllxmc
+
"补录信息"
,
name
:
val
.
qllxmc
+
"补录信息"
,
value
:
"slxx"
,
sort
:
1
,
},
...
...
@@ -198,20 +205,19 @@ export default {
];
this
.
$nextTick
(
function
()
{
this
.
tabName
=
'slxx'
;
this
.
tabName
=
"slxx"
;
});
},
//右侧表单选项卡事件
beforeLeave
(
activeName
,
oldActiveName
)
{
if
(
activeName
&&
activeName
!=
0
)
this
.
getFromRouter
(
activeName
)
beforeLeave
(
activeName
,
oldActiveName
)
{
if
(
activeName
&&
activeName
!=
0
)
this
.
getFromRouter
(
activeName
)
;
},
//切换选项卡内容组件
getFromRouter
(
tabname
)
{
getFromRouter
(
tabname
)
{
for
(
let
item
of
this
.
tabList
)
{
if
(
item
.
value
===
tabname
)
{
this
.
currentSelectTab
=
item
this
.
currentSelectTab
=
item
;
break
;
}
}
...
...
@@ -219,19 +225,18 @@ export default {
},
// 增加补录记录
addRepairRecord
(
row
){
console
.
log
(
"this.currentSelectProps"
,
this
.
currentSelectProps
);
let
from
=
{
bsmQlxx
:
""
,
bsmSlsq
:
this
.
bsmSlsq
,
bsmSldy
:
this
.
currentSelectProps
.
bsmSldy
,
operate
:
"C"
,
qllx
:
this
.
currentSelectProps
.
qllx
}
if
(
row
){
from
.
bsmQlxx
=
row
.
bsmQlxx
from
.
operate
=
"U"
from
.
qllx
=
row
.
qllx
addRepairRecord
(
row
)
{
let
from
=
{
bsmQlxx
:
""
,
bsmSlsq
:
this
.
bsmSlsq
,
bsmSldy
:
this
.
currentSelectProps
.
bsmSldy
,
operate
:
"C"
,
qllx
:
this
.
currentSelectProps
.
qllx
,
};
if
(
row
)
{
from
.
bsmQlxx
=
row
.
bsmQlxx
;
from
.
operate
=
"U"
;
from
.
qllx
=
row
.
qllx
;
}
addRepairRecord
(
from
).
then
((
res
)
=>
{
...
...
@@ -240,6 +245,9 @@ export default {
});
});
},
},
};
</
script
>
<
style
scoped
lang=
"scss"
>
</
style
>
...
...
src/views/registerBook/cfdj.vue
View file @
bcf4fcf
...
...
@@ -26,6 +26,10 @@
item.prop == 'qszt' && (row.qszt == '0' ||(row.qszt == '1' &&row.qlblzt == '1'&&row.zxywh != null))? 'linshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && (row.qszt == '0' ||(row.qszt == '1' &&row.qlblzt == '1'&&row.zxywh != null))"
>
正在办理
</div>
<span
v-if=
"item.prop == 'qszt'"
>
{{
getQsztName
(
row
[
item
.
prop
])
}}
</span>
...
...
@@ -63,6 +67,11 @@ export default {
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getCfdjList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
src/views/registerBook/diyaq.vue
View file @
bcf4fcf
...
...
@@ -20,6 +20,10 @@
row.qszt == '0' ? 'linshi' : '',
item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qszt == '0'"
>
正在办理
</div>
...
...
@@ -61,6 +65,11 @@ export default {
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getDiyaqList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
src/views/registerBook/diyiq.vue
View file @
bcf4fcf
...
...
@@ -20,6 +20,10 @@
row.qszt == '0' ? 'linshi' : '',
item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qszt == '0'"
>
正在办理
</div>
...
...
@@ -61,6 +65,11 @@ export default {
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getDiyiqList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
src/views/registerBook/fdcq1.vue
View file @
bcf4fcf
...
...
@@ -22,6 +22,10 @@
item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '',
item.prop == 'qszt' && row.qszt == '1' ? 'xianshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qszt == '0'"
>
正在办理
</div>
...
...
@@ -66,6 +70,11 @@
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getJsydsyqList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
src/views/registerBook/fdcq2.vue
View file @
bcf4fcf
...
...
@@ -20,6 +20,10 @@
row.qszt == '0' ? 'linshi' : '',
item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qszt == '0'"
>
正在办理
</div>
...
...
@@ -61,6 +65,11 @@ export default {
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getFdcq2List
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
@@ -95,6 +104,62 @@ export default {
}
return
name
;
},
// 编辑
editDialog
(
row
){
this
.
$confirm
(
'此操作将新增一条补录信息, 是否继续?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
this
.
$parent
.
addRepairRecord
(
row
)
this
.
$message
({
type
:
'success'
,
message
:
'补录成功!'
});
}).
catch
(()
=>
{
this
.
$message
({
type
:
'info'
,
message
:
'取消编辑'
});
});
// this.$popupDialog("编辑", "djbworkflow/djbBook/components/djbeditDialog", {
// datalist:this.columns,
// data: row,
// })
},
// 删除
deleteDialog
(
row
){
this
.
$confirm
(
'此操作将永久删除该文件, 是否继续?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
// let bsmClmx = this.previewImg.imgList[this.previewImg.index].bsmClmx
// deleteClmx(bsmClmx).then(res => {
// if (res.code == 200) {
// that.$emit('updateList', res.result)
// that.$message({
// message: '删除成功!',
// type: 'success'
// })
// }
// })
this
.
$message
({
type
:
'success'
,
message
:
'删除成功!'
});
}).
catch
(()
=>
{
this
.
$message
({
type
:
'info'
,
message
:
'已取消删除'
});
});
}
},
};
</
script
>
...
...
src/views/registerBook/jsydsyq.vue
View file @
bcf4fcf
...
...
@@ -22,6 +22,10 @@
item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '',
item.prop == 'qszt' && row.qszt == '1' ? 'xianshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qszt == '0'"
>
正在办理
</div>
...
...
@@ -66,6 +70,11 @@
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getJsydsyqList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
src/views/registerBook/nydsyq.vue
View file @
bcf4fcf
...
...
@@ -22,6 +22,10 @@
item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '',
item.prop == 'qszt' && row.qszt == '1' ? 'xianshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qszt == '0'"
>
正在办理
</div>
...
...
@@ -95,6 +99,11 @@
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getNydsyqList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
src/views/registerBook/ygdj.vue
View file @
bcf4fcf
...
...
@@ -20,6 +20,10 @@
row.qszt == '0' ? 'linshi' : '',
item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '',
]"
>
<div
class=
"setbut"
v-if=
"item.prop == 'cz'"
>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"editDialog(row)"
>
编辑
</el-button>
<el-button
type=
"text"
icon=
"el-icon-edit-outline"
@
click=
"deleteDialog(row)"
>
删除
</el-button>
</div>
<div
class=
"icon"
v-if=
"item.prop == 'qszt' && row.qszt == '0'"
>
正在办理
</div>
...
...
@@ -61,6 +65,12 @@ export default {
},
methods
:
{
loadData
()
{
// 判断是否在登记簿补录调的子页面
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getYgdjList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
src/views/registerBook/yydj.vue
View file @
bcf4fcf
...
...
@@ -61,6 +61,11 @@ export default {
},
methods
:
{
loadData
()
{
if
(
this
.
$parent
.
addRepairRecord
){
this
.
columns
.
unshift
({
prop
:
"cz"
,
label
:
"操作"
})
}
getYydjList
({
bdcdyid
:
this
.
propsParam
.
bdcdyid
,
qllx
:
this
.
propsParam
.
qllx
,
...
...
@@ -95,6 +100,62 @@ export default {
}
return
name
;
},
// 编辑
editDialog
(
row
){
this
.
$confirm
(
'此操作将新增一条补录信息, 是否继续?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
this
.
$parent
.
addRepairRecord
(
row
)
this
.
$message
({
type
:
'success'
,
message
:
'补录成功!'
});
}).
catch
(()
=>
{
this
.
$message
({
type
:
'info'
,
message
:
'取消编辑'
});
});
// this.$popupDialog("编辑", "djbworkflow/djbBook/components/djbeditDialog", {
// datalist:this.columns,
// data: row,
// })
},
// 删除
deleteDialog
(
row
){
this
.
$confirm
(
'此操作将永久删除该文件, 是否继续?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
// let bsmClmx = this.previewImg.imgList[this.previewImg.index].bsmClmx
// deleteClmx(bsmClmx).then(res => {
// if (res.code == 200) {
// that.$emit('updateList', res.result)
// that.$message({
// message: '删除成功!',
// type: 'success'
// })
// }
// })
this
.
$message
({
type
:
'success'
,
message
:
'删除成功!'
});
}).
catch
(()
=>
{
this
.
$message
({
type
:
'info'
,
message
:
'已取消删除'
});
});
}
},
};
</
script
>
...
...
Please
register
or
sign in
to post a comment