From c9864973ff3b3e325bbb16ea92a44c5661a2eca0 Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Thu, 2 Jul 2020 08:42:36 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E5=8D=87=E7=BA=A7uview?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9cc3ff0..59f01b1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,9 +5,9 @@ "requires": true, "dependencies": { "uview-ui": { - "version": "1.3.68", - "resolved": "https://registry.npmjs.org/uview-ui/-/uview-ui-1.3.68.tgz", - "integrity": "sha512-fwszoohFC1HLvIqwwnXPRytT52qGy0viGEzyJtVwemNBAu5z6Ddjwe9ORqsrlQQo7PSvHdyCNHWrSLGzoyKKoQ==" + "version": "1.4.3", + "resolved": "https://registry.npm.taobao.org/uview-ui/download/uview-ui-1.4.3.tgz?cache=0&sync_timestamp=1593581462515&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fuview-ui%2Fdownload%2Fuview-ui-1.4.3.tgz", + "integrity": "sha1-iZXwicmK50MPu87vgbDDTBmm8eE=" } } } diff --git a/package.json b/package.json index 8089796..2734381 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,6 @@ "author": "", "license": "ISC", "dependencies": { - "uview-ui": "^1.3.68" + "uview-ui": "^1.4.3" } } -- 2.45.2 From 583afe370f0bbe8e27bfe314570bcf8e3300e703 Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Thu, 2 Jul 2020 09:49:35 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E7=9B=B4=E6=92=AD=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pageE/zhibo/index.nvue | 116 +++++++++++++++++++++++++++++++++++------ 1 file changed, 99 insertions(+), 17 deletions(-) diff --git a/pageE/zhibo/index.nvue b/pageE/zhibo/index.nvue index c8c8cec..80c7461 100644 --- a/pageE/zhibo/index.nvue +++ b/pageE/zhibo/index.nvue @@ -1,19 +1,101 @@ - - \ No newline at end of file + \ No newline at end of file -- 2.45.2 From 5a99dfc2c9d5a7ee38d321929915fb147750388c Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Thu, 2 Jul 2020 15:39:25 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E5=95=86=E5=9F=8E=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/api/shop.js | 6 ++++++ pageC/merchant/index.vue | 27 ++++++++++++++++++++++++--- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/common/api/shop.js b/common/api/shop.js index 46361ab..e465a2f 100644 --- a/common/api/shop.js +++ b/common/api/shop.js @@ -109,6 +109,12 @@ export default { goods_id: id }); }, + getStoreGoodsList({ id, page = 0}){ + return vm.$u.post('Store/getStoreGoodsList', { + id: id, + page:page + }); + } } } diff --git a/pageC/merchant/index.vue b/pageC/merchant/index.vue index fd12524..0f1bd41 100644 --- a/pageC/merchant/index.vue +++ b/pageC/merchant/index.vue @@ -40,8 +40,8 @@ 111 - - 222 + + @@ -65,13 +65,18 @@ \ No newline at end of file -- 2.45.2 From 3e077a810a0eaf2f69c7ff2a2c09d1f23a8991be Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Thu, 2 Jul 2020 15:40:01 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pageC/merchant/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/pageC/merchant/index.vue b/pageC/merchant/index.vue index 0f1bd41..a55536e 100644 --- a/pageC/merchant/index.vue +++ b/pageC/merchant/index.vue @@ -40,6 +40,7 @@ 111 + -- 2.45.2 From 98efaa4352f34f6f87b60c46b55b8d114b1f88f8 Mon Sep 17 00:00:00 2001 From: luyuan <1162963624@qq.com> Date: Fri, 3 Jul 2020 09:09:21 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E6=9F=90=E4=BA=9B=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pageA/login/login.vue | 3 +++ pageE/zhibo/index.nvue | 2 +- pages/index/index.vue | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pageA/login/login.vue b/pageA/login/login.vue index d5347c8..a855d42 100644 --- a/pageA/login/login.vue +++ b/pageA/login/login.vue @@ -115,6 +115,9 @@ }, // 用户登录 loginOn() { + // uni.navigateTo({ + // url: '/pageE/zhibo/index' + // }); console.log("登录") // console.log(this.member_mobile) // console.log(this.sms_code) diff --git a/pageE/zhibo/index.nvue b/pageE/zhibo/index.nvue index 80c7461..5ead3cc 100644 --- a/pageE/zhibo/index.nvue +++ b/pageE/zhibo/index.nvue @@ -1,7 +1,7 @@