From 8854175ab048274e13351c3630c6597298c53f9a Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期日, 29 九月 2024 10:09:35 +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