huangbin 4 år sedan
förälder
incheckning
91671e24a4

+ 1 - 1
public/config/app.config.json

@@ -1,3 +1,3 @@
 {
-    "apiUrl": "http://192.168.31.171:8080/cfg?key=test_171"
+    "apiUrl": "http://218.17.158.45:21001/cfg?key=test_176"
 }

+ 1 - 1
src/views/platinum/platinum_customer_info/compoments/filterTable/index.vue

@@ -46,7 +46,7 @@ export default defineComponent({
         const input: InputList[] = [
             { value: '', placeholder: '模糊搜索客户简称', key: 'nickname' },
             { value: '', placeholder: '模糊搜索客户名称', key: 'name' },
-            { value: '', placeholder: '模糊搜索手机号码', key: 'phone' },
+            // { value: '', placeholder: '模糊搜索手机号码', key: 'phone' },
         ];
         // 是否包含子级 1-包含
         const includesub = ref<boolean>(false);

+ 1 - 1
src/views/platinum/platinum_customer_info/list/setup.ts

@@ -5,7 +5,7 @@ import { QueryCustomerInfoReq } from "@/services/go/ermcp/qhj/interface";
 // 查询类型 1:未提交(网上开户表) 2:待审核(网上开户表) 3:正常 4:停用
 export function handleSearch(querytype: 1 | 2 | 3 | 4, queryTable: Function) {
     function search(value: any) {
-        const { includesub, name, nickname, phone, userid, userinfotype } = value;
+        const { includesub, name, nickname, userid, userinfotype } = value;
         const param: QueryCustomerInfoReq = {
             includesub,     // 是否包含子级 1-包含
             querytype,  // 查询类型 1:未提交(网上开户表) 2:待审核(网上开户表) 3:正常 4:停用

+ 11 - 8
src/views/platinum/platinum_pick_query/list/tab/index.vue

@@ -16,13 +16,13 @@
                    @onClick="btnClick(record)" />
         </template>
         <!-- 提货状态 -->
-          <template #takeorderstatus="{ record }">
-              <a>{{ getPickUpStateName(record.takeorderstatus) }}</a>
-          </template>
-          <!-- 提货/ 收货人-->
-          <template #takemode="{ record }">
-              <a>{{ getTakeStateName(record.takemode)}}</a>
-          </template>
+        <template #takeorderstatus="{ record }">
+          <a>{{ getPickUpStateName(record.takeorderstatus) }}</a>
+        </template>
+        <!-- 提货/ 收货人-->
+        <template #takemode="{ record }">
+          <a>{{ getTakeStateName(record.takemode)}}</a>
+        </template>
       </a-table>
     </contextMenu>
     <ControlModal :selectedRow="selectedRow" />
@@ -35,7 +35,7 @@ import Filter from '../../compoments/filter/index.vue';
 import { queryTableList } from './setup';
 import ControlModal from './compoments/controlModal/index.vue';
 import { QhjTradeGoodsPickup } from '@/services/go/ermcp/qhj/interface';
-import {getPickUpStateName, getTakeStateName} from "@/common/constants/enumsName";
+import { getPickUpStateName, getTakeStateName } from '@/common/constants/enumsName';
 
 export default defineComponent({
     name: 'platinum_pick_query_tab',
@@ -49,6 +49,9 @@ export default defineComponent({
         const [firstBtn] = _getBtnList('platinum_pick_query_tab', true).value;
         // 表格列表数据
         const { loading, tableList, queryTable } = queryTableList();
+        // 1:备货中  完成备货
+        // 2:待取货(自提) 确认取货
+        // 4:待收货(邮寄) 上传物流信息、确认收货
         initData(() => {
             // 获取列表数据
             queryTable();