|
@@ -38,6 +38,8 @@
|
|
|
<custList v-show="form.accountType=='CUSTOMER'" cooperateFlag="1" ref="custList" @change="accountNameSnChange" placeholder="请选择记账名称(输入名称搜索)"></custList>
|
|
|
<!-- 供应商 -->
|
|
|
<supplier v-show="form.accountType=='OUT_ACCOUNT'" enableFlag="1" @change="accountNameSnChange" v-model="form.accountNameSn" placeholder="请选择记账名称(输入名称搜索)"></supplier>
|
|
|
+ <!-- 其它往来 -->
|
|
|
+ <otherTransactions v-show="form.accountType=='OTHER_ACCOUNT'" @change="accountNameSnChange" v-model="form.accountNameSn" placeholder="请选择记账名称(输入名称搜索)"></otherTransactions>
|
|
|
<span v-if="!form.accountType">
|
|
|
<a-select style="width: 100%" placeholder="请选择记账名称">
|
|
|
<a-select-option value="" :disabled="true">
|
|
@@ -118,11 +120,12 @@ import subarea from '@/views/common/subarea.js'
|
|
|
import Area from '@/views/common/area.js'
|
|
|
import custList from '@/views/common/custList.vue'
|
|
|
import supplier from '@/views/common/supplier.js'
|
|
|
+import otherTransactions from '@/views/common/otherTransactions.js'
|
|
|
import department from './department.js'
|
|
|
import { expenseAcctDetailSave, expenseAcctDetailFindBySn } from '@/api/expenseManagement.js'
|
|
|
export default {
|
|
|
name: 'EpenseDetailModal',
|
|
|
- components: { VSelect, subarea, Area, epenseCdfModal, custList, supplier, department },
|
|
|
+ components: { VSelect, subarea, Area, epenseCdfModal, custList, supplier, department, otherTransactions },
|
|
|
props: {
|
|
|
openModal: { // 弹框显示状态
|
|
|
type: Boolean,
|