@@ -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: [],
@@ -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}`);
});
}
@@ -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 };