lilei пре 3 година
родитељ
комит
e0120bdd52

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1655777361097
+  "version": 1655781362474
 }

+ 3 - 3
src/views/allocationManagement/storeTransferOut/basicInfoModal.vue

@@ -23,7 +23,7 @@
           </a-radio-group>
         </a-form-model-item>
         <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-form-model-item>
         <a-form-model-item label="调拨类型" prop="callOutType">
@@ -48,11 +48,11 @@ import { commonMixin } from '@/utils/mixin'
 import { VSelect } from '@/components'
 import { storeCallOutSave } from '@/api/storeCallOut'
 import { getLookUpData } from '@/api/data'
-import custList from '@/views/common/custList.vue'
+import selectCust from '@/views/common/selectCust.vue'
 import { storeCallOutTypeAllList } from '@/api/storeCallOutType'
 export default {
   name: 'StoreTransferOutBasicInfoModal',
-  components: { VSelect, custList },
+  components: { VSelect, selectCust },
   mixins: [commonMixin],
   props: {
     openModal: {