Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xichonght
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangdishen
xichonght
Commits
65ddd66f
Commit
65ddd66f
authored
Jul 31, 2019
by
qddidi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dd
parent
26567f74
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
175 additions
and
460 deletions
+175
-460
defaultPicture.jpg
xichongSys/src/assets/defaultPicture.jpg
+0
-0
getlist.js
xichongSys/src/http/moudules/getlist.js
+17
-8
index.js
xichongSys/src/router/index.js
+4
-8
datetime.js
xichongSys/src/utils/datetime.js
+5
-15
global.js
xichongSys/src/utils/global.js
+2
-1
Cbdj.vue
xichongSys/src/views/Myvue/Cbdj.vue
+2
-1
allbaseInfo.vue
xichongSys/src/views/Myvue/allbaseInfo.vue
+0
-342
flow.vue
xichongSys/src/views/Myvue/flow.vue
+80
-31
newsupdata.vue
xichongSys/src/views/Myvue/newsupdata.vue
+9
-9
rzrecord.vue
xichongSys/src/views/Myvue/rzrecord.vue
+37
-27
shrecord.vue
xichongSys/src/views/Myvue/shrecord.vue
+19
-18
No files found.
xichongSys/src/assets/defaultPicture.jpg
0 → 100644
View file @
65ddd66f
6.99 KB
xichongSys/src/http/moudules/getlist.js
View file @
65ddd66f
...
...
@@ -13,6 +13,7 @@ export const shenhe = (data) => {
data
})
}
//流程
export
const
selectflowlist
=
(
data
)
=>
{
return
axios
({
url
:
'/folw/selectflowlist'
,
...
...
@@ -20,6 +21,22 @@ export const selectflowlist = (data) => {
data
})
}
export
const
selectRoleName
=
(
data
)
=>
{
return
axios
({
url
:
'role/selectRoleName'
,
method
:
'post'
,
data
})
}
export
const
insertFolwCourse
=
(
data
)
=>
{
return
axios
({
url
:
'folw/insertFolwCourse'
,
method
:
'post'
,
data
})
}
export
const
selectRoleinfo
=
(
params
)
=>
{
return
axios
({
url
:
'/role/selectRoleinfo'
,
...
...
@@ -75,12 +92,4 @@ export const shebao = (params) => {
})
}
export
const
listAllBaseInfo
=
(
data
)
=>
{
return
axios
({
url
:
'/baseInfo/getAllBaseInfo'
,
method
:
'post'
,
data
})
}
xichongSys/src/router/index.js
View file @
65ddd66f
...
...
@@ -17,7 +17,7 @@ import drcbdj from "@/views/Myvue/drcbdj"
import
xxbg
from
"@/views/Myvue/xxbg"
import
Record
from
"@/views/Myvue/rzrecord"
import
Newsupdata
from
"@/views/Myvue/newsupdata"
import
AllbaseInfo
from
"@/views/Myvue/allbaseInfo"
Vue
.
use
(
Router
)
const
router
=
new
Router
({
...
...
@@ -27,9 +27,9 @@ const router = new Router({
name
:
'首页'
,
component
:
Home
,
children
:
[
{
path
:
''
,
name
:
'系统介绍'
,
{
path
:
''
,
name
:
'系统介绍'
,
component
:
Intro
,
meta
:
{
icon
:
'fa fa-home fa-lg'
,
...
...
@@ -75,10 +75,6 @@ const router = new Router({
path
:
"/newsupdata"
,
name
:
"新闻发布"
,
component
:
Newsupdata
},{
path
:
"/allbaseInfo"
,
name
:
"覆盖人员"
,
component
:
AllbaseInfo
}
]
},
...
...
xichongSys/src/utils/datetime.js
View file @
65ddd66f
...
...
@@ -11,12 +11,8 @@
export
function
format
(
datetime
)
{
return
formatWithSeperator
(
datetime
,
"-"
,
":"
);
}
export
function
formatDate
(
datetime
)
{
return
formatWithSeperator
(
datetime
,
"-"
);
}
/**
*
* 时间格式化
* 将 2018-09-23T11:54:16.000+0000 格式化成类似 2018/09/23 11:54:16
* 可以指定日期和时间分隔符
...
...
@@ -26,18 +22,12 @@ export function formatWithSeperator (datetime, dateSeprator, timeSeprator) {
if
(
datetime
!=
null
)
{
const
dateMat
=
new
Date
(
datetime
);
const
year
=
dateMat
.
getFullYear
();
const
month
=
addZoo
(
dateMat
.
getMonth
()
+
1
);
const
day
=
addZoo
(
dateMat
.
getDate
());
const
hh
=
addZoo
(
dateMat
.
getHours
());
const
mm
=
addZoo
(
dateMat
.
getMinutes
());
const
ss
=
addZoo
(
dateMat
.
getSeconds
());
if
(
!
timeSeprator
){
return
year
+
dateSeprator
+
month
+
dateSeprator
+
day
;
}
const
month
=
dateMat
.
getMonth
()
+
1
;
const
day
=
dateMat
.
getDate
();
const
hh
=
dateMat
.
getHours
();
const
mm
=
dateMat
.
getMinutes
();
const
ss
=
dateMat
.
getSeconds
();
const
timeFormat
=
year
+
dateSeprator
+
month
+
dateSeprator
+
day
+
" "
+
hh
+
timeSeprator
+
mm
+
timeSeprator
+
ss
;
return
timeFormat
;
}
}
function
addZoo
(
val
)
{
return
val
<
9
?
0
+
""
+
val
:
val
;
}
xichongSys/src/utils/global.js
View file @
65ddd66f
...
...
@@ -6,12 +6,13 @@
// 后台管理系统服务器地址
//export const baseUrl = 'http://172.16.10.33:9002'
export
const
baseUrl
=
'http://172.16.10.25:9009'
//export const baseUrl2 ="http://172.16.10.33:9002"
export
const
baseUrl2
=
'http://172.16.10.25:9999'
// 系统数据备份还原服务器地址
//export const backupBaseUrl = 'http://localhost:8002'
//export const baseUrl = 'http://faceauth.weface.com.cn:98'
export
const
baseUrl
=
'http://172.16.10.3
3:9002'
//export const baseUrl = 'http://172.16.10.16
3:9002'
export
default
{
baseUrl
,
...
...
xichongSys/src/views/Myvue/Cbdj.vue
View file @
65ddd66f
...
...
@@ -279,8 +279,9 @@ export default {
this
.
urls
.
push
(
"http://socialsecurity.oss-cn-beijing.aliyuncs.com/"
+
obj
.
idcardbackpic
)
this
.
urls
.
push
(
"http://socialsecurity.oss-cn-beijing.aliyuncs.com/"
+
obj
.
idcardfrontpic
)
this
.
urls
.
push
(
"http://socialsecurity.oss-cn-beijing.aliyuncs.com/"
+
obj
.
idcardbackpic
)
console
.
log
(
this
.
form
)
this
.
form
.
sex
=
this
.
form
.
sex
==
1
?
"男"
:
"女"
...
...
xichongSys/src/views/Myvue/allbaseInfo.vue
deleted
100644 → 0
View file @
26567f74
This diff is collapsed.
Click to expand it.
xichongSys/src/views/Myvue/flow.vue
View file @
65ddd66f
...
...
@@ -2,7 +2,7 @@
<div>
<div
class=
"op"
>
<el-button
type=
"primary"
@
click=
"
dialogVisible = true
"
size=
"mini"
style=
"background:#148A9B;margin-left:10px"
icon=
"el-icon-circle-plus-outline"
>
新增
</el-button>
<el-button
type=
"primary"
@
click=
"
showadd
"
size=
"mini"
style=
"background:#148A9B;margin-left:10px"
icon=
"el-icon-circle-plus-outline"
>
新增
</el-button>
</div>
<el-table
...
...
@@ -62,20 +62,24 @@
<el-dialog
title=
"新增流程"
:visible
.
sync=
"dialogVisible"
width=
"30%"
width=
"60%"
>
<el-input
style=
"margin-bottom:20px"
placeholder=
"请输入流程标题"
v-model=
"flowname"
clearable
>
</el-input>
<el-select
v-model=
"title"
clearable
placeholder=
"请选择标题"
style=
"margin-bottom:10px;width:100%"
>
<el-option
v-for=
"item in titleList"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
<el-select
style=
"width:100%"
v-model=
"value"
multiple
filterable
@
visible-change=
"toshow"
default-first-option
placeholder=
"请编辑流程"
>
<el-option
...
...
@@ -86,6 +90,7 @@
:value=
"item.value"
>
</el-option>
</el-select>
<div
class=
"iii"
v-show=
"showiii"
></div>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"del"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"addflow"
>
确 定
</el-button>
...
...
@@ -115,14 +120,32 @@
margin
:
0
auto
;
width
:
100px
}
.iii
{
height
:
200px
}
</
style
>
<
script
>
import
CryptoJS
from
'crypto-js'
import
{
format
}
from
"../../utils/datetime"
console
.
log
(
format
)
// import baseUrl from "../../globe/globeUrl"
export
default
{
data
()
{
return
{
showiii
:
false
,
//标题
title
:
""
,
titleList
:[{
label
:
"参保登记审核流程"
,
value
:
"1,参保登记审核流程"
},{
label
:
"信息变更审核流程"
,
value
:
"2,信息变更审核流程"
},{
label
:
"待遇申请审核流程"
,
value
:
"3,待遇申请审核流程"
}],
flowname
:
""
,
dialogVisible
:
false
,
step
:
''
,
...
...
@@ -130,40 +153,66 @@
totals
:
0
,
input
:
""
,
info
:
''
,
tableData
:
[{
id
:
1
,
name
:
"邹"
,
creattime
:
"2019-1-1"
,
person
:
'迪迪'
}],
options
:
[{
value
:
'初审'
,
label
:
'初审'
},
{
value
:
'复核'
,
label
:
'复核'
},
{
value
:
'稽查'
,
label
:
'稽查'
},
{
value
:
'领导审核'
,
label
:
'领导审核'
}],
tableData
:
[],
options
:
[],
value
:
[]
}
},
methods
:{
current_change
(
s
){
},
toshow
(
s
){
this
.
showiii
=
s
},
del
(){
this
.
dialogVisible
=
false
},
//获取流程
showadd
(){
this
.
options
=
[]
this
.
dialogVisible
=
true
this
.
$api
.
getlist
.
selectRoleName
().
then
((
res
)
=>
{
if
(
res
.
code
==
200
){
for
(
var
i
in
res
.
data
){
this
.
options
.
push
({
label
:
res
.
data
[
i
].
name
,
value
:
res
.
data
[
i
].
name
})
}
}
else
{
alert
(
JSON
.
stringify
(
res
))
}
}).
catch
((
res
)
=>
{
});
},
//新增流程
addflow
()
{
this
.
dialogVisible
=
true
console
.
log
(
this
.
value
)
console
.
log
(
this
.
value
)
for
(
var
d
in
this
.
tableData
){
if
(
this
.
tableData
[
d
].
type
==
this
.
title
.
split
(
","
)[
0
]){
this
.
$message
.
error
(
'流程已存在,请选择其它流程!'
);
return
}
var
par
=
{
type
:
this
.
title
.
split
(
","
)[
0
],
flowName
:
this
.
title
.
split
(
","
)[
1
],
roleIds
:
""
,
state
:
1
}
this
.
$api
.
getlist
.
insertFolwCourse
(
par
).
then
((
res
)
=>
{
}).
catch
((
res
)
=>
{
});
}
this
.
dialogVisible
=
false
},
indexMethod
(
index
)
{
return
index
+
1
;
...
...
xichongSys/src/views/Myvue/newsupdata.vue
View file @
65ddd66f
...
...
@@ -19,8 +19,8 @@
label=
"操作人"
>
</el-table-column>
<el-table-column
<el-table-column
width=
"180"
label=
"操作"
>
<template
slot-scope=
"scope"
>
...
...
@@ -63,10 +63,10 @@
}
this
.
$api
.
getlist
.
newsList
(
data
).
then
((
res
)
=>
{
this
.
tableData
=
res
.
data
.
list
}).
catch
((
res
)
=>
{
});
});
}
},
created
(){
...
...
@@ -76,10 +76,10 @@
}
this
.
$api
.
getlist
.
newsList
(
data
).
then
((
res
)
=>
{
this
.
tableData
=
res
.
data
.
list
}).
catch
((
res
)
=>
{
});
});
}
}
</
script
>
</
script
>
\ No newline at end of file
xichongSys/src/views/Myvue/rzrecord.vue
View file @
65ddd66f
...
...
@@ -4,7 +4,7 @@
<div
class=
"add"
style=
"margin-left:0"
>
<el-select
size=
"mini"
@
change=
"handleChange"
v-model=
"town"
placeholder=
"请选择乡/镇"
>
<el-select
clearable
size=
"mini"
@
change=
"handleChange"
v-model=
"town"
placeholder=
"请选择乡/镇"
>
<el-option
v-for=
"item in list"
:key=
"item.town_id"
...
...
@@ -14,7 +14,7 @@
</el-select>
</div>
<div
class=
"add"
>
<el-select
size=
"mini"
@
change=
"torz"
v-model=
"village"
placeholder=
"请选择村"
>
<el-select
size=
"mini"
clearable
@
change=
"torz"
v-model=
"village"
placeholder=
"请选择村"
>
<el-option
v-for=
"item2 in list2"
:key=
"item2.village_id"
...
...
@@ -24,13 +24,13 @@
</el-select>
</div>
<div
class=
"nam"
>
<el-input
v-model=
"name"
size=
"mini"
placeholder=
"请输入姓名"
></el-input>
<el-input
v-model=
"name"
clearable
size=
"mini"
placeholder=
"请输入姓名"
></el-input>
</div>
<div
class=
"idc"
>
<el-input
v-model=
"idcard"
size=
"mini"
placeholder=
"请输入身份证号"
></el-input>
<el-input
v-model=
"idcard"
size=
"mini"
clearable
placeholder=
"请输入身份证号"
></el-input>
</div>
<div
class=
"add"
>
<el-select
size=
"mini"
@
change=
"torz"
clearable
v-model=
"state"
placeholder=
"
认证
状态"
>
<el-select
size=
"mini"
@
change=
"torz"
clearable
v-model=
"state"
placeholder=
"
所有
状态"
>
<el-option
v-for=
"item3 in stateList"
:key=
"item3.value"
...
...
@@ -64,7 +64,7 @@
</el-select>
</div>
<div
class=
"add"
>
<el-select
size=
"mini"
@
change=
"torz"
v-model=
"age"
placeholder=
"选择年龄"
>
<el-select
size=
"mini"
@
change=
"torz"
clearable
v-model=
"age"
placeholder=
"选择年龄"
>
<el-option
v-for=
"item4 in ageList"
:key=
"item4.value"
...
...
@@ -74,7 +74,7 @@
</el-select>
</div>
<div
class=
"add"
>
<el-select
size=
"mini"
@
change=
"torz"
v-model=
"agemeth"
placeholder=
"年龄计算方式"
>
<el-select
size=
"mini"
@
change=
"torz"
clearable
v-model=
"agemeth"
placeholder=
"年龄计算方式"
>
<el-option
v-for=
"item5 in agemethList"
:key=
"item5.value"
...
...
@@ -88,9 +88,9 @@
<el-table
:data=
"tableData"
style=
"width: 100%"
:row-class-name=
"tableRowClassName"
>
stripe
>
<el-table-column
prop=
"id
card
"
prop=
"id
Number
"
label=
"身份证号"
width=
"180"
>
</el-table-column>
...
...
@@ -123,7 +123,13 @@
prop=
"createtime"
label=
"认证照片"
>
<template
slot-scope=
"scope"
>
<img
:src=
"scope.row.recordPhotoStr"
width=
"40"
height=
"40"
class=
"head_pic"
/>
<el-popover
placement=
"left"
title=
""
trigger=
"hover"
>
<img
slot=
"reference"
:src=
"scope.row.recordPhotoStr||defaultImg"
height=
"70"
class=
"head_pic"
>
<img
:src=
"scope.row.recordPhotoStr"
height=
"200px"
class=
"head_pic"
/>
</el-popover>
</
template
>
</el-table-column>
...
...
@@ -183,6 +189,7 @@ import Cookies from "js-cookie";
import
{
Loading
}
from
'element-ui'
;
import
{
listtown
}
from
'../../utils/address'
import
{
baseUrl2
}
from
"../../utils/global"
import
defaultImg
from
"../../assets/defaultPicture.jpg"
export
default
{
data
()
{
...
...
@@ -191,6 +198,7 @@ import {baseUrl2} from "../../utils/global"
name
:
""
,
town
:
""
,
village
:
""
,
defaultImg
:
defaultImg
,
cit
:
""
,
Page
:
1
,
totals
:
0
,
...
...
@@ -203,9 +211,6 @@ import {baseUrl2} from "../../utils/global"
//认证状态
state
:
""
,
stateList
:[{
value
:
""
,
label
:
"所有状态"
,
},{
value
:
"0"
,
label
:
"认证成功"
,
},{
...
...
@@ -263,8 +268,12 @@ import {baseUrl2} from "../../utils/global"
},
methods
:
{
//搜索
serch
(){
Loading
.
service
();
this
.
serchs
(
1
)
},
serchs
(
p
){
var
start
=
""
var
end
=
""
if
(
this
.
time
){
...
...
@@ -283,7 +292,7 @@ import {baseUrl2} from "../../utils/global"
city_name
:
"南充市"
,
county_name
:
"西充县"
,
pageSize
:
10
,
page
:
1
,
page
:
p
,
town_name
:
this
.
town
.
split
(
","
)[
1
],
village_name
:
this
.
village
.
split
(
","
)[
1
],
iDCard
:
this
.
idcard
,
...
...
@@ -292,17 +301,25 @@ import {baseUrl2} from "../../utils/global"
end_time
:
end
,
siType
:
this
.
cblx
,
personName
:
this
.
name
,
address
:
this
.
agemeth
address
:
this
.
agemeth
,
birthday
:
this
.
age
}
Axios
.
get
(
baseUrl2
+
'/search/authentication.do'
,{
params
:
data
})
.
then
(
res
=>
{
console
.
log
(
res
)
let
loadingInstance
=
Loading
.
service
();
this
.
$nextTick
(()
=>
{
// 以服务的方式调用的 Loading 需要异步关闭
loadingInstance
.
close
();
});
this
.
tableData
=
res
.
data
.
obj
this
.
totals
=
res
.
data
.
page
.
total_count
})
.
catch
(
err
=>
{
let
loadingInstance
=
Loading
.
service
();
this
.
$nextTick
(()
=>
{
// 以服务的方式调用的 Loading 需要异步关闭
loadingInstance
.
close
();
});
});
},
...
...
@@ -310,16 +327,9 @@ import {baseUrl2} from "../../utils/global"
progress
(
d
,
s
){
},
tableRowClassName
({
row
,
rowIndex
})
{
if
(
rowIndex
===
1
)
{
return
'warning-row'
;
}
else
if
(
rowIndex
===
3
)
{
return
'success-row'
;
}
return
''
;
},
current_change
(
ss
){
this
.
serchs
(
ss
)
},
//
handleChange
(){
...
...
xichongSys/src/views/Myvue/shrecord.vue
View file @
65ddd66f
...
...
@@ -64,7 +64,7 @@
prop=
"nowExamine"
label=
"当前状态"
>
</el-table-column>
<el-table-column
<el-table-column
width=
"180"
label=
"操作"
>
<template
slot-scope=
"scope"
>
...
...
@@ -119,10 +119,10 @@
.op
{
display
:
flex
;
align-items
:
center
;
}
.idc
{
width
:
200px
}
.nam
{
...
...
@@ -154,7 +154,7 @@
// import baseUrl from "../../globe/globeUrl"
export
default
{
data
()
{
return
{
list
:[],
name
:
""
,
...
...
@@ -181,12 +181,13 @@
methods
:
{
//搜索
serch
(){
var
data
=
{
idcard
:
this
.
idcard
?
this
.
Encrypt
(
this
.
idcard
):
""
,
recordType
:
this
.
ywtype
?
parseInt
(
this
.
ywtype
):
""
,
townName
:
''
,
villageName
:
''
}
this
.
$api
.
getlist
.
record
(
data
).
then
((
res
)
=>
{
for
(
var
i
in
res
.
data
.
list
){
...
...
@@ -194,15 +195,15 @@
res
.
data
.
list
[
i
].
name
=
this
.
decrypt
(
res
.
data
.
list
[
i
].
name
)
var
d
=
new
Date
(
res
.
data
.
list
[
i
].
createtime
)
var
mon
=
(
parseInt
(
d
.
getMonth
())
+
1
)
res
.
data
.
list
[
i
].
createtime
=
d
.
getFullYear
()
+
"-"
+
mon
+
"-"
+
d
.
getDate
()
+
" "
+
d
.
getHours
()
+
':'
+
d
.
getMinutes
()
+
':'
+
d
.
getSeconds
();
res
.
data
.
list
[
i
].
createtime
=
d
.
getFullYear
()
+
"-"
+
mon
+
"-"
+
d
.
getDate
()
+
" "
+
d
.
getHours
()
+
':'
+
d
.
getMinutes
()
+
':'
+
d
.
getSeconds
();
res
.
data
.
list
[
i
].
recordtype
=
res
.
data
.
list
[
i
].
recordtype
==
1
?
"参保登记"
:
res
.
data
.
list
[
i
].
recordtype
==
2
?
"信息变更"
:
''
}
this
.
tableData
=
res
.
data
.
list
this
.
totals
=
res
.
data
.
total
this
.
page
=
res
.
data
.
total
.
pageNum
}).
catch
((
res
)
=>
{
});
},
//流程
...
...
@@ -223,8 +224,8 @@
size
:
'large'
})
}
else
{
if
(
res
.
data
[
i
].
examineState
==
"审核失败"
){
this
.
activities
.
push
({
content
:
res
.
data
[
i
].
role
+
":"
+
"审核失败"
,
...
...
@@ -276,7 +277,7 @@
res
.
data
.
list
[
i
].
name
=
this
.
decrypt
(
res
.
data
.
list
[
i
].
name
)
var
d
=
new
Date
(
res
.
data
.
list
[
i
].
createtime
)
var
mon
=
(
parseInt
(
d
.
getMonth
())
+
1
)
res
.
data
.
list
[
i
].
createtime
=
d
.
getFullYear
()
+
"-"
+
mon
+
"-"
+
d
.
getDate
()
+
" "
+
d
.
getHours
()
+
':'
+
d
.
getMinutes
()
+
':'
+
d
.
getSeconds
();
res
.
data
.
list
[
i
].
createtime
=
d
.
getFullYear
()
+
"-"
+
mon
+
"-"
+
d
.
getDate
()
+
" "
+
d
.
getHours
()
+
':'
+
d
.
getMinutes
()
+
':'
+
d
.
getSeconds
();
res
.
data
.
list
[
i
].
recordtype
=
res
.
data
.
list
[
i
].
recordtype
==
1
?
"参保登记"
:
res
.
data
.
list
[
i
].
recordtype
==
2
?
"信息变更"
:
''
}
this
.
tableData
=
res
.
data
.
list
...
...
@@ -300,7 +301,7 @@
idcardbackpic
:
this
.
tableData
[
s
].
idcardbackpic
,
idcardfrontpic
:
this
.
tableData
[
s
].
idcardfrontpic
,
signpic
:
this
.
tableData
[
s
].
signpic
,
show
:
false
}
})
...
...
@@ -349,7 +350,7 @@
return
decrypted
.
toString
(
CryptoJS
.
enc
.
Utf8
);
}
},
created
(){
for
(
var
i
in
listtown
){
this
.
list
.
push
({
...
...
@@ -369,7 +370,7 @@
var
data
=
{
idcard
:
''
,
recordType
:
''
}
this
.
$api
.
getlist
.
record
(
data
).
then
((
res
)
=>
{
let
loadingInstance
=
Loading
.
service
();
...
...
@@ -381,13 +382,13 @@
res
.
data
.
list
[
i
].
name
=
this
.
decrypt
(
res
.
data
.
list
[
i
].
name
)
var
d
=
new
Date
(
res
.
data
.
list
[
i
].
createtime
)
var
mon
=
(
parseInt
(
d
.
getMonth
())
+
1
)
res
.
data
.
list
[
i
].
createtime
=
d
.
getFullYear
()
+
"-"
+
mon
+
"-"
+
d
.
getDate
()
+
" "
+
d
.
getHours
()
+
':'
+
d
.
getMinutes
()
+
':'
+
d
.
getSeconds
();
res
.
data
.
list
[
i
].
createtime
=
d
.
getFullYear
()
+
"-"
+
mon
+
"-"
+
d
.
getDate
()
+
" "
+
d
.
getHours
()
+
':'
+
d
.
getMinutes
()
+
':'
+
d
.
getSeconds
();
res
.
data
.
list
[
i
].
recordtype
=
res
.
data
.
list
[
i
].
recordtype
==
1
?
"参保登记"
:
res
.
data
.
list
[
i
].
recordtype
==
2
?
"信息变更"
:
''
}
this
.
tableData
=
res
.
data
.
list
this
.
totals
=
res
.
data
.
total
this
.
page
=
res
.
data
.
total
.
pageNum
}).
catch
((
res
)
=>
{
let
loadingInstance
=
Loading
.
service
();
this
.
$nextTick
(()
=>
{
// 以服务的方式调用的 Loading 需要异步关闭
...
...
@@ -411,8 +412,8 @@
// that.tableData=res.data.list
// that.totals=res.data.total
// that.page=res.data.total.pageNum
// }
// })
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment