|
@@ -139,7 +139,7 @@
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
<vxe-column width="130" title="报销类别" field="typeName" align="center"></vxe-column>
|
|
|
- <vxe-column width="180" title="报销项目" field="projectName" align="center">
|
|
|
+ <vxe-column title="报销项目" field="projectName" align="center">
|
|
|
<template #default="scope">
|
|
|
<el-link type="primary" :underline="false" v-if="hasPermission('zsReimbursement:info:view') && scope.row.projectId != undefined" @click="viewProject(scope.row.projectId)">{{scope.row.sourceType === '2' ? '' : scope.row.projectName}}</el-link>
|
|
|
<el-link type="primary" :underline="false" v-else-if="hasPermission('zsReimbursement:info:view') && scope.row.projectId != undefined" @click="viewProject(scope.row.projectId)">{{scope.row.sourceType === '2' ? '' : scope.row.projectName}}</el-link>
|
|
@@ -157,7 +157,7 @@
|
|
|
<vxe-column width="100" title="报销人" field="name" align="center"></vxe-column>
|
|
|
<vxe-column width="100" title="报销部门" field="deptName" align="center"></vxe-column>
|
|
|
<vxe-column width="100" title="报销日期" field="reimDate" align="center"></vxe-column>
|
|
|
- <vxe-column width="100" title="报销金额(元)" field="number" fixed="right" align="center"></vxe-column>
|
|
|
+ <vxe-column width="120" title="报销金额(元)" field="number" fixed="right" align="center"></vxe-column>
|
|
|
<vxe-column width="100" title="状态" fixed="right" align="center" field="type">
|
|
|
<template #default="scope">
|
|
|
<el-button @click="detail(scope.row)" :type="$dictUtils.getDictLabel('status_info', scope.row.type, '')" effect="dark" >{{$dictUtils.getDictLabel("status", scope.row.type, '未开始')}} </el-button>
|