From 4d8835187c60ad172942677f098f4b1cb4558c62 Mon Sep 17 00:00:00 2001 From: jia <1451658316@qq.com> Date: Fri, 8 Sep 2023 18:52:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E5=93=81=E5=85=A5=E5=BA=93=E4=B8=8A?= =?UTF-8?q?=E6=9E=B6=E6=95=B0=E6=8D=AE=E6=9C=AA=E6=9B=B4=E6=96=B0=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98,=E5=9B=BE=E7=89=87=E5=A4=B1=E7=9C=9F?= =?UTF-8?q?=E5=A4=84=E7=90=86=EF=BC=8C=E5=A7=94=E6=89=98=E9=94=80=E5=94=AE?= =?UTF-8?q?=E5=88=97=E8=A1=A8=20=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 88 +- api/sale.js | 34 +- components/WaterfallsFlow/WaterfallsFlows.vue | 25 +- .../WaterfallsFlowItems.vue | 36 +- components/plantConSwiper/index.vue | 2 +- pages.json | 38 +- pages/columnGoods/goods_search_con/index.vue | 2 + .../commissionedSales/addDelegation/index.vue | 143 +- .../initiateDelegation/index.vue | 96 +- pages/index/index.vue | 157 +- pages/product/list/index.vue | 1527 +++++++++-------- pages/users/online_warehousing/index.vue | 4 +- 12 files changed, 1204 insertions(+), 948 deletions(-) diff --git a/App.vue b/App.vue index 08a81ad..082dc17 100644 --- a/App.vue +++ b/App.vue @@ -202,6 +202,8 @@ + this.checknetwork() + }, onShow() { let that = this @@ -242,10 +244,81 @@ // }) }); - uni.setTabBarItem((e) => { console.log("点击了", e)}); + uni.setTabBarItem((e) => { + console.log("点击了", e) + }); }, methods: { + //网络检测 + checknetwork() { + + uni.onNetworkStatusChange(function(res) { + + if (res.isConnected) { + + + uni.reLaunch({ + + url: '/pages/index/index' + + }) + + } else { + + uni.showModal({ + + title: '系统提示', + + content: '当前设备无网络或网络较差', + + cancelText: '取消', + + confirmText: '确定', + + success: (res) => { + + if (res.confirm) { + + uni.reLaunch({ + + url: '/pages/index/index' + + }) + + } else { + + // #ifdef H5 + + uni.navigateTo({ + + url: '/pages/users/login/login_copy' + + }) + + // #endif + + // #ifdef APP-PLUS + + plus.runtime.quit() + + // #endif + + } + + } + + }) + + } + + }) + + }, + + + + /** * 语音播报 * @@ -399,12 +472,13 @@ margin-top: -50rpx; // box-shadow: 0px 5px 10px 1px rgba(32, 161, 98, 0.3); } - .custom_style-txt{ - display: flex; - flex-direction: column; - align-items: center; - margin-top: 5rpx; - + + .custom_style-txt { + display: flex; + flex-direction: column; + align-items: center; + margin-top: 5rpx; + } } diff --git a/api/sale.js b/api/sale.js index 7fc62dc..a11ed19 100644 --- a/api/sale.js +++ b/api/sale.js @@ -7,4 +7,36 @@ // +---------------------------------------------------------------------- // | Author: CRMEB Team // +---------------------------------------------------------------------- -import request from "@/utils/request.js"; \ No newline at end of file +import request from "@/utils/request.js"; + +//发布委托商品选择 供应链商家接口 +export function supplychain(data) { + return request.get("community/supplychain/list", data); +} + +//普通商家发布委托商品 +export function entrustchain(data) { + return request.post("community/entrust", data); +} + + +//获取委托商品列表 +export function entrustlist(data) { + return request.get("community/entrust/list", data); +} + +//供应链商家是否同意委托 +export function checkchain(id,data) { + return request.post("community/entrust/check/"+id, data); +} + + +//供应链商家申请结束委托 +export function finishchain(id,data) { + return request.post("community/entrust/apply/finish/"+id, data); +} + +//委托商品加入购物车 +export function addEntrustCart(data) { + return request.post("community/entrust/addEntrustCart", data); +} \ No newline at end of file diff --git a/components/WaterfallsFlow/WaterfallsFlows.vue b/components/WaterfallsFlow/WaterfallsFlows.vue index e5f9b95..a5312c8 100644 --- a/components/WaterfallsFlow/WaterfallsFlows.vue +++ b/components/WaterfallsFlow/WaterfallsFlows.vue @@ -7,7 +7,7 @@ - + @@ -16,7 +16,7 @@ - + @@ -25,9 +25,7 @@ \ No newline at end of file diff --git a/pages/users/online_warehousing/index.vue b/pages/users/online_warehousing/index.vue index 75bfcaf..b22c69e 100644 --- a/pages/users/online_warehousing/index.vue +++ b/pages/users/online_warehousing/index.vue @@ -155,7 +155,7 @@ that.where.page = 1; that.shopList = []; getOrderList(that.where, that.mer_id).then(res => { - console.log(res); + // console.log(res); that.shopList = res.data.list console.log(that.shopList); }) @@ -166,7 +166,7 @@ getOrderList(this.where, this.mer_id).then(res => { // console.log(res); this.shopList = res.data.list - console.log(this.shopList); + // console.log(this.shopList); }) }, importshop(order_id, product_id, unique) {