From 2b5bf2b63f6b8718a396f16f02c682f635744425 Mon Sep 17 00:00:00 2001 From: whycq <913841844@qq.com> Date: 星期五, 18 十月 2024 10:56:17 +0800 Subject: [PATCH] 再次拣料-销售单号空格过滤 --- pages/phyz/orderOut/orderOutSelect.vue | 21 ++++++++++++++++++++- 1 files changed, 20 insertions(+), 1 deletions(-) diff --git a/pages/phyz/orderOut/orderOutSelect.vue b/pages/phyz/orderOut/orderOutSelect.vue index 1cb85b4..4c7ad29 100644 --- a/pages/phyz/orderOut/orderOutSelect.vue +++ b/pages/phyz/orderOut/orderOutSelect.vue @@ -125,13 +125,14 @@ }, methods: { getOrderDetlList(threeCode,limit) { + // this.get(threeCode,limit) uni.showLoading({}) let _this = this _this.mask = true _this.data.three_code = threeCode _this.data.limit = limit uni.request({ - url: `${_this.baseUrl}/orderDetl/pakout/list/authV193`, + url: `${_this.baseUrl}/orderDetl/pakout/list/authV3`, header: {'token': uni.getStorageSync('token')}, data: _this.data, method: 'GET', @@ -162,6 +163,24 @@ } }) }, + get(threeCode,limit) { + let _this = this + _this.mask = true + _this.data.three_code = threeCode + _this.data.limit = 10 + for (var i = 0; i < 30; i++) { + console.log(1); + uni.request({ + url: `${_this.baseUrl}/orderDetl/pakout/list/authV3`, + header: {'token': uni.getStorageSync('token')}, + data: _this.data, + method: 'GET', + success(res) { + + } + }) + } + }, searchValueInput1() { this.dataList = [] this.data.curr = 1 -- Gitblit v1.9.1