소스 검색

bug 修复

lilei 3 년 전
부모
커밋
e0120bdd52
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      public/version.json
  2. 3 3
      src/views/allocationManagement/storeTransferOut/basicInfoModal.vue

+ 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: {