|
@@ -1,47 +1,105 @@
|
|
|
<template>
|
|
|
<el-dialog
|
|
|
- title="标题"
|
|
|
+ title="查看审批流"
|
|
|
:close-on-click-modal="false"
|
|
|
:before-close="closeDialog"
|
|
|
:visible.sync="visible"
|
|
|
:modal="false"
|
|
|
- width="75%">
|
|
|
+ width="75%"
|
|
|
+ >
|
|
|
+ <el-table :data="auditList" tooltip-effect="dark" stripe style="width: 100%; margin-bottom: 20px">
|
|
|
+ <el-table-column
|
|
|
+ prop="levelId"
|
|
|
+ width="80"
|
|
|
+ label="序号"
|
|
|
+ type="index"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="nickName"
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ width="130"
|
|
|
+ label="节点人"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="auditStatus"
|
|
|
+ header-align="center"
|
|
|
+ width="130"
|
|
|
+ align="center"
|
|
|
+ label="状态"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.auditStatus === 'O'">提交</span>
|
|
|
+ <span v-if="scope.row.auditStatus === 'S'">待审</span>
|
|
|
+ <span v-if="scope.row.auditStatus === 'N'">等待</span>
|
|
|
+ <span v-if="scope.row.auditStatus === 'B'">审核退回</span>
|
|
|
+ <span v-if="scope.row.auditStatus === 'A'">审核通过</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="auditMsg"
|
|
|
+ header-align="center"
|
|
|
+ align="center"
|
|
|
+ label="意见"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="auditItem"
|
|
|
+ header-align="center"
|
|
|
+ width="250"
|
|
|
+ align="center"
|
|
|
+ label="提交时间"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.auditItem !== undefined">{{ scope.row.auditItem.slice(0,10)}}</span>
|
|
|
+ <span v-else>{{scope.row.auditItem}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
- <el-button @click="closeDia">取消</el-button>
|
|
|
- <el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
|
|
+ <el-button type="primary" @click="closeDia">关 闭</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import {addCharge,reviewer,modify} from '@/api/system/auditPaths-add-or-update'
|
|
|
+import { listCharge } from '@/api/system/viewApproval'
|
|
|
|
|
|
export default {
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
visible: false,
|
|
|
+ auditList:[]
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- init (val) {
|
|
|
+ init(val) {
|
|
|
this.optionsUsers = []
|
|
|
this.visible = true
|
|
|
- if (typeof val !== 'undefined') {
|
|
|
- console.log(val)
|
|
|
- this.queryAuditPath(val)
|
|
|
- } else {
|
|
|
+ this.addCharge()
|
|
|
+ },
|
|
|
+ addCharge() {
|
|
|
+ let data = {
|
|
|
+ id: 448,
|
|
|
+ actId: 110
|
|
|
}
|
|
|
+ listCharge(data).then(data => {
|
|
|
+ console.log(data)
|
|
|
+ this.auditList = data.data
|
|
|
+ })
|
|
|
},
|
|
|
// 表单提交
|
|
|
- dataFormSubmit () {
|
|
|
+ dataFormSubmit() {
|
|
|
|
|
|
},
|
|
|
- closeDialog (done) {
|
|
|
+ closeDialog(done) {
|
|
|
this.visible = false
|
|
|
this.$emit('refreshDataList')
|
|
|
Object.assign(this.$data, this.$options.data.call(this))
|
|
|
},
|
|
|
- closeDia () {
|
|
|
+ closeDia() {
|
|
|
this.visible = false
|
|
|
this.$emit('refreshDataList')
|
|
|
Object.assign(this.$data, this.$options.data.call(this))
|