|
@@ -23,7 +23,7 @@
|
|
</a-radio-group>
|
|
</a-radio-group>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
<a-form-model-item label="调往对象名称" :prop="isCustomer ? 'putPersonSn' : 'putPersonName'">
|
|
<a-form-model-item label="调往对象名称" :prop="isCustomer ? 'putPersonSn' : 'putPersonName'">
|
|
- <custList ref="custList" :isValidateEnabled="true" v-if="isCustomer" @change="custChange"></custList>
|
|
|
|
|
|
+ <selectCust ref="custList" :isValidateEnabled="true" v-if="isCustomer" @change="custChange"></selectCust>
|
|
<a-input v-if="!isCustomer" v-model.trim="form.putPersonName" placeholder="请输入调往对象名称(最多30个字符)" allowClear :maxLength="30" />
|
|
<a-input v-if="!isCustomer" v-model.trim="form.putPersonName" placeholder="请输入调往对象名称(最多30个字符)" allowClear :maxLength="30" />
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
<a-form-model-item label="调拨类型" prop="callOutType">
|
|
<a-form-model-item label="调拨类型" prop="callOutType">
|
|
@@ -48,11 +48,11 @@ import { commonMixin } from '@/utils/mixin'
|
|
import { VSelect } from '@/components'
|
|
import { VSelect } from '@/components'
|
|
import { storeCallOutSave } from '@/api/storeCallOut'
|
|
import { storeCallOutSave } from '@/api/storeCallOut'
|
|
import { getLookUpData } from '@/api/data'
|
|
import { getLookUpData } from '@/api/data'
|
|
-import custList from '@/views/common/custList.vue'
|
|
|
|
|
|
+import selectCust from '@/views/common/selectCust.vue'
|
|
import { storeCallOutTypeAllList } from '@/api/storeCallOutType'
|
|
import { storeCallOutTypeAllList } from '@/api/storeCallOutType'
|
|
export default {
|
|
export default {
|
|
name: 'StoreTransferOutBasicInfoModal',
|
|
name: 'StoreTransferOutBasicInfoModal',
|
|
- components: { VSelect, custList },
|
|
|
|
|
|
+ components: { VSelect, selectCust },
|
|
mixins: [commonMixin],
|
|
mixins: [commonMixin],
|
|
props: {
|
|
props: {
|
|
openModal: {
|
|
openModal: {
|