Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-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
90e3f601
authored
2023-02-28 11:35:16 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
样式调整
1 parent
9d048f3e
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
346 additions
and
321 deletions
src/components/JsonEditors/index.vue
src/styles/element-ui.scss
src/utils/asyncRouter.js
src/views/jsbwcx/index.vue
src/views/system/menus/edit-dialog.vue
src/views/system/roles/edit-dialog.vue
src/views/system/roles/index.vue
src/views/system/roles/roleslistdiglog.vue
src/views/system/users/index.vue
src/components/JsonEditors/index.vue
View file @
90e3f60
...
...
@@ -2,6 +2,7 @@
<div>
<i
class=
"el-icon-s-management icon"
:title=
"title"
@
click=
"openDialog"
/>
<el-dialog
class=
"configuration"
:key=
"key"
:title=
"title"
:inner-dialog=
"true"
...
...
@@ -9,8 +10,7 @@
width=
"600px"
:close-on-click-modal=
"false"
append-to-body
@
cancel=
"cancel"
>
@
cancel=
"cancel"
>
<vue-json-editor
id=
"minejson"
v-model=
"resultInfo"
...
...
@@ -18,15 +18,13 @@
lang=
"zh"
@
json-change=
"onJsonChange"
@
json-save=
"onJsonSave"
@
has-error=
"onError"
/>
@
has-error=
"onError"
/>
<el-tooltip
content=
"全屏缩放"
effect=
"dark"
placement=
"bottom"
fullscreen
class=
"fullScreen"
>
class=
"fullScreen"
>
<i
class=
"el-icon-full-screen"
@
click=
"enLarge"
/>
</el-tooltip>
<template
slot=
"footer"
>
...
...
@@ -34,142 +32,156 @@
<el-button
type=
"primary"
class=
"confirmBtn"
@
click=
"onJsonSave"
>
保存
</el-button>
@
click=
"onJsonSave"
>
保存
</el-button>
<el-button
type=
"primary"
class=
"cancelBtn"
@
click=
"cancel"
>
关闭
</el-button>
@
click=
"cancel"
>
关闭
</el-button>
</div>
</
template
>
</el-dialog>
</div>
</template>
<
script
>
import
vueJsonEditor
from
'vue-json-editor'
export
default
{
components
:
{
vueJsonEditor
},
props
:
{
title
:
{
type
:
String
,
default
:
'配置参数'
import
vueJsonEditor
from
'vue-json-editor'
export
default
{
components
:
{
vueJsonEditor
},
resultInfos
:
{
type
:
String
,
default
:
''
}
},
data
()
{
return
{
activeNames
:
[],
resultInfo
:
{},
tmpResultInfo
:
{},
dialogVisible
:
false
,
hasJsonFlag
:
true
,
key
:
0
,
isEnlarge
:
false
}
},
watch
:
{
resultInfos
:
{
handler
:
function
(
val
)
{
++
this
.
key
this
.
resultInfo
=
this
.
resultInfos
===
''
?
{}
:
JSON
.
parse
(
this
.
resultInfos
)
this
.
tmpResultInfo
=
this
.
resultInfo
props
:
{
title
:
{
type
:
String
,
default
:
'配置参数'
},
deep
:
true
,
immediate
:
true
}
},
mounted
()
{
this
.
resultInfo
=
this
.
resultInfos
===
''
?
{}
:
JSON
.
parse
(
this
.
resultInfos
)
},
methods
:
{
onJsonChange
(
value
)
{
// 只有在格式正确的时候进入此事件
this
.
hasJsonFlag
=
true
},
onJsonSave
()
{
const
value
=
this
.
resultInfo
console
.
log
(
this
.
resultInfo
,
'resultInfo'
)
if
(
this
.
hasJsonFlag
===
false
)
{
this
.
$message
.
error
({
message
:
'json格式验证失败'
,
showClose
:
true
})
// alert("json验证失败")
return
false
}
else
{
this
.
dialogVisible
=
false
this
.
$emit
(
'getJsonString'
,
JSON
.
stringify
(
value
))
return
true
resultInfos
:
{
type
:
String
,
default
:
''
}
},
onError
(
value
)
{
this
.
hasJsonFlag
=
false
data
()
{
return
{
activeNames
:
[],
resultInfo
:
{},
tmpResultInfo
:
{},
dialogVisible
:
false
,
hasJsonFlag
:
true
,
key
:
0
,
isEnlarge
:
false
}
},
openDialog
()
{
this
.
dialogVisible
=
true
watch
:
{
resultInfos
:
{
handler
:
function
(
val
)
{
++
this
.
key
this
.
resultInfo
=
this
.
resultInfos
===
''
?
{}
:
JSON
.
parse
(
this
.
resultInfos
)
this
.
tmpResultInfo
=
this
.
resultInfo
},
deep
:
true
,
immediate
:
true
}
},
cancel
()
{
console
.
log
(
this
.
tmpResultInfo
,
'tmpResultInfo'
)
this
.
resultInfo
=
this
.
tmpResultInfo
this
.
dialogVisible
=
false
mounted
()
{
this
.
resultInfo
=
this
.
resultInfos
===
''
?
{}
:
JSON
.
parse
(
this
.
resultInfos
)
},
// 放大
enLarge
()
{
const
fullarea
=
document
.
getElementById
(
'minejson'
)
if
(
fullarea
.
requestFullscreen
)
{
fullarea
.
requestFullscreen
()
}
else
if
(
fullarea
.
webkitRequestFullScreen
)
{
fullarea
.
webkitRequestFullScreen
()
// webkit内核(chrome、safari、Opera等)
}
else
if
(
fullarea
.
mozRequestFullScreen
)
{
fullarea
.
mozRequestFullScreen
()
// moz内核(firefox)
}
else
if
(
fullarea
.
msRequestFullscreen
)
{
fullarea
.
msRequestFullscreen
()
// IE11、edge
methods
:
{
onJsonChange
(
value
)
{
// 只有在格式正确的时候进入此事件
this
.
hasJsonFlag
=
true
},
onJsonSave
()
{
const
value
=
this
.
resultInfo
console
.
log
(
this
.
resultInfo
,
'resultInfo'
)
if
(
this
.
hasJsonFlag
===
false
)
{
this
.
$message
.
error
({
message
:
'json格式验证失败'
,
showClose
:
true
})
// alert("json验证失败")
return
false
}
else
{
this
.
dialogVisible
=
false
this
.
$emit
(
'getJsonString'
,
JSON
.
stringify
(
value
))
return
true
}
},
onError
(
value
)
{
this
.
hasJsonFlag
=
false
},
openDialog
()
{
this
.
dialogVisible
=
true
},
cancel
()
{
console
.
log
(
this
.
tmpResultInfo
,
'tmpResultInfo'
)
this
.
resultInfo
=
this
.
tmpResultInfo
this
.
dialogVisible
=
false
},
// 放大
enLarge
()
{
const
fullarea
=
document
.
getElementById
(
'minejson'
)
if
(
fullarea
.
requestFullscreen
)
{
fullarea
.
requestFullscreen
()
}
else
if
(
fullarea
.
webkitRequestFullScreen
)
{
fullarea
.
webkitRequestFullScreen
()
// webkit内核(chrome、safari、Opera等)
}
else
if
(
fullarea
.
mozRequestFullScreen
)
{
fullarea
.
mozRequestFullScreen
()
// moz内核(firefox)
}
else
if
(
fullarea
.
msRequestFullscreen
)
{
fullarea
.
msRequestFullscreen
()
// IE11、edge
}
this
.
isEnlarge
=
true
}
this
.
isEnlarge
=
true
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
/* jsoneditor右上角默认有一个链接,加css去掉了 */
.icon
{
color
:
#349af3
;
}
/
deep
/
.jsoneditor-vue
{
height
:
100%
;
}
.fullScreen
{
position
:
absolute
;
right
:
5%
;
top
:
22%
;
cursor
:
pointer
;
color
:
#fff
;
}
/
deep
/
.jsoneditor-modes
{
display
:
none
!important
;
}
.jsoneditor-poweredBy
{
display
:
none
!important
;
}
.jsoneditor-menu
{
background-color
:
#9c9e9f
!important
;
border-bottom
:
1px
solid
#9c9e9f
!important
;
}
.jsoneditor
{
border
:
1px
solid
#9c9e9f
!important
;
}
.el-collapse
{
border
:
0
;
}
.el-collapse-item__header
{
height
:
44px
;
}
/* jsoneditor右上角默认有一个链接,加css去掉了 */
.icon
{
color
:
#349af3
;
}
/
deep
/
.jsoneditor-vue
{
height
:
100%
;
}
.fullScreen
{
position
:
absolute
;
right
:
5%
;
top
:
20%
;
cursor
:
pointer
;
color
:
#fff
;
}
/
deep
/
.jsoneditor-modes
{
display
:
none
!important
;
}
/
deep
/
.jsoneditor-poweredBy
{
display
:
none
!important
;
}
.jsoneditor-menu
{
background-color
:
#9c9e9f
!important
;
border-bottom
:
1px
solid
#9c9e9f
!important
;
}
.jsoneditor
{
border
:
1px
solid
#9c9e9f
!important
;
}
.el-collapse
{
border
:
0
;
}
.el-collapse-item__header
{
height
:
44px
;
}
.configuration
{
color
:
white
;
margin-top
:
6vh
;
/deep/.el-dialog
{
background-color
:
#031a46
!important
;
border
:
1px
solid
#5f82c7
;
.el-dialog__header
{
.el-dialog__title
{
color
:
white
!important
;
}
.el-dialog__headerbtn
{
top
:
20px
;
}
}
}
}
</
style
>
...
...
src/styles/element-ui.scss
View file @
90e3f60
...
...
@@ -519,3 +519,31 @@ tr:hover {
color
:
white
;
}
}
// 上级菜单
.el-cascader__dropdown
{
background-color
:
#031a46
;
border
:
1px
solid
#5f82c7
;
}
.el-cascader-menu
{
color
:
white
;
}
.el-radio
{
.el-cascader-menu
:hover
{
color
:
white
;
}
}
.el-cascader-node
:not
(
.is-disabled
)
:hover
,
.el-cascader-node
:not
(
.is-disabled
)
:focus
{
background
:
#F5F7FA
;
background-image
:
initial
;
background-position-x
:
initial
;
background-position-y
:
initial
;
background-size
:
initial
;
background-repeat-x
:
initial
;
background-repeat-y
:
initial
;
background-attachment
:
initial
;
background-origin
:
initial
;
background-clip
:
initial
;
background-color
:
rgb
(
80
,
142
,
235
);
}
...
...
src/utils/asyncRouter.js
View file @
90e3f60
...
...
@@ -21,4 +21,4 @@ export default function filterAsyncRouter (routers) {
}
function
loadView
(
view
)
{
return
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
`@/views
${
view
}
.vue`
)))
}
\ No newline at end of file
}
...
...
src/views/jsbwcx/index.vue
View file @
90e3f60
...
...
@@ -99,187 +99,188 @@
</
template
>
<
script
>
// 接收报文查询
// 引入表格头部数据
import
data
from
"./data"
;
// 引入table混入方法
import
tableMixin
from
"@/mixins/tableMixin.js"
;
import
{
getReceiveDataReportPage
}
from
"@/api/dataReport.js"
;
// 引入详情弹框
import
dataDetails
from
"@/components/EditDialog"
;
//引入日期处理方法
import
{
timeFormat
}
from
"@/utils/operation"
;
export
default
{
name
:
"jsbwcx"
,
mixins
:
[
tableMixin
],
// 注册组件
components
:
{
dataDetails
,
},
data
()
{
return
{
pickerOptionsStart
:
{
disabledDate
:
(
time
)
=>
{
let
endDateVal
=
this
.
form
.
receiveEndTime
;
if
(
endDateVal
)
{
return
(
time
.
getTime
()
>=
new
Date
(
endDateVal
).
getTime
()
);
}
// 接收报文查询
// 引入表格头部数据
import
data
from
"./data"
;
// 引入table混入方法
import
tableMixin
from
"@/mixins/tableMixin.js"
;
import
{
getReceiveDataReportPage
}
from
"@/api/dataReport.js"
;
// 引入详情弹框
import
dataDetails
from
"@/components/EditDialog"
;
//引入日期处理方法
import
{
timeFormat
}
from
"@/utils/operation"
;
export
default
{
name
:
"jsbwcx"
,
mixins
:
[
tableMixin
],
// 注册组件
components
:
{
dataDetails
,
},
data
()
{
return
{
pickerOptionsStart
:
{
disabledDate
:
(
time
)
=>
{
let
endDateVal
=
this
.
form
.
receiveEndTime
;
if
(
endDateVal
)
{
return
(
time
.
getTime
()
>=
new
Date
(
endDateVal
).
getTime
()
);
}
},
},
},
pickerOptionsEnd
:
{
disabledDate
:
(
time
)
=>
{
let
beginDateVal
=
this
.
form
.
receiveStartTime
;
if
(
beginDateVal
)
{
return
(
time
.
getTime
()
<
new
Date
(
beginDateVal
).
getTime
()
);
}
pickerOptionsEnd
:
{
disabledDate
:
(
time
)
=>
{
let
beginDateVal
=
this
.
form
.
receiveStartTime
;
if
(
beginDateVal
)
{
return
(
time
.
getTime
()
<
new
Date
(
beginDateVal
).
getTime
()
);
}
}
,
},
},
// 表格数据
form
:
{
qxdm
:
""
,
// 行政区
receiveStartTime
:
""
,
// 开始日期
receiveEndTime
:
""
,
// 结束日期
bdcdyh
:
""
,
// 不动产单元号
ywh
:
""
,
// 业务号
qllx
:
""
,
// 权利类型
djlx
:
""
,
// 登记类型
jcjg
:
""
,
// 检查结果
rkjg
:
""
,
//入库结果
currentPage
:
1
},
// 校验规则
rules
:
{
pcode
:
[{
required
:
true
,
message
:
"请选择行政区"
,
trigger
:
"change"
}],
startTime
:
[
{
required
:
true
,
message
:
"请选择开始日期"
,
trigger
:
"change"
},
],
endTime
:
[
{
required
:
true
,
message
:
"请选择结束日期"
,
trigger
:
"change"
},
],
bdcdyh
:
[
{
required
:
true
,
message
:
"不动产单元号"
,
trigger
:
"change"
},
],
ywmc
:
[{
required
:
true
,
message
:
"业务名称"
,
trigger
:
"change"
}],
jcjg
:
[{
required
:
true
,
message
:
"检查结果"
,
trigger
:
"change"
}],
rkjg
:
[{
required
:
true
,
message
:
"入库结果"
,
trigger
:
"change"
}],
},
// 表格数据
tableData
:
{
// 表格头部
columns
:
[
{
label
:
"序号"
,
type
:
"index"
,
width
:
"50"
,
index
:
this
.
indexMethod
,
}
]
.
concat
(
data
.
columns
())
.
concat
([
// 表格数据
form
:
{
qxdm
:
""
,
// 行政区
receiveStartTime
:
""
,
// 开始日期
receiveEndTime
:
""
,
// 结束日期
bdcdyh
:
""
,
// 不动产单元号
ywh
:
""
,
// 业务号
qllx
:
""
,
// 权利类型
djlx
:
""
,
// 登记类型
jcjg
:
""
,
// 检查结果
rkjg
:
""
,
//入库结果
currentPage
:
1
},
// 校验规则
rules
:
{
pcode
:
[{
required
:
true
,
message
:
"请选择行政区"
,
trigger
:
"change"
}],
startTime
:
[
{
required
:
true
,
message
:
"请选择开始日期"
,
trigger
:
"change"
},
],
endTime
:
[
{
required
:
true
,
message
:
"请选择结束日期"
,
trigger
:
"change"
},
],
bdcdyh
:
[
{
required
:
true
,
message
:
"不动产单元号"
,
trigger
:
"change"
},
],
ywmc
:
[{
required
:
true
,
message
:
"业务名称"
,
trigger
:
"change"
}],
jcjg
:
[{
required
:
true
,
message
:
"检查结果"
,
trigger
:
"change"
}],
rkjg
:
[{
required
:
true
,
message
:
"入库结果"
,
trigger
:
"change"
}],
},
// 表格数据
tableData
:
{
// 表格头部
columns
:
[
{
label
:
"操作"
,
width
:
"90"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
el
-
button
type
=
"primary"
onClick
=
{()
=>
{
this
.
handleDetails
(
scope
.
row
);
}}
>
详情
<
/el-button
>
<
/div
>
)
label
:
"序号"
,
type
:
"index"
,
width
:
"50"
,
index
:
this
.
indexMethod
,
}
]
.
concat
(
data
.
columns
())
.
concat
([
{
label
:
"操作"
,
width
:
"90"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
el
-
button
type
=
"primary"
onClick
=
{()
=>
{
this
.
handleDetails
(
scope
.
row
);
}}
>
详情
<
/el-button
>
<
/div
>
)
}
}
]),
// 表格列表数据
total
:
0
,
data
:
[],
},
// 分页
pageData
:
{
total
:
0
,
pageSize
:
10
,
current
:
1
},
title
:
""
,
};
},
methods
:
{
//截止日期变化
endTimeChange
(
val
)
{
this
.
form
.
receiveEndTime
=
timeFormat
(
new
Date
(
val
),
true
)
},
// 初始化数据
queryClick
()
{
getReceiveDataReportPage
({
...
this
.
form
,
...
this
.
formData
}).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
console
.
log
(
"菜单列表"
,
res
);
let
{
total
,
records
,
current
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
records
?
records
:
[];
this
.
pageData
.
current
=
current
}
]),
// 表格列表数据
total
:
0
,
data
:
[],
}
)
},
//
分页
pageData
:
{
t
otal
:
0
,
pageSize
:
10
,
current
:
1
//
重置
resetForm
()
{
t
his
.
$refs
.
ruleForm
.
resetFields
();
this
.
form
.
currentPage
=
1
this
.
queryClick
();
},
title
:
""
,
};
},
methods
:
{
//截止日期变化
endTimeChange
(
val
)
{
this
.
form
.
receiveEndTime
=
timeFormat
(
new
Date
(
val
),
true
)
},
// 初始化数据
queryClick
()
{
getReceiveDataReportPage
({
...
this
.
form
,
...
this
.
formData
}).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
,
current
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
records
?
records
:
[];
this
.
pageData
.
current
=
current
}
}
)
},
// 重置
resetForm
()
{
this
.
$refs
.
ruleForm
.
resetFields
();
this
.
form
.
currentPage
=
1
this
.
queryClick
();
},
featchData
()
{
this
.
queryClick
();
},
// 结果
handleResult
(
row
)
{
this
.
$popupDialog
(
'响应结果'
,
'views/jsbwcx/components/result'
,
row
)
},
// 详情
handleDetails
(
row
)
{
if
(
row
.
rectypeName
)
{
this
.
title
=
row
.
rectypeName
}
else
{
let
Title
=
''
this
.
dicData
[
'A21'
].
map
(
item
=>
{
if
(
item
.
DCODE
==
row
.
DJLX
||
item
.
DCODE
==
row
.
djlx
)
{
Title
=
item
.
DNAME
return
}
})
featchData
()
{
this
.
queryClick
();
},
// 结果
handleResult
(
row
)
{
this
.
$popupDialog
(
'响应结果'
,
'views/jsbwcx/components/result'
,
row
)
},
// 详情
handleDetails
(
row
)
{
if
(
row
.
rectypeName
)
{
this
.
title
=
row
.
rectypeName
}
else
{
let
Title
=
''
this
.
dicData
[
'A21'
].
map
(
item
=>
{
if
(
item
.
DCODE
==
row
.
DJLX
||
item
.
DCODE
==
row
.
djlx
)
{
Title
=
item
.
DNAME
return
}
})
this
.
dicData
[
'A8'
].
map
(
item
=>
{
if
(
item
.
DCODE
==
row
.
QLLX
||
item
.
DCODE
==
row
.
qllx
)
{
Title
+=
'-'
+
item
.
DNAME
return
}
})
this
.
title
=
Title
}
this
.
$refs
.
editLog
.
isShow
(
row
);
if
(
row
.
receiveState
==
2
)
{
this
.
$store
.
dispatch
(
'business/setReportLogEdit'
)
}
else
{
this
.
$store
.
dispatch
(
'business/setEdit'
)
}
},
this
.
dicData
[
'A8'
].
map
(
item
=>
{
if
(
item
.
DCODE
==
row
.
QLLX
||
item
.
DCODE
==
row
.
qllx
)
{
Title
+=
'-'
+
item
.
DNAME
return
}
})
this
.
title
=
Title
}
this
.
$refs
.
editLog
.
isShow
(
row
);
if
(
row
.
receiveState
==
2
)
{
this
.
$store
.
dispatch
(
'business/setReportLogEdit'
)
}
else
{
this
.
$store
.
dispatch
(
'business/setEdit'
)
}
},
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
//
引入表单整体样式
@import
"~@/styles/public.scss"
;
//
引入当前
css
@import
"./index.scss"
;
//
引入表单整体样式
@import
"~@/styles/public.scss"
;
//
引入当前
css
@import
"./index.scss"
;
</
style
>
...
...
src/views/system/menus/edit-dialog.vue
View file @
90e3f60
...
...
@@ -272,4 +272,5 @@
/
deep
/
.el-input__inner
{
background-color
:
#07388b
;
}
</
style
>
...
...
src/views/system/roles/edit-dialog.vue
View file @
90e3f60
...
...
@@ -8,7 +8,7 @@
<template
slot=
"content"
>
<el-form
ref=
"form"
:model=
"dialogForm"
:rules=
"rules"
label-width=
"82px"
>
<el-row
:gutter=
"24"
>
<el-col
:span=
"1
2
"
>
<el-col
:span=
"1
5
"
>
<el-form-item
label=
"角色名称:"
prop=
"roleName"
>
<el-input
v-model=
"dialogForm.roleName"
...
...
@@ -16,7 +16,9 @@
placeholder=
"角色名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
</el-row>
<el-row
:gutter=
"24"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"角色类型:"
prop=
"roleType"
>
<el-input
v-model=
"dialogForm.roleType"
...
...
@@ -25,7 +27,6 @@
</el-form-item>
</el-col>
</el-row>
<br>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"备注:"
class=
"form-item-mb0"
>
...
...
src/views/system/roles/index.vue
View file @
90e3f60
...
...
@@ -14,9 +14,7 @@
</div>
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"pageData.total"
:pagination=
"false"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
...
...
@@ -219,11 +217,6 @@
]),
data
:
[],
},
pageData
:
{
total
:
5
,
pageSize
:
15
,
current
:
1
,
},
};
},
created
()
{
...
...
@@ -242,6 +235,7 @@
Builtinrole
=
res
.
content
;
getRolesById
(
2
)
.
then
((
res
)
=>
{
console
.
log
(
"角色列表"
,
res
);
Publicrole
=
res
.
content
;
this
.
listdata
=
Builtinrole
.
concat
(
Publicrole
);
...
...
src/views/system/roles/roleslistdiglog.vue
View file @
90e3f60
...
...
@@ -594,13 +594,8 @@
display
:
flex
;
margin-bottom
:
15px
;
}
.dialog_footer
{
flex-direction
:
column
;
.dialog_button
{
margin-top
:
8px
;
}
.el-dialog__footer
{
padding-right
:
40px
;
}
.divider
{
...
...
src/views/system/users/index.vue
View file @
90e3f60
...
...
@@ -17,9 +17,7 @@
</div>
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"pageData.total"
:pagination=
"false"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
...
...
@@ -182,11 +180,6 @@
]),
data
:
[],
},
pageData
:
{
total
:
5
,
pageSize
:
15
,
current
:
1
,
},
};
},
created
()
{
...
...
@@ -209,6 +202,7 @@
departmentId
:
this
.
departmentid
.
departmentId
,
};
getUserList
(
this
.
queryParam
).
then
((
res
)
=>
{
console
.
log
(
"人员列表"
,
res
);
if
(
res
.
status
===
1
)
{
this
.
loading
=
false
;
this
.
tableData
.
data
=
res
.
content
;
...
...
@@ -316,5 +310,4 @@
.btnColRight
{
margin-top
:
20px
;
}
</
style
>
...
...
Please
register
or
sign in
to post a comment