parent
656614a79b
commit
e71ba80f39
|
@ -53,7 +53,7 @@ export default {
|
||||||
visible: false,
|
visible: false,
|
||||||
loading: false,
|
loading: false,
|
||||||
form: {
|
form: {
|
||||||
STATUS: null,
|
STATUS: '1',
|
||||||
APPOINT_CORP_ID: '',
|
APPOINT_CORP_ID: '',
|
||||||
APPOINT_CORP_NAME: '',
|
APPOINT_CORP_NAME: '',
|
||||||
APPOINT_DEPARTMENT_ID: null,
|
APPOINT_DEPARTMENT_ID: null,
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<el-steps :space="200" :active="list.length" direction="vertical" finish-status="success">
|
<el-steps :space="200" :active="list.length" direction="vertical" finish-status="success">
|
||||||
<el-step v-for="item in list" :key="item.FLOW_DETAIL_ID" :value="item.FLOW_DETAIL_ID" :title="item.SORT">
|
<el-step v-for="item in list" :key="item.FLOW_DETAIL_ID" :value="item.FLOW_DETAIL_ID" :title="item.SORT">
|
||||||
<template slot="description">
|
<template slot="description">
|
||||||
<el-card class="box-card" style="width: 900px;">
|
<el-card class="box-card a" style="width: 900px;">
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>{{ item.STEP_NAME }}</span>
|
<span>{{ item.STEP_NAME }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
fit
|
fit
|
||||||
highlight-current-row>
|
highlight-current-row>
|
||||||
<el-table-column type="index" label="序号" width="50" align="center"/>
|
<el-table-column type="index" label="序号" width="50" align="center"/>
|
||||||
<el-table-column prop="CREATOR_TIME" label="用户名" align="center"/>
|
<el-table-column prop="CREATOR_TIME" label="审批流创建时间" align="center"/>
|
||||||
<el-table-column label="操作" align="center" width="250">
|
<el-table-column label="操作" align="center" width="250">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<el-button type="primary" icon="el-icon-edit" size="mini" @click="handleShow(row)">详情</el-button>
|
<el-button type="primary" icon="el-icon-edit" size="mini" @click="handleShow(row)">详情</el-button>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<el-col>
|
<el-col>
|
||||||
审批人:{{ item.APPOINT_USER_NAME }}
|
审批人:{{ item.APPOINT_USER_NAME }}
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col>
|
<el-col v-if="item.INDEX !== step">
|
||||||
审批人公司:{{ item.APPOINT_CORP_NAME }}
|
审批人公司:{{ item.APPOINT_CORP_NAME }}
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col>
|
<el-col>
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
<el-col v-if="item.INDEX !== step">
|
<el-col v-if="item.INDEX !== step">
|
||||||
审批时间:{{ item.APPOINT_TIME }}
|
审批时间:{{ item.APPOINT_TIME }}
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col v-if="item.APPOINT_OPINION">
|
<el-col v-if="item.APPOINT_OPINION && item.INDEX !== step">
|
||||||
审批意见:{{ item.APPOINT_OPINION }}
|
审批意见:{{ item.APPOINT_OPINION }}
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
@ -42,7 +42,6 @@
|
||||||
</el-steps>
|
</el-steps>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button @click="closeWindow">取 消</el-button>
|
<el-button @click="closeWindow">取 消</el-button>
|
||||||
<el-button :loading="loading" type="primary" @click="save">确 定</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
@ -67,7 +66,8 @@ export default {
|
||||||
form: {
|
form: {
|
||||||
XGF_USER_ID: ''
|
XGF_USER_ID: ''
|
||||||
},
|
},
|
||||||
step: 0
|
step: 0,
|
||||||
|
endFlag: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -81,6 +81,7 @@ export default {
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
this.list = data.flow.info
|
this.list = data.flow.info
|
||||||
this.step = data.flow.STEP
|
this.step = data.flow.STEP
|
||||||
|
this.step = data.flow.endFlag
|
||||||
if (data.flow.endFlag === '1') {
|
if (data.flow.endFlag === '1') {
|
||||||
this.title = '审批中'
|
this.title = '审批中'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue