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
1289181c
authored
2023-09-21 16:06:10 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:补录权利人信息模块功能的完善
1 parent
c0867727
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
121 additions
and
16 deletions
src/views/djbworkflow/components/dialog/addQlr.vue
src/views/djbworkflow/components/dialog/addQlrData.js
src/views/djbworkflow/components/leftmenu/ordinaryMenu.vue
src/views/djbworkflow/components/qlrCommonTable.vue
src/views/djbworkflow/components/dialog/addQlr.vue
View file @
1289181
This diff is collapsed.
Click to expand it.
src/views/djbworkflow/components/dialog/addQlrData.js
0 → 100644
View file @
1289181
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-21 15:45:27
*/
import
filter
from
'@/utils/filter.js'
let
vm
=
null
const
sendThis
=
(
_this
)
=>
{
vm
=
_this
}
class
data1
extends
filter
{
constructor
()
{
super
()
}
columns
()
{
return
[
{
prop
:
"qlrmc"
,
label
:
"姓名/名称"
,
},
{
prop
:
"zjzlMc"
,
label
:
"证件种类"
},
{
prop
:
"zjh"
,
label
:
"证件号"
,
},
{
prop
:
"frmc"
,
label
:
"法人名称"
,
},
{
prop
:
"dwdz"
,
label
:
"地址"
,
},
{
prop
:
"dh"
,
label
:
"联系电话"
,
}
]
}
}
class
data2
extends
filter
{
constructor
()
{
super
()
}
columns
()
{
return
[
{
prop
:
"qlrmc"
,
label
:
"姓名/名称"
,
},
{
prop
:
"zjzlMc"
,
label
:
"证件种类"
,
},
{
prop
:
"zjh"
,
label
:
"证件号"
,
},
{
prop
:
"frmc"
,
label
:
"法人名称"
,
},
{
prop
:
"dwdz"
,
label
:
"地址"
,
},
{
prop
:
"dh"
,
label
:
"联系电话"
,
},
]
}
}
let
dataYh
=
new
data1
()
let
dataQy
=
new
data2
()
export
{
dataYh
,
dataQy
,
sendThis
}
src/views/djbworkflow/components/leftmenu/ordinaryMenu.vue
View file @
1289181
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2023-0
7-17 16:16:13
* @LastEditTime: 2023-0
9-21 16:02:05
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
@@ -171,7 +171,6 @@
this
.
$parent
.
loadComponent
(
this
.
currentSelectProps
,
data
);
this
.
$parent
.
tabset
();
},
//申请单元点击事件
/**
* @description: 申请单元点击事件
* @param {*} index
...
...
@@ -180,6 +179,7 @@
unitClick
(
index
)
{
this
.
clickindex
=
index
this
.
currentSelectProps
=
this
.
supplementarylist
[
index
];
window
.
currentSelect
=
this
.
supplementarylist
[
index
]
this
.
$emit
(
"getCurrentSelectProps"
,
this
.
currentSelectProps
);
},
/**
...
...
src/views/djbworkflow/components/qlrCommonTable.vue
View file @
1289181
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-
01 13:30:54
* @LastEditTime: 2023-09-
21 16:02:53
-->
<
template
>
<div>
...
...
@@ -21,8 +21,9 @@
</div>
</
template
>
<
script
>
import
addQlr
from
"./dialog/addQlr.vue"
;
import
{
mapGetters
}
from
"vuex"
;
import
addQlr
from
"./dialog/addQlr.vue"
;
import
{
getIdCardInfo
}
from
'@/utils/operation.js'
export
default
{
components
:
{
addQlr
,
...
...
@@ -102,7 +103,7 @@
icon
=
"el-icon-tickets"
disabled
=
{
!
this
.
ableOperation
}
onClick
=
{()
=>
{
this
.
readClick
(
scope
);
this
.
readClick
(
scope
.
row
)
}}
>
读取
...
...
@@ -178,12 +179,12 @@
this
.
$nextTick
(()
=>
{
if
(
val
.
length
==
0
||
!
val
)
{
that
.
tableDataList
=
_
.
cloneDeep
([
{
qlrmc
:
""
,
dlrzjlx
:
""
,
dlrzjh
:
""
,
fr
:
""
,
},
//
{
//
qlrmc: "",
//
dlrzjlx: "",
//
dlrzjh: "",
//
fr: "",
//
},
]);
}
else
{
that
.
tableDataList
=
_
.
cloneDeep
(
val
);
...
...
@@ -255,15 +256,32 @@
this
.
tableDataList
.
splice
(
index
,
1
);
this
.
$emit
(
"upDateQlrxxList"
,
this
.
tableDataList
);
},
// 身份证读取
/**
* @description: 身份证读取
* @author: renchao
*/
readClick
()
{
},
// 身份证读取按钮禁用
readClick
(
row
)
{
getIdCardInfo
().
then
(
res
=>
{
if
(
res
.
data
.
code
==
0
)
{
let
data
=
res
.
data
.
IDCardInfo
row
.
qlrmc
=
data
.
name
row
.
zjzl
=
'1'
row
.
zjh
=
data
.
cardID
row
.
xb
=
data
.
sexCode
row
.
dz
=
data
.
address
row
.
fzjg
=
data
.
issueOrgan
this
.
$message
({
message
:
'读取成功!'
,
type
:
'success'
})
}
else
{
this
.
$message
({
message
:
res
.
data
.
message
,
type
:
'warning'
})
}
})
},
/**
* @description: 身份证读取按钮禁用
* @author: renchao
...
...
Please
register
or
sign in
to post a comment