1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <a-modal
- centered
- :footer="null"
- :maskClosable="false"
- title="费用报销单审核进度"
- v-model="isShow"
- @cancle="isShow=false"
- width="50%">
- <p>说明:以下信息来自钉钉</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,
- columns: [{ title: '序号', dataIndex: 'no', width: '8%', align: 'center' },
- { title: '人员姓名', width: '12%', dataIndex: 'userName', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '人员类型', dataIndex: 'userType', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '状态', dataIndex: 'state', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审批意见', dataIndex: 'remark', width: '20%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '附件', dataIndex: 'hasAttachments', width: '20%', align: 'center', customRender: function (text) { return text != '0' ? '请在钉钉中查看附件内容' : '--' } },
- { title: '操作时间', dataIndex: 'date', width: '20%', align: 'center', customRender: function (text) { return text || '--' } }],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.spinning = true
- delete parameter.tableId
- delete parameter.index
- return getProcessInstance({ businessType: 'EXPENSES', businessSn: this.itemSn }).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- const no = 0
- for (var i = 0; i < data.length; i++) {
- data[i].no = no + i + 1
- }
- this.disabled = false
- }
- this.spinning = false
- 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>
|