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
2b14df11
Commit
2b14df11
authored
Aug 02, 2019
by
lc@weface.com.cn
Browse files
Options
Browse Files
Download
Plain Diff
''
parents
48597071
1d7cdaf1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
4 deletions
+10
-4
global.js
xichongSys/src/utils/global.js
+6
-0
flow.vue
xichongSys/src/views/Myvue/flow.vue
+1
-1
table.vue
xichongSys/src/views/Myvue/table.vue
+3
-3
No files found.
xichongSys/src/utils/global.js
View file @
2b14df11
...
...
@@ -6,6 +6,7 @@
// 后台管理系统服务器地址
//export const baseUrl = 'http://172.16.10.33:9002'
<<<<<<<
HEAD
//export const baseUrl = 'http://172.16.10.25:9009'
//export const baseUrl ="http://faceauth.weface.com.cn:98"
//export const baseUrl2 = 'http://faceauth.weface.com.cn:97'
...
...
@@ -13,6 +14,11 @@
//export const baseUrl = 'http://172.16.10.25:9002'
export
const
baseUrl
=
"http://172.16.10.33:9002"
export
const
baseUrl2
=
'http://172.16.10.25:9999'
=======
export
const
baseUrl
=
'http://172.16.10.25:9002'
//export const baseUrl ="http://172.16.10.33:9002"
export
const
baseUrl2
=
'http://172.16.10.25:9007'
>>>>>>>
1
d7cdaf1ac6c77b2cce06f7ac6a1a8792784dbe7
// 系统数据备份还原服务器地址
//export const backupBaseUrl = 'http://localhost:8002'
//export const baseUrl = 'http://faceauth.weface.com.cn:98'
...
...
xichongSys/src/views/Myvue/flow.vue
View file @
2b14df11
...
...
@@ -3,7 +3,7 @@
<div
class=
"op"
>
<el-button
type=
"primary"
@
click=
"showadd(1)"
size=
"mini"
style=
"background:#148A9B;margin-left:10px"
icon=
"el-icon-circle-plus-outline"
>
新增
</el-button>
<el-button
type=
"danger"
@
click=
"showadd(1)"
size=
"mini"
style=
"background:#148A9B;margin-left:10px"
icon=
"el-icon-delete"
>
已作废
</el-button>
</div>
<el-table
:data=
"tableData"
...
...
xichongSys/src/views/Myvue/table.vue
View file @
2b14df11
...
...
@@ -171,7 +171,7 @@
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
].
recordtype
=
res
.
data
.
list
[
i
].
recordtype
==
1
?
"参保登记"
:
res
.
data
.
list
[
i
].
recordtype
==
2
?
"信息变更"
:
''
res
.
data
.
list
[
i
].
recordtype
=
res
.
data
.
list
[
i
].
recordtype
==
1
?
"参保登记"
:
res
.
data
.
list
[
i
].
recordtype
==
2
?
"信息变更"
:
res
.
data
.
list
[
i
].
recordtype
==
3
?
"待遇申请"
:
res
.
data
.
list
[
i
].
recordtype
==
4
?
"参保注销"
:
""
}
this
.
tableData
=
res
.
data
.
list
this
.
totals
=
res
.
data
.
total
...
...
@@ -187,7 +187,7 @@
this
.
activities
=
[]
var
data
=
{
recordId
:
s
.
id
,
type
:
s
.
recordtype
==
"参保登记"
?
1
:
s
.
recordtype
==
"信息变更"
?
2
:
''
type
:
s
.
recordtype
==
"参保登记"
?
1
:
s
.
recordtype
==
"信息变更"
?
2
:
s
.
recordtype
==
"待遇申请"
?
3
:
s
.
recordtype
==
"参保注销"
?
4
:
''
}
this
.
$api
.
getlist
.
progress
(
data
).
then
((
res
)
=>
{
for
(
var
i
in
res
.
data
){
...
...
@@ -341,7 +341,7 @@
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
].
recordtype
=
res
.
data
.
list
[
i
].
recordtype
==
1
?
"参保登记"
:
res
.
data
.
list
[
i
].
recordtype
==
2
?
"信息变更"
:
''
res
.
data
.
list
[
i
].
recordtype
=
res
.
data
.
list
[
i
].
recordtype
==
1
?
"参保登记"
:
res
.
data
.
list
[
i
].
recordtype
==
2
?
"信息变更"
:
res
.
data
.
list
[
i
].
recordtype
==
3
?
"待遇申请"
:
res
.
data
.
list
[
i
].
recordtype
==
4
?
"参保注销"
:
""
}
this
.
tableData
=
res
.
data
.
list
this
.
totals
=
res
.
data
.
total
...
...
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