123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <a-modal
- centered
- :footer="null"
- :maskClosable="false"
- title="人工录入单审核进度"
- v-model="isShow"
- @cancel="isShow=false"
- width="50%">
- <p>说明:以下信息来自钉钉</p>
- <p>提审时间:{{ auditDate }}</p>
- <a-spin :spinning="spinning" tip="Loading...">
- <s-table
- class="sTable fixPagination"
- ref="table"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ y: 500 }"
- :showPagination="false"
- :defaultLoadData="true"
- bordered>
- </s-table>
- </a-spin>
- </a-modal>
- </template>
- <script>
- import { STable } from '@/components'
- import { getProcessInstance } from '@/api/expenseManagement'
- export default {
- name: 'VerifyModal',
- components: { STable },
- props: {
- openModal: {
- type: Boolean,
- default: false
- },
- itemSn: {
- type: [Number, String],
- default: ''
- }
- },
- data () {
- return {
- spinning: false,
- isShow: this.openModal,
- auditDate: '',
- columns: [{ title: '序号', dataIndex: 'no', width: '8%', align: 'center' },
- { title: '人员姓名', width: '12%', dataIndex: 'approvalName', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '人员类型', dataIndex: 'processTaskType', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '状态', dataIndex: 'approvalStateDictValue', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审批意见', dataIndex: 'approvalOpinion', width: '20%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '附件', dataIndex: 'attachmentNames', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '操作时间', dataIndex: 'approvalTime', width: '20%', align: 'center', customRender: function (text) { return text || '--' } }],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.spinning = true
- delete parameter.tableId
- delete parameter.index
- return getProcessInstance({ businessType: 'VERIFY_ACCOUNT_CHANGE', businessSn: this.itemSn }).then(res => {
- let data
- if (res.status == 200) {
- data = res.data ? res.data[0] ? res.data[0].opinionList ? res.data[0].opinionList : [] : [] : []
- const no = 0
- for (var i = 0; i < data.length; i++) {
- data[i].no = no + i + 1
- }
- this.disabled = false
- }
- this.spinning = false
- this.auditDate = res.data[data.length - 1].createDate
- return data
- })
- }
- }
- },
- watch: {
- openModal (nVal, oVal) {
- this.isShow = nVal
- },
- isShow (nVal, oVal) {
- if (!nVal) {
- this.$emit('close')
- this.$refs.table.clearTable()
- } else {
- this.$nextTick(() => {
- this.$refs.table.refresh()
- })
- }
- },
- itemSn (nVal, oVal) {
- }
- }
- }
- </script>
- <style>
- </style>
|