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
340912d6
authored
2022-11-15 17:15:48 +0800
by
jiaozeping@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
2 parents
f5ba14f2
9aa810bb
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
471 additions
and
224 deletions
src/api/config.js
src/components/NoticeBar/index.vue
src/components/Popup/index.vue
src/layout/components/Navbar.vue
src/styles/btn.scss
src/styles/sidebar.scss
src/views/components/personInfoTable.vue
src/views/home/index.scss
src/views/home/index.vue
src/views/sqcx/dydjb/dydjbdata.js
src/views/sqcx/jtfc/components/addjtfc.vue
src/views/sqcx/jtfc/components/addjtfcdata.js
src/views/sqcx/jtfc/jtfc.vue
src/views/sqcx/jtfc/jtfcdata.js
src/views/sqcx/sqcxjl/components/sqcxjlInfo.vue
src/views/sqcx/sqcxjl/components/sqcxjlInfodata.js
src/views/sqcx/sqcxjl/sqcxjl.vue
src/views/sqcx/sqcxjl/sqcxjldata.js
src/views/workflow/workFrame.scss
src/views/ywbl/components/search.vue
src/views/ywbl/dbx/dbx.vue
src/views/ywbl/ywsq/ywsq.scss
src/views/ywbl/ywsq/ywsq.vue
src/views/zsgl/zsff/zsff.vue
src/views/zsgl/zsrk/zsrk.vue
src/views/zsgl/zsrk/zsrkdata.js
src/api/config.js
View file @
340912d
export
default
{
SERVERAPI
:
'/service-bdcdj
9
'
,
// SERVERCAI: '/service-bdcdj-
Tian
'
SERVERAPI
:
'/service-bdcdj
-xq
'
,
// SERVERCAI: '/service-bdcdj-
xiaqi
'
}
\ No newline at end of file
...
...
src/components/NoticeBar/index.vue
0 → 100644
View file @
340912d
<
template
>
<div
class=
"my-outbox"
>
<div
class=
"my-inbox"
ref=
'box'
>
<div
class=
"my-list"
:style=
"note"
v-for=
"(item,index) in sendVal"
:key=
'index'
ref=
'list'
>
<span
class=
"my-uname"
>
{{
item
}}
</span>
</div>
</div>
</div>
</
template
>
<
script
>
export
default
{
name
:
'my-marquee-left'
,
props
:
{
sendVal
:
{
type
:
Array
,
default
:
[]
}
},
data
()
{
return
{
note
:
{
backgroundSize
:
"20px 20px"
,
backgroundRepeat
:
"no-repeat"
,
backgroundPosition
:
"1% 50%"
},
// 定时器标识
nowTime
:
null
,
// 每一个内容的宽度
disArr
:
[]
}
},
mounted
()
{
// var that = this
var
item
=
this
.
$refs
.
list
var
len
=
this
.
sendVal
.
length
var
arr
=
[]
// 因为设置的margin值一样,所以取第一个就行。
var
margin
=
this
.
getMargin
(
item
[
0
])
for
(
var
i
=
0
;
i
<
len
;
i
++
)
{
arr
.
push
(
item
[
i
].
clientWidth
+
margin
)
// 把宽度和 margin 加起来就是每一个元素需要移动的距离
}
this
.
disArr
=
arr
this
.
moveLeft
()
},
beforeDestroy
()
{
// 页面关闭清除定时器
clearInterval
(
this
.
nowTime
)
// 清除定时器标识
this
.
nowTime
=
null
},
methods
:
{
// 获取margin属性
getMargin
(
obj
)
{
var
marg
=
window
.
getComputedStyle
(
obj
,
null
)[
'margin-right'
]
marg
=
marg
.
replace
(
'px'
,
''
)
return
Number
(
marg
)
// 强制转化成数字
},
// 移动的方法
moveLeft
()
{
var
that
=
this
var
outbox
=
this
.
$refs
.
box
// 初始位置
var
startDis
=
0
// console.log('that.disArr: ', that.disArr)
this
.
nowTime
=
setInterval
(
function
()
{
startDis
-=
0.5
// console.log('初始化移动:', startDis)
if
(
Math
.
abs
(
startDis
)
>
Math
.
abs
(
that
.
disArr
[
0
]))
{
// 每次移动完一个元素的距离,就把这个元素的宽度
that
.
disArr
.
push
(
that
.
disArr
.
shift
())
// 每次移动完一个元素的距离,就把列表数据的第一项放到最后一项
// console.log('that.sendVal: ', that.sendVal)
// console.log('that.sendVal: ', that.sendVal.shift())
that
.
sendVal
.
push
(
that
.
sendVal
.
shift
())
startDis
=
0
// console.log('移动')
}
else
{
// console.log('不来不来就不来...')
}
// 每次都让盒子移动指定的距离,在我自己做的项目中,这种字符串拼接的方法并没有生效
// outbox.style = 'transform: translateX3d(' + startDis + 'px)'
// 后面换了es6的模板字符串就可以了
outbox
.
style
=
`transform: translateX(
${
startDis
}
px)`
// outbox.style = 'transform: translateX(\' + startDis + \' px)'
// outbox.style.marginLeft = 'startDis'
// console.log('这里:', startDis)
},
1000
/
60
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.my-outbox
{
color
:
#fff
;
overflow
:
hidden
;
line-height
:
28px
;
//
background
:
$
light-blue
;
width
:
500px
;
.my-inbox
{
white-space
:
nowrap
;
.my-list
{
margin-right
:
15px
;
display
:
inline-block
;
font-size
:
14px
;
text-indent
:
30px
;
.my-uname
{
color
:
#fff
;
}
}
}
}
</
style
>
\ No newline at end of file
src/components/Popup/index.vue
View file @
340912d
...
...
@@ -107,7 +107,7 @@ export default {
.ls-mask
{
width
:
100%
;
height
:
100%
;
z-index
:
100
000
;
z-index
:
2
000
;
position
:
fixed
;
left
:
0
;
top
:
0
;
...
...
src/layout/components/Navbar.vue
View file @
340912d
<
template
>
<div
class=
"navbar"
v-theme
.
background=
"mTheme"
>
<div
class=
"logo"
>
<img
v-if=
"logo"
:src=
"logo"
class=
"header-logo"
>
</div>
<div
class=
"backdrop"
>
<theme
style=
"float: right;height: 26px;width: 26px;margin-top: 26px;"
@
change=
"themeChange"
/>
</div>
<div
class=
"right-menu"
>
<el-dropdown
class=
"avatar-container right-menu-item hover-effect"
@
command=
"handleCommand"
>
<div
class=
"avatar-wrapper"
>
<span
style=
"padding-right:10px"
>
{{
name
}}
</span>
<img
:src=
"avatar + '?imageView2/1/w/80/h/80'"
class=
"user-avatar"
/>
</div>
<el-dropdown-menu
slot=
"dropdown"
>
<el-dropdown-item
command=
"a"
>
个人中心
</el-dropdown-item>
<el-dropdown-item
command=
"f"
>
退出登录
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<div
class=
"navbar-con"
>
<div
class=
"navbar"
v-theme
.
background=
"mTheme"
>
<div
class=
"logo"
>
<img
v-if=
"logo"
:src=
"logo"
class=
"header-logo"
>
</div>
<div
class=
"backdrop"
>
<theme
style=
"float: right;height: 26px;width: 26px;margin-top: 26px;"
@
change=
"themeChange"
/>
</div>
<div
class=
"right-menu"
>
<el-dropdown
class=
"avatar-container right-menu-item hover-effect"
@
command=
"handleCommand"
>
<div
class=
"avatar-wrapper"
>
<span
style=
"padding-right:10px"
>
{{
name
}}
</span>
<img
:src=
"avatar + '?imageView2/1/w/80/h/80'"
class=
"user-avatar"
/>
</div>
<el-dropdown-menu
slot=
"dropdown"
>
<el-dropdown-item
command=
"a"
>
个人中心
</el-dropdown-item>
<el-dropdown-item
command=
"f"
>
退出登录
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
</div>
<NoticeBar
class=
"NoticeBar"
:sendVal=
"sendVal"
/>
</div>
</
template
>
<
script
>
import
NoticeBar
from
'@/components/NoticeBar/index'
import
{
mapGetters
}
from
'vuex'
export
default
{
components
:
{
NoticeBar
},
computed
:
{
...
mapGetters
([
'sidebar'
,
'avatar'
,
'name'
])
},
data
()
{
return
{
logo
:
require
(
'../../image/logo.png'
)
logo
:
require
(
'../../image/logo.png'
),
sendVal
:
[
'222222222222222222222222222222222'
,
'222222233333333333333333333333'
]
}
},
methods
:
{
...
...
@@ -53,6 +64,16 @@ export default {
}
</
script
>
<
style
lang=
"scss"
scoped
>
.navbar-con
{
position
:
relative
;
}
.NoticeBar
{
position
:
absolute
;
left
:
330px
;
bottom
:
0
;
}
.el-dropdown-menu
{
padding
:
0
!important
;
border
:
1px
solid
#EBEEF5
;
...
...
src/styles/btn.scss
View file @
340912d
...
...
@@ -116,23 +116,20 @@
.title-block
{
display
:
inline-block
;
position
:
relative
;
background
:
#3498db
;
color
:
#fff
!
important
;
text-align
:
center
;
padding
:
0px
20px
;
height
:
30px
;
line-height
:
30px
;
border-radius
:
5px
5px
5px
0px
;
letter-spacing
:
2px
;
text-align
:
left
;
width
:
100%
;
line-height
:
26px
;
padding-left
:
10px
;
font-size
:
16px
;
border-bottom
:
1px
solid
$borderColor
;
}
.title-block
.triangle
{
width
:
0px
;
height
:
0px
;
.title-block
:after
{
content
:
" "
;
width
:
0
;
height
:
16px
;
position
:
absolute
;
border
:
5px
solid
transparent
;
border-top
:
5px
solid
#3498db
;
border-right
:
5px
solid
#3498db
;
left
:
0px
;
bottom
:
-10px
;
border-left
:
3px
solid
$light-blue
;
left
:
0
;
top
:
5px
;
}
\ No newline at end of file
...
...
src/styles/sidebar.scss
View file @
340912d
...
...
@@ -16,7 +16,7 @@
left
:
0
;
z-index
:
1001
;
background-color
:
$subMenuBg
;
overflow
:
hidden
;
//
overflow: hidden;
.horizontal-collapse-transition
{
transition
:
0s
width
ease-in-out
,
0s
padding-left
ease-in-out
,
...
...
@@ -25,8 +25,9 @@
.scrollbar-wrapper
{
overflow-x
:
hidden
!
important
;
overflow-y
:
auto
;
//
overflow-y: auto;
margin-right
:
0
!
important
;
height
:
90vh
;
&
:
:-
webkit-scrollbar
{
display
:
none
;
...
...
@@ -52,7 +53,6 @@
background-color
:
transparent
!
important
;
border
:
none
;
height
:
100%
;
// overflow-y: auto;
width
:
100%
!
important
;
}
...
...
src/views/components/personInfoTable.vue
View file @
340912d
...
...
@@ -3,7 +3,8 @@
作者:calliope
-->
<
template
>
<lb-table
border
:column=
"tableData.columns"
:data=
"tableData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
<lb-table
border
:column=
"tableData.columns"
:data=
"tableData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
</
template
>
<
script
>
...
...
@@ -40,7 +41,7 @@ export default {
}
},
{
width
:
'
20
0'
,
width
:
'
15
0'
,
label
:
'身份证读卡器'
,
render
:
(
h
,
scope
)
=>
{
return
(
...
...
@@ -51,7 +52,7 @@ export default {
}
},
{
width
:
'
20
0'
,
width
:
'
15
0'
,
prop
:
'sqrxm'
,
label
:
'姓名/名称'
,
render
:
(
h
,
scope
)
=>
{
...
...
@@ -66,7 +67,7 @@ export default {
label
:
'证件种类'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
el
-
select
value
=
{
scope
.
row
[
scope
.
column
.
property
]}
<
el
-
select
class
=
"width100"
value
=
{
scope
.
row
[
scope
.
column
.
property
]}
onChange
=
{(
val
)
=>
{
scope
.
row
[
scope
.
column
.
property
]
=
val
}}
>
{
this
.
dictData
[
'A30'
].
map
(
option
=>
{
...
...
src/views/home/index.scss
View file @
340912d
...
...
@@ -7,6 +7,28 @@
justify-content
:
space-between
;
}
.workbench
{
flex-wrap
:
wrap
;
height
:
100%
;
li
{
width
:
32
.5%
;
height
:
118px
;
@include
flex-center
;
flex-direction
:
column
;
color
:
#fff
;
i
{
color
:
#fff
;
font-size
:
30px
;
}
}
li
:nth-child
(
1
)
{
margin-bottom
:
6px
;
}
}
.marginZL15
{
margin
:
0
15px
;
}
...
...
@@ -36,7 +58,7 @@
ul
{
li
{
line-height
:
36px
;
p
{
white-space
:
nowrap
;
}
...
...
src/views/home/index.vue
View file @
340912d
...
...
@@ -3,8 +3,14 @@
<div
class=
"home-left"
>
<el-row
:gutter=
"8"
>
<el-col
:span=
"12"
>
<el-card
shadow=
"hover"
>
鼠标悬浮时显示
<el-card
shadow=
"hover"
:body-style=
"
{ padding: '0' }">
<ul
class=
"workbench flexst"
>
<li
v-for=
"(item, index) in newsListData"
class=
"pointer"
:key=
"index"
:style=
"
{ backgroundColor: item.color }">
<i
class=
"el-icon-s-claim"
></i>
{{
item
.
title
}}
</li>
</ul>
</el-card>
</el-col>
<el-col
:span=
"12"
>
...
...
@@ -14,7 +20,7 @@
<i
class=
"el-icon-s-unfold pointer"
></i>
</div>
<ul>
<li
v-for=
"(item, index) in notice"
:key=
"index"
class=
"flexst"
>
<li
v-for=
"(item, index) in notice"
:key=
"index"
class=
"flexst
pointer
"
>
<p
class=
"list-title"
>
{{
item
.
title
}}
</p>
<p
class=
"marginZL15"
>
{{
item
.
date
}}
</p>
<p>
{{
item
.
state
}}
</p>
...
...
@@ -41,11 +47,11 @@
<el-col
:span=
"12"
>
<el-card
shadow=
"hover"
>
<div
slot=
"header"
class=
"flexst"
>
<h5
class=
"title"
>
公司邮件
</h5>
<h5
class=
"title"
>
法律法规
</h5>
<i
class=
"el-icon-s-unfold pointer"
></i>
</div>
<ul>
<li
v-for=
"(item, index) in mailList"
:key=
"index"
class=
"flexst
"
>
<li
v-for=
"(item, index) in mailList"
@
click=
"handleView"
:key=
"index"
class=
"flexst pointer
"
>
<p
class=
"right15"
>
{{
item
.
date
}}
</p>
<p
class=
"list-title"
>
{{
item
.
title
}}
</p>
</li>
...
...
@@ -73,6 +79,38 @@ export default {
components
:
{
calendar
},
data
()
{
return
{
newsListData
:
[
{
icon
:
''
,
title
:
'任务'
,
color
:
'#61AEFF'
},
{
icon
:
''
,
title
:
'邮件'
,
color
:
'#43DEB3'
},
{
icon
:
''
,
title
:
'消息'
,
color
:
'#F3C143'
},
{
icon
:
''
,
title
:
'日历'
,
color
:
'#F09936'
},
{
icon
:
''
,
title
:
'常用功能'
,
color
:
'#9C92FF'
},
{
icon
:
''
,
title
:
'申请'
,
color
:
'#589FFF'
}
],
chartData
:
[{
year
:
'1991'
,
value
:
15468
...
...
@@ -92,14 +130,11 @@ export default {
year
:
'1996'
,
value
:
31056
},
{
year
:
'1997'
,
value
:
31982
},
{
year
:
'1998'
,
value
:
32040
year
:
'1995'
,
value
:
17000
},
{
year
:
'199
9
'
,
value
:
3
3233
year
:
'199
6
'
,
value
:
3
1056
}],
notice
:
[
{
...
...
@@ -168,6 +203,10 @@ export default {
this
.
buildChart
();
},
methods
:
{
handleView
()
{
const
href
=
'http://storage.xuetangx.com/public_assets/xuetangx/PDF/PlayerAPI_v1.0.6.pdf'
window
.
open
(
href
,
'_blank'
);
},
buildChart
()
{
var
chart
=
new
G2
.
Chart
({
container
:
'mountNode'
,
...
...
@@ -204,5 +243,6 @@ export default {
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
@import
"./index.scss"
;
</
style
>
\ No newline at end of file
...
...
src/views/sqcx/dydjb/dydjbdata.js
View file @
340912d
...
...
@@ -61,6 +61,7 @@ class data extends filter {
},
{
label
:
"操作"
,
width
:
100
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
'el-icon-view'
onClick
=
{()
=>
{
vm
.
dydjbClick
(
scope
)
}}
>
打印登记薄
<
/el-button
>
}
...
...
src/views/sqcx/jtfc/components/addjtfc.vue
View file @
340912d
<
template
>
<dialogBox
title=
"家庭房产查询"
@
closeDialog=
"closeDialog"
width=
"9
0%"
:isButton=
"false"
v-model=
"myValue"
>
<dialogBox
title=
"家庭房产查询"
@
closeDialog=
"closeDialog"
isMain
width=
"7
0%"
:isButton=
"false"
v-model=
"myValue"
>
<div
class=
"jtfccx-edit"
>
<div
class=
"jtfccx-edit-con"
>
<b
class=
"title"
>
申请信息
</b>
...
...
@@ -24,21 +24,20 @@
<personInfoTable
@
getInfoList=
"handleGetSqList"
:dataList=
"sqdataList"
/>
<b
class=
"title"
>
权利人
</b>
<personInfoTable
@
getInfoList=
"handleGetQlList"
:dataList=
"qldataList"
/>
<personInfoTable
@
getInfoList=
"handleGetQlList"
:dataList=
"qldataList"
/>
<div
class=
"submit-button"
>
<el-button
type=
"primary"
@
click=
"queryChick()
"
>
查询
</el-button>
<el-button
@
click=
"resetClick()
"
>
重置
</el-button>
<el-button
type=
"primary"
@
click=
"queryChick
"
>
查询
</el-button>
<el-button
@
click=
"resetClick
"
>
重置
</el-button>
</div>
<b
class=
"title"
>
查询结果
</b>
<!--
<p>
查询编号:
{{
cxbh
}}
</p>
-->
<lb-table
:column=
"searchData.columns"
border
:data=
"searchData.data"
:maxHeight=
"200"
heightNumSetting
<b
class=
"title"
v-if=
"isSearch"
>
查询结果
</b>
<lb-table
:column=
"searchData.columns"
v-if=
"isSearch"
:data=
"searchData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
</div>
<div
class=
"submit-button"
style=
"padding-bottom:20px"
>
<el-button
type=
"primary"
>
无房证明
打印(1)
</el-button>
<el-button
type=
"primary"
>
房产结果
打印(1)
</el-button>
<div
class=
"submit-button"
v-if=
"isSearch"
style=
"padding-bottom:20px"
>
<el-button
type=
"primary"
v-if=
"searchData.data.length > 0"
>
房产结果
打印(1)
</el-button>
<el-button
type=
"primary"
v-else
>
无房证明
打印(1)
</el-button>
<el-button
@
click=
"closeDialog"
>
关闭
</el-button>
</div>
</div>
...
...
@@ -57,10 +56,9 @@ export default {
props
:
{
value
:
{
type
:
Boolean
,
default
:
false
},
},
mounted
()
{
mounted
()
{
sendThis
(
this
);
},
data
()
{
return
{
myValue
:
this
.
value
,
...
...
@@ -69,6 +67,7 @@ export default {
ycyrgx
:
1
,
cxlx
:
'1'
//查询类型 1:房产查询 2:登记簿查询
},
isSearch
:
false
,
dataList
:
[{
sqrxm
:
''
,
sqrzjlxbm
:
''
,
...
...
@@ -129,16 +128,12 @@ export default {
this
.
addJtfc
.
qlrxx
=
val
}
},
queryChick
()
{
queryChick
()
{
this
.
addJtfc
.
djSqcxDO
=
{
...
this
.
ruleForm
}
// this.$message({
// type: 'success',
// message: '删除成功!'
// });
addJtfcCxjgXx
(
this
.
addJtfc
).
then
(
res
=>
{
this
.
searchData
.
data
=
res
.
result
;
console
.
log
(
res
);
this
.
isSearch
=
true
})
},
resetClick
()
{
...
...
@@ -148,12 +143,12 @@ export default {
handleRead
(
row
)
{
},
//抵押
dyClick
()
{
dyClick
()
{
},
//查封
cfClick
()
{
cfClick
()
{
}
}
...
...
@@ -162,6 +157,7 @@ export default {
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
@import
"~@/styles/public.scss"
;
.title
{
padding-bottom
:
10px
;
margin-bottom
:
10px
;
...
...
src/views/sqcx/jtfc/components/addjtfcdata.js
View file @
340912d
...
...
@@ -61,7 +61,6 @@ class data extends filter {
{
label
:
'登记状态'
,
width
:
'150'
,
align
:
'center'
,
fixed
:
'right'
,
render
:
(
h
,
scope
)
=>
{
...
...
@@ -69,9 +68,7 @@ class data extends filter {
<
div
>
<
el
-
button
type
=
"text"
icon
=
"el-icon-edit-outline"
onClick
=
{()
=>
{
this
.
dyClick
(
scope
)
}}
>
抵押
<
/el-button
>
<
el
-
button
type
=
"text"
icon
=
"el-icon-edit-outline"
onClick
=
{()
=>
{
this
.
cfClick
(
scope
)
}}
>
查封
<
/el-button
>
<
/div
>
)
}
}
...
...
src/views/sqcx/jtfc/jtfc.vue
View file @
340912d
...
...
@@ -81,8 +81,18 @@ export default {
handleAdd
()
{
this
.
isDialog
=
true
;
},
},
};
handleViewClick
(
scope
)
{
var
sqcxBsm
=
scope
.
row
.
bsmSqcx
;
this
.
$popup
(
"申请查询记录"
,
"sqcx/sqcxjl/components/sqcxjlInfo"
,
{
formData
:
{
sqcxBsm
:
sqcxBsm
,
},
cancel
:
function
()
{
},
//取消事件的回调
confirm
:
function
()
{
},
});
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
...
...
src/views/sqcx/jtfc/jtfcdata.js
View file @
340912d
...
...
@@ -69,6 +69,13 @@ class data extends filter {
{
prop
:
"cxyt"
,
label
:
"查询用途"
},
{
label
:
"操作"
,
width
:
80
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
'el-icon-view'
onClick
=
{()
=>
{
vm
.
handleViewClick
(
scope
)
}}
>
查看
<
/el-button
>
}
}
]
}
...
...
src/views/sqcx/sqcxjl/components/sqcxjlInfo.vue
View file @
340912d
<
template
>
<div
>
<div>
<el-form
:model=
"ruleForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"24"
style=
"margin-bottom: 15px"
>
...
...
@@ -29,14 +29,8 @@
<el-row>
<el-col>
<lb-table
:column=
"sqrData.columns"
border
:data=
"sqrData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
<lb-table
:column=
"sqrData.columns"
border
:data=
"sqrData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
</el-col>
</el-row>
...
...
@@ -51,14 +45,8 @@
</el-row>
<el-row>
<el-col>
<lb-table
:column=
"qlrData.columns"
border
:data=
"qlrData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
<lb-table
:column=
"qlrData.columns"
border
:data=
"qlrData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
</el-col>
</el-row>
...
...
@@ -73,19 +61,13 @@
</el-row>
<el-row>
<el-col>
<p>
查询编号:
{{
cxbh
}}
</p>
<p>
查询编号:
{{
cxbh
}}
</p>
</el-col>
</el-row>
<el-row>
<el-col>
<lb-table
border
:column=
"cxjgData.columns"
:data=
"cxjgData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
<lb-table
:column=
"cxjgData.columns"
:data=
"cxjgData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
</el-col>
</el-row>
...
...
@@ -104,12 +86,12 @@ export default {
// },
props
:
[
"formData"
],
created
()
{
created
()
{
// debugger;
// alert(this.formData.sqcxBsm);
},
data
()
{
data
()
{
return
{
ruleForm
:
{
cxyt
:
""
,
...
...
@@ -134,8 +116,7 @@ export default {
};
},
mounted
()
{
debugger
;
mounted
()
{
sendThis
(
this
);
var
sqcxBsm
=
this
.
formData
.
sqcxBsm
;
...
...
@@ -145,19 +126,17 @@ export default {
this
.
sqrData
.
data
=
res
.
result
.
sqxx
;
this
.
qlrData
.
data
=
res
.
result
.
qlrxx
;
this
.
cxjgData
.
data
=
res
.
result
.
djSqcxCxjgDOList
;
this
.
cxbh
=
res
.
result
.
djSqcxDO
.
cxbh
;
this
.
cxbh
=
res
.
result
.
djSqcxDO
.
cxbh
;
}
})
.
catch
((
error
)
=>
{
console
.
log
(
error
);
})
;
})
},
methods
:
{},
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
</
style
>
...
...
src/views/sqcx/sqcxjl/components/sqcxjlInfodata.js
View file @
340912d
...
...
@@ -8,7 +8,7 @@ class data extends filter {
constructor
()
{
super
()
}
cxjgcolumns
()
{
cxjgcolumns
()
{
return
[
{
prop
:
'qszt'
,
...
...
@@ -73,7 +73,6 @@ class data extends filter {
{
label
:
'登记状态'
,
width
:
'150'
,
align
:
'center'
,
fixed
:
'right'
,
render
:
(
h
,
scope
)
=>
{
...
...
@@ -86,7 +85,7 @@ class data extends filter {
}
]
}
sqrcolumns
()
{
sqrcolumns
()
{
return
[
{
prop
:
'sqrxm'
,
...
...
@@ -107,7 +106,7 @@ class data extends filter {
]
}
qlrcolumns
()
{
qlrcolumns
()
{
return
[
{
prop
:
'sqrxm'
,
...
...
src/views/sqcx/sqcxjl/sqcxjl.vue
View file @
340912d
...
...
@@ -78,7 +78,6 @@ export default {
handleViewClick
(
scope
)
{
var
sqcxBsm
=
scope
.
row
.
bsmSqcx
;
this
.
$popup
(
"申请查询记录"
,
"sqcx/sqcxjl/components/sqcxjlInfo"
,
{
height
:
"800px"
,
formData
:
{
sqcxBsm
:
sqcxBsm
,
},
...
...
src/views/sqcx/sqcxjl/sqcxjldata.js
View file @
340912d
...
...
@@ -65,10 +65,11 @@ class data extends filter {
},
{
label
:
"操作"
,
width
:
80
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
'el-icon-view'
onClick
=
{()
=>
{
vm
.
handleViewClick
(
scope
)
}}
>
查看
<
/el-button
>
}
}
,
}
]
}
}
...
...
src/views/workflow/workFrame.scss
View file @
340912d
...
...
@@ -85,6 +85,9 @@
padding-left
:
5px
!
important
;
}
/
deep
/
.el-menu
{
border-right
:
none
;
}
/
deep
/
.el-menu-item.is-active
{
...
...
src/views/ywbl/components/search.vue
View file @
340912d
...
...
@@ -8,11 +8,6 @@
<el-form
:model=
"ruleForm"
ref=
"ruleForm"
label-width=
"100px"
>
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"业务来源"
prop=
"ywlymc"
>
<el-input
v-model=
"ruleForm.ywlymc"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"申请业务名称"
prop=
"sqywmc"
>
<el-input
v-model=
"ruleForm.sqywmc"
></el-input>
</el-form-item>
...
...
@@ -22,13 +17,13 @@
<el-input
v-model=
"ruleForm.qlrmc"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"义务人"
prop=
"ywrmc"
>
<el-input
v-model=
"ruleForm.ywrmc"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"受理时间"
prop=
"slsj"
>
<el-date-picker
v-model=
"ruleForm.slsj"
value-format=
"yyyy-MM-dd"
class=
"width100"
type=
"date"
...
...
@@ -55,7 +50,6 @@ export default {
return
{
myValue
:
this
.
value
,
ruleForm
:
{
ywlymc
:
''
,
sqywmc
:
''
,
qlrmc
:
''
,
ywrmc
:
''
,
...
...
src/views/ywbl/dbx/dbx.vue
View file @
340912d
<
template
>
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
@
submit
.
native
.
prevent
label-width=
"80px"
>
<el-row>
...
...
@@ -57,7 +56,7 @@
</div>
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
class=
"loadingtext"
@
sort-change=
"handleSort"
:current-page
.
sync=
"pageData.currentPage"
:heightNum=
"
30
0"
:total=
"tableData.total"
:current-page
.
sync=
"pageData.currentPage"
:heightNum=
"
29
0"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
...
...
@@ -98,6 +97,13 @@ export default {
sendThis
(
this
);
this
.
queryClick
()
},
watch
:
{
queryForm
:
{
handler
(
newName
,
oldName
)
{
},
immediate
:
true
}
},
methods
:
{
// 列表渲染接口
queryClick
()
{
...
...
src/views/ywbl/ywsq/ywsq.scss
View file @
340912d
...
...
@@ -30,7 +30,7 @@
flex-direction
:
column
;
.item-list
{
max-height
:
calc
(
100vh
-
3
8
0px
);
max-height
:
calc
(
100vh
-
3
6
0px
);
overflow-y
:
auto
;
}
...
...
@@ -146,6 +146,7 @@
flex
:
1
;
width
:
100%
;
padding
:
3px
;
}
p
:nth-child
(
2
)
{
...
...
@@ -189,7 +190,7 @@
cursor
:
pointer
;
margin-bottom
:
15px
;
p
{
p
:nth-child
(
2
)
{
@include
flex-center
;
}
...
...
@@ -202,6 +203,9 @@
flex
:
1
;
width
:
100%
;
padding
:
3px
;
padding-left
:
30px
;
display
:
flex
;
align-items
:
center
;
}
p
:nth-child
(
2
)
{
...
...
src/views/ywbl/ywsq/ywsq.vue
View file @
340912d
...
...
@@ -31,36 +31,20 @@
</ul>
</div>
<div
class=
"right-situation el-card box-card is-always-shadow"
>
<div
v-if=
"n >= 0"
>
<div
class=
"right-title"
>
常办业务列表
</div>
<ul>
<li
v-for=
"(item, index) in ywList"
:key=
"index"
@
click=
"handleSelectYw(item, ywList)"
:class=
"item.cselect ? 'cactive' : ''"
>
<p>
{{
item
.
djywmc
}}
<br>
{{
item
.
nodename
}}
</p>
<div
class=
"right-title"
>
{{
obj
[
n
]
}}
</div>
<ul>
<li
v-for=
"(item, index) in itemList"
:key=
"index"
@
click=
"handleSelectYw(item, ywList)"
:class=
"item.cselect ? 'cactive' : ''"
>
<p>
{{
item
.
djywmc
}}
<br>
{{
item
.
nodename
}}
</p>
<p
v-if=
"item.sffqlc == 1"
class=
"active"
@
click
.
stop=
"handleCollection(item)"
>
<i
class=
"el-icon-star-off active"
></i>
</p>
</li>
</ul>
</div>
<div
v-if=
"n == -1"
>
<div
class=
"right-title"
>
登记情形
</div>
<ul
class=
"registration"
>
<li
v-for=
"(item, index) in djqxList"
@
click=
"handleSelectYw(item, djqxList)"
:class=
"item.cselect ? 'cactive' : ''"
:key=
"index"
>
<p>
{{
item
.
nodename
}}
</p>
<p
:class=
"item.userCollect == 1 ? 'active' : ''"
@
click
.
stop=
"handleCollection(item)"
>
<i
class=
"el-icon-star-off"
:class=
"item.userCollect == 1 ? 'active' : ''"
></i>
</p>
</li>
</ul>
</div>
<p
:class=
"item.userCollect == 1 ? 'active' : ''"
@
click
.
stop=
"handleCollection(item)"
>
<i
class=
"el-icon-star-off"
:class=
"item.userCollect == 1 ? 'active' : ''"
></i>
</p>
</li>
</ul>
</div>
<div
class=
"submit-button"
>
<el-button
type=
"primary"
:disabled=
"btnDisabled"
@
click=
"bthSelectClick"
>
选择不动产
</el-button>
...
...
@@ -70,7 +54,6 @@
</div>
</
template
>
<
script
>
import
Cookies
from
'js-cookie'
import
fqsqDialog
from
"./slectBdc.vue"
import
{
getCollectBiz
,
getleftMenu
,
getNextNode
,
addCollectBiz
,
deleteCollectBiz
}
from
"@/api/ywbl"
export
default
{
...
...
@@ -81,10 +64,17 @@ export default {
leftList
:
[
'常办业务'
,
'一并申请'
,
'登记簿补录'
,
],
// 左侧列表
list
:
[],
djlxList
:
[],
itemList
:
[],
ywList
:
[],
djqxList
:
[],
obj
:
{
'0'
:
'常办业务列表'
,
'-1'
:
'登记情形'
},
isDialog
:
false
,
btnDisabled
:
true
,
djywbm
:
''
,
...
...
@@ -104,12 +94,16 @@ export default {
},
methods
:
{
getDataList
()
{
getCollectBiz
(
{
'target'
:
'#ywsq'
}
).
then
(
res
=>
{
getCollectBiz
().
then
(
res
=>
{
let
{
result
}
=
res
this
.
ywList
=
result
this
.
ywList
.
forEach
(
item
=>
{
this
.
$set
(
item
,
'cselect'
,
false
)
item
.
userCollect
=
1
})
if
(
this
.
n
==
0
)
{
this
.
itemList
=
this
.
ywList
}
})
getleftMenu
().
then
(
res
=>
{
let
{
result
}
=
res
...
...
@@ -118,9 +112,14 @@ export default {
},
handleleftTitle
(
index
)
{
this
.
n
=
index
let
obj
=
{
'0'
:
this
.
ywList
}
this
.
itemList
=
obj
[
this
.
n
]
this
.
list
.
forEach
(
item
=>
{
if
(
item
.
check
)
item
.
check
=
false
})
},
// 业务-登记情形选择
handleSelectYw
(
item
,
list
)
{
...
...
@@ -135,7 +134,6 @@ export default {
this
.
btnDisabled
=
false
this
.
bsmSqyw
=
item
.
bsmSqyw
this
.
djywbm
=
item
.
djywbm
console
.
log
(
this
.
djywbm
,
'this.djywbm'
);
}
},
handleList
(
list
,
obj
)
{
...
...
@@ -147,11 +145,11 @@ export default {
this
.
$set
(
obj
,
'check'
,
true
)
this
.
getNextNode
(
obj
.
bsmSqyw
)
this
.
djqxList
=
[]
this
.
djlx
List
=
[]
this
.
item
List
=
[]
},
// 获取下个节点类型
getNextNode
(
bsmSqyw
,
type
)
{
getNextNode
(
bsmSqyw
,
{
'target'
:
'#ywsq'
}
).
then
(
res
=>
{
getNextNode
(
bsmSqyw
,
type
=
true
)
{
getNextNode
(
bsmSqyw
).
then
(
res
=>
{
if
(
res
.
result
.
djqx
)
this
.
djqxList
=
res
.
result
.
djqx
if
(
res
.
result
.
djlx
)
this
.
djlxList
=
res
.
result
.
djlx
if
(
type
)
{
...
...
@@ -162,6 +160,7 @@ export default {
this
.
$set
(
item
,
'cselect'
,
false
)
})
}
this
.
itemList
=
this
.
djqxList
})
},
handleCollection
(
item
)
{
...
...
@@ -178,15 +177,26 @@ export default {
}
})
}
else
{
deleteCollectBiz
(
item
.
bsmSqyw
).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
item
.
userCollect
=
'2'
that
.
$message
({
message
:
'取消收藏成功!'
,
type
:
'success'
})
that
.
getDataList
()
}
this
.
$confirm
(
'此操作将取消收藏, 是否继续?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
deleteCollectBiz
(
item
.
bsmSqyw
).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
item
.
userCollect
=
'2'
that
.
$message
({
message
:
'取消收藏成功!'
,
type
:
'success'
})
that
.
getDataList
()
}
})
}).
catch
(()
=>
{
this
.
$message
({
type
:
'info'
,
message
:
'已取消收藏'
})
})
}
},
...
...
@@ -198,11 +208,11 @@ export default {
},
// 登记类型
handleDjlxSelect
(
item
)
{
this
.
btnDisabled
=
true
this
.
djlxList
.
forEach
(
item
=>
{
i
f
(
item
.
cselect
)
i
tem
.
cselect
=
false
item
.
cselect
=
false
})
this
.
$set
(
item
,
'cselect'
,
true
)
this
.
btnDisabled
=
true
item
.
cselect
=
true
if
(
item
.
sffqlc
==
'1'
)
{
this
.
btnDisabled
=
false
this
.
bsmSqyw
=
item
.
bsmSqyw
...
...
@@ -225,4 +235,12 @@ export default {
<
style
scoped
lang=
'scss'
>
@import
"~@/styles/mixin.scss"
;
@import
'./ywsq.scss'
;
/
deep
/
.el-collapse-item__content
{
padding-bottom
:
0
;
}
/
deep
/
.el-collapse-item__wrap
{
border-bottom
:
none
;
}
</
style
>
\ No newline at end of file
...
...
src/views/zsgl/zsff/zsff.vue
View file @
340912d
...
...
@@ -6,17 +6,26 @@
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"分发编号"
>
<el-input
v-model=
"
approv
eForm.batchno"
@
clear=
"queryClick()"
clearable
placeholder=
"分发编号"
></el-input>
<el-input
v-model=
"
rul
eForm.batchno"
@
clear=
"queryClick()"
clearable
placeholder=
"分发编号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"领取时间"
>
<el-date-picker
v-model=
"ruleForm.ffsj"
type=
"daterange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
@
change=
"timeChange()"
value-format=
"yyyy-MM-dd HH:mm:ss"
clearable
>
<el-col
:span=
"5"
>
<el-form-item
label=
"开始日期"
>
<el-date-picker
v-model=
"ruleForm.ffkssj"
:picker-options=
"pickerOptionsStart"
type=
"date"
placeholder=
"开始日期"
value-format=
"yyyy-MM-dd"
clearable
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"结束时间"
>
<el-date-picker
v-model=
"ruleForm.ffjssj"
:picker-options=
"pickerOptionsEnd"
type=
"date"
placeholder=
"结束日期"
value-format=
"yyyy-MM-dd"
clearable
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"11"
class=
"btnColRight"
>
<el-col
:span=
"9"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
native-type=
"submit"
@
click=
"queryClick()"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"openDialog()"
>
新增
</el-button>
...
...
@@ -55,10 +64,6 @@ export default {
isDialog
:
false
,
value
:
''
,
ruleForm
:
{
batchno
:
""
,
ffsj
:
""
},
approveForm
:
{
batchno
:
''
,
ffkssj
:
''
,
ffjssj
:
''
...
...
@@ -68,6 +73,26 @@ export default {
columns
:
datas
.
columns
(),
data
:
[],
},
// 开始结束日期限制
pickerOptionsStart
:
{
disabledDate
:
(
time
)
=>
{
if
(
this
.
ruleForm
.
ffjssj
)
{
return
(
time
.
getTime
()
>=
new
Date
(
this
.
ruleForm
.
ffjssj
).
getTime
()
);
}
}
},
// 结束日期限制
pickerOptionsEnd
:
{
disabledDate
:
(
time
)
=>
{
if
(
this
.
ruleForm
.
ffkssj
)
{
return
(
time
.
getTime
()
<=
new
Date
(
this
.
ruleForm
.
ffkssj
).
getTime
()
);
}
}
}
}
},
methods
:
{
...
...
@@ -76,7 +101,7 @@ export default {
},
// 列表渲染接口
fetchData
()
{
getZsglffList
({
...
this
.
approv
eForm
,
...
this
.
pageData
}).
then
(
res
=>
{
getZsglffList
({
...
this
.
rul
eForm
,
...
this
.
pageData
}).
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
this
.
tableData
.
total
=
total
;
...
...
@@ -100,17 +125,6 @@ export default {
queryClick
()
{
this
.
fetchData
()
},
//修改筛选时间
timeChange
()
{
if
(
this
.
ruleForm
.
ffsj
!=
null
)
{
this
.
approveForm
.
ffkssj
=
this
.
ruleForm
.
ffsj
[
0
];
this
.
approveForm
.
ffjssj
=
this
.
ruleForm
.
ffsj
[
1
];
}
else
{
this
.
approveForm
.
ffkssj
=
''
this
.
approveForm
.
ffjssj
=
''
}
this
.
fetchData
()
},
//确定证书分发
confrimVerify
(
item
)
{
this
.
$confirm
(
'是否确定分发'
,
'提示'
,
{
...
...
@@ -161,4 +175,8 @@ export default {
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
/
deep
/
.el-icon-date
{
display
:
none
;
}
</
style
>
...
...
src/views/zsgl/zsrk/zsrk.vue
View file @
340912d
...
...
@@ -9,14 +9,21 @@
<el-input
v-model=
"ruleForm.batchno"
@
clear=
"queryClick()"
clearable
placeholder=
"入库编号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"人库时间"
>
<el-date-picker
v-model=
"ruleForm.rksj"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
@
change=
"timeChange()"
value-format=
"yyyy-MM-dd HH:mm:ss"
clearable
>
<el-col
:span=
"5"
>
<el-form-item
label=
"开始日期"
>
<el-date-picker
v-model=
"ruleForm.rkkssj"
:picker-options=
"pickerOptionsStart"
type=
"date"
placeholder=
"开始日期"
value-format=
"yyyy-MM-dd"
clearable
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"结束时间"
>
<el-date-picker
v-model=
"ruleForm.rkjssj"
:picker-options=
"pickerOptionsEnd"
type=
"date"
placeholder=
"结束日期"
value-format=
"yyyy-MM-dd"
clearable
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"
11
"
class=
"btnColRight"
>
<el-col
:span=
"
9
"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
native-type=
"submit"
@
click=
"queryClick()"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"openDialog()"
>
新增
</el-button>
...
...
@@ -54,7 +61,6 @@ export default {
isDialog
:
false
,
viewDialog
:
false
,
ruleForm
:
{
rksj
:
''
,
batchno
:
''
,
rkkssj
:
''
,
rkjssj
:
''
...
...
@@ -64,7 +70,27 @@ export default {
columns
:
datas
.
columns
(),
data
:
[],
},
};
// 开始结束日期限制
pickerOptionsStart
:
{
disabledDate
:
(
time
)
=>
{
if
(
this
.
ruleForm
.
rkjssj
)
{
return
(
time
.
getTime
()
>=
new
Date
(
this
.
ruleForm
.
rkjssj
).
getTime
()
);
}
}
},
// 结束日期限制
pickerOptionsEnd
:
{
disabledDate
:
(
time
)
=>
{
if
(
this
.
ruleForm
.
rkkssj
)
{
return
(
time
.
getTime
()
<=
new
Date
(
this
.
ruleForm
.
rkkssj
).
getTime
()
);
}
}
}
}
},
methods
:
{
// 列表渲染接口
...
...
@@ -92,17 +118,6 @@ export default {
queryClick
()
{
this
.
fetchData
()
},
//修改筛选时间
timeChange
(
val
)
{
if
(
this
.
ruleForm
.
rksj
!=
null
)
{
this
.
ruleForm
.
rkkssj
=
this
.
ruleForm
.
rksj
[
0
];
this
.
ruleForm
.
rkjssj
=
this
.
ruleForm
.
rksj
[
1
];
}
else
{
this
.
ruleForm
.
rkkssj
=
''
this
.
ruleForm
.
rkjssj
=
''
}
this
.
fetchData
()
},
//删除证书入库数据
delZsrk
(
item
)
{
this
.
$confirm
(
'确定要删除吗, 是否继续?'
,
'提示'
,
{
...
...
@@ -153,4 +168,8 @@ export default {
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
/
deep
/
.el-icon-date
{
display
:
none
;
}
</
style
>
...
...
src/views/zsgl/zsrk/zsrkdata.js
View file @
340912d
import
filter
from
'@/utils/filter.js'
let
vm
=
null
const
sendThis
=
(
_this
)
=>
{
vm
=
_this
}
...
...
@@ -60,7 +59,6 @@ class data extends filter {
},
{
label
:
'操作'
,
width
:
'200'
,
align
:
'center'
,
fixed
:
'right'
,
render
:
(
h
,
scope
)
=>
{
...
...
Please
register
or
sign in
to post a comment