Przeglądaj źródła

查询提货商品

huangbin 4 lat temu
rodzic
commit
0a7b2761e8

+ 2 - 1
src/services/dataCenter/index.ts

@@ -22,7 +22,8 @@ const needClearSourceData: NeedClearSourceDataType = {
     WPFInfo: new WPFInfo(),
 
     queryClientFixedADConfigs: [],
-    checkTokenTimeDiff: Math.floor(Math.random() * 6 + 5) * 60 * 1000,
+    // checkTokenTimeDiff: Math.floor(Math.random() * 6 + 5) * 60 * 1000,
+    checkTokenTimeDiff: 1 * 60 * 1000,
     accountList: [],
     areaRoleMarketList: [],
     taAccountMarketList: [],

+ 1 - 1
src/services/go/ermcp/qhj/index.ts

@@ -152,7 +152,7 @@ export function queryParentAreaList(): Promise<QhjParentAreaList[]> {
  */
 export function queryPickGoods(status?: string): Promise<QhjPickGoods[]> {
     const param = status ? { status } : {}
-    return commonSearch_go('/Qhj/QueryPickGoods', param).catch((err) => {
+    return commonSearch_go('/QhjMgr/QueryPickGoods', param).catch((err) => {
         throw new Error(`查询提货商品: ${err}`);
     });
 }

+ 1 - 1
src/views/platinum/platinum_pick_query/compoments/filter/index.vue

@@ -55,7 +55,7 @@ export default defineComponent({
 
         const { selectList, inputList, fixedBtnList } = handleFilter(select, input, context, getFilterRangeTime(date));
         initData(() => {
-            queryPickGoods().then((res) => {
+            queryPickGoods('1').then((res) => {
                 select.value[0].list = res.map((e) => {
                     return { value: e.pickupgoodsid, lable: e.pickupgoodsname };
                 });