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
8da20ffc
Commit
8da20ffc
authored
Aug 06, 2019
by
lc@weface.com.cn
Browse files
Options
Browse Files
Download
Plain Diff
''
parents
73943c2c
b753639d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
80 additions
and
6 deletions
+80
-6
getlist.js
xichongSys/src/http/moudules/getlist.js
+16
-0
global.js
xichongSys/src/utils/global.js
+2
-2
authRecord.vue
xichongSys/src/views/Myvue/authRecord.vue
+1
-1
flow.vue
xichongSys/src/views/Myvue/flow.vue
+61
-3
No files found.
xichongSys/src/http/moudules/getlist.js
View file @
8da20ffc
...
...
@@ -147,3 +147,19 @@ export const listPayInfo = (data) => {
data
})
}
//领取人员查询
export
const
getGrantList
=
(
data
)
=>
{
return
axios
({
url
:
'/grantInfo/getGrantList'
,
method
:
'post'
,
data
})
}
//流程详情
export
const
selectRoleflowNo
=
(
params
)
=>
{
return
axios
({
url
:
'role/selectRoleflowNo'
,
method
:
'get'
,
params
})
}
xichongSys/src/utils/global.js
View file @
8da20ffc
...
...
@@ -10,8 +10,8 @@
//export const baseUrl ="http://faceauth.weface.com.cn:98"
//export const baseUrl2 = 'http://faceauth.weface.com.cn:97'
//export const baseUrl = 'http://172.16.10.33:9002'
//
export const baseUrl = 'http://172.16.10.25:9002'
export
const
baseUrl
=
"http://172.16.10.33:9002"
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"
...
...
xichongSys/src/views/Myvue/authRecord.vue
View file @
8da20ffc
...
...
@@ -244,7 +244,7 @@ import defaultImg from "../../assets/defaultPicture.jpg"
label
:
"100岁以上"
,
}],
//年龄计算方式
agemeth
:
""
,
agemeth
:
"
1
"
,
agemethList
:[{
value
:
"1"
,
label
:
"按年计算"
,
...
...
xichongSys/src/views/Myvue/flow.vue
View file @
8da20ffc
...
...
@@ -49,6 +49,51 @@
</
template
>
</el-table-column>
</el-table>
<el-dialog
title=
"已作废流程"
:visible
.
sync=
"dialogTableVisible"
>
<el-table
:data=
"detableData"
style=
"width: 100%"
>
<el-table-column
type=
"index"
:index=
"indexMethod"
>
</el-table-column>
<el-table-column
prop=
"flowname"
label=
"名称"
width=
"180"
>
</el-table-column>
<el-table-column
prop=
"createby"
label=
"创建人"
>
</el-table-column>
<el-table-column
prop=
"createtime"
label=
"创建时间"
>
</el-table-column>
<el-table-column
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<el-popover
placement=
"right"
width=
"200"
trigger=
"click"
>
<div
class=
"step"
style=
"height: 200px;"
>
<el-steps
direction=
"vertical"
:active=
"7"
>
<el-step
v-for=
"index in step"
:key=
"step[index]"
:title=
"index.name"
></el-step>
</el-steps>
</div>
<el-button
size=
"mini"
slot=
"reference"
@
click=
"dehandle(scope.$index, scope.row)"
>
详情
</el-button>
</el-popover>
</
template
>
</el-table-column>
</el-table>
</el-dialog>
<el-pagination
class=
"pone"
:page-size=
'10'
...
...
@@ -133,6 +178,7 @@
export
default
{
data
()
{
return
{
dialogTableVisible
:
false
,
flowTitle
:
""
,
showiii
:
false
,
//标题
...
...
@@ -146,6 +192,7 @@
input
:
""
,
info
:
''
,
tableData
:
[],
detableData
:[],
options
:
[],
value
:
[],
oldvalue
:[],
...
...
@@ -156,8 +203,8 @@
//作废
delet
(){
this
.
$api
.
getlist
.
selectflowState
().
then
((
res
)
=>
{
this
.
tableData
=
res
.
data
console
.
log
(
this
.
tableData
)
this
.
de
tableData
=
res
.
data
this
.
dialogTableVisible
=
true
}).
catch
((
res
)
=>
{
...
...
@@ -301,9 +348,20 @@ this.$api.getlist.selectflowState().then((res) => {
console
.
log
(
this
.
step
)
}).
catch
((
res
)
=>
{
});
},
dehandle
(
s
,
d
){
console
.
log
(
d
)
var
par
=
{
flowNo
:
d
.
flowNo
}
this
.
$api
.
getlist
.
selectRoleflowNo
(
par
).
then
((
res
)
=>
{
this
.
step
=
res
.
data
}).
catch
((
res
)
=>
{
});
}
},
created
(){
...
...
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