lilei 1 gadu atpakaļ
vecāks
revīzija
cb68b534fc

+ 1 - 1
public/version.json

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

+ 15 - 8
src/views/customerManagement/customerInfo/list.vue

@@ -10,12 +10,12 @@
                 <a-input id="customerManagementList-customerName" v-model.trim="queryParam.customerName" allowClear placeholder="请输入客户名称"/>
               </a-form-item>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-item label="联系人">
                 <a-input id="customerManagementList-contactName" v-model.trim="queryParam.contactName" allowClear placeholder="请输入联系人"/>
               </a-form-item>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="8" :sm="24">
               <a-form-item label="最后销售时间">
                 <rangeDate ref="rangeSaleDate" @change="dateSaleChange" />
               </a-form-item>
@@ -37,25 +37,25 @@
                   <v-select code="FLAG" id="customerManagementList-dealerFlag" v-model="queryParam.dealerFlag" allowClear placeholder="请选择"></v-select>
                 </a-form-item>
               </a-col> -->
-              <a-col :md="12" :sm="24">
+              <a-col :md="10" :sm="24">
                 <a-row>
                   <!-- 客户地址 -->
                   <a-form-item label="客户地址">
-                    <a-col span="7">
+                    <a-col span="8">
                       <a-form-item prop="provinceSn" style="margin: 0;">
                         <a-select v-model="queryParam.provinceSn" allowClear @change="getCityList" placeholder="请选择省">
                           <a-select-option v-for="item in addrProvinceList" :value="item.areaSn" :key="item.areaSn + 'a'">{{ item.name }}</a-select-option>
                         </a-select>
                       </a-form-item>
                     </a-col>
-                    <a-col span="7" offset="1">
+                    <a-col span="8">
                       <a-form-item prop="citySn" style="margin: 0;">
                         <a-select v-model="queryParam.citySn" allowClear @change="getAreaList" placeholder="请选择市">
                           <a-select-option v-for="item in addrCityList" :value="item.areaSn" :key="item.areaSn + 'b'">{{ item.name }}</a-select-option>
                         </a-select>
                       </a-form-item>
                     </a-col>
-                    <a-col span="7" offset="1">
+                    <a-col span="8">
                       <a-form-item prop="countySn" style="margin: 0;">
                         <a-select v-model="queryParam.countySn" allowClear placeholder="请选择区/县">
                           <a-select-option v-for="item in addrDistrictList" :value="item.areaSn" :key="item.areaSn + 'c'">{{ item.name }}</a-select-option>
@@ -65,9 +65,14 @@
                   </a-form-item>
                 </a-row>
               </a-col>
-              <a-col :md="6" :sm="24">
+              <a-col :md="4" :sm="24">
                 <a-form-item label="客户类型">
-                  <custType v-model="queryParam.customerTypeSn" allowClear placeholder="请选择客户类型" style="max-width: 240px;"></custType>
+                  <custType v-model="queryParam.customerTypeSn" allowClear placeholder="请选择客户类型"></custType>
+                </a-form-item>
+              </a-col>
+              <a-col :md="4" :sm="24">
+                <a-form-item label="启用禁用">
+                  <v-select code="ENABLE_FLAG" v-model="queryParam.enabledFlag" allowClear placeholder="请选择客户关系状态"></v-select>
                 </a-form-item>
               </a-col>
             </template>
@@ -164,6 +169,7 @@ export default {
         countySn: undefined, //  区
         dealerFlag: undefined, //  是否卫星仓客户
         customerTypeSn: undefined, //  客户类型
+        enabledFlag: undefined, //  启用状态
         relationType: undefined
       },
       disabled: false, //  查询、重置按钮是否可操作
@@ -227,6 +233,7 @@ export default {
       this.queryParam.dealerFlag = undefined
       this.queryParam.customerTypeSn = undefined
       this.queryParam.relationType = undefined
+      this.queryParam.enabledFlag = undefined
       this.addrCityList = []
       this.addrDistrictList = []
       this.$refs.table.refresh(true)