|
|
@@ -91,7 +91,7 @@
|
|
|
label="来源类型"
|
|
|
prop="sourceType"
|
|
|
>
|
|
|
- <el-input :value="form.sourceType==2?'合同':form.sourceType==3?'采购订单':'对账单'" disabled></el-input>
|
|
|
+ <el-input :value="payAndReceiveEnum.find(item=>item.value==form.sourceType)?.label" disabled></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
@@ -157,6 +157,7 @@ import {getFinPayableInfoAPI} from "@/api/financialManage/payableManage";
|
|
|
import {getTreeByPid} from "@/api/classifyManage";
|
|
|
import infoTable from "@/views/financialManage/payableManage/components/infoTable.vue";
|
|
|
import bpmDetail from "@/views/bpm/processInstance/detail.vue";
|
|
|
+import { payAndReceiveEnum } from "@/enum/dict";
|
|
|
|
|
|
export default {
|
|
|
mixins: [dictMixins],
|
|
|
@@ -169,6 +170,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
activeComp: 'main',
|
|
|
+ payAndReceiveEnum,
|
|
|
tabOptions: [
|
|
|
{key: 'main', name: '付款详情'},
|
|
|
{key: 'bpm', name: '流程详情'}
|