From a1321ff4ad712a1c14595bbb7cb6edfa029eca0b Mon Sep 17 00:00:00 2001 From: zhao_js <349234519@qq.com> Date: 星期三, 03 一月 2024 15:39:45 +0800 Subject: [PATCH] no message --- H5/pages/ad_page/product_sc.vue | 80 +++++++++++++++++++++++++++++++++++++-- 1 files changed, 75 insertions(+), 5 deletions(-) diff --git a/H5/pages/ad_page/product_sc.vue b/H5/pages/ad_page/product_sc.vue index f51f385..7d0ab0d 100644 --- a/H5/pages/ad_page/product_sc.vue +++ b/H5/pages/ad_page/product_sc.vue @@ -5,8 +5,25 @@ size="mini">绱犳潗涓嬭浇</button> <button @click="toTab(2)" class="mini-btn" type="default" size="mini">鐭俊瀹℃牳</button> <button @click="toTab(3)" class="mini-btn" type="default" size="mini">寰俊鏈嬪弸鍦�</button> - </view> + </view> + <view style="display: flex;flex-wrap: wrap; padding: 0.5rem;justify-content:space-between;"> + <view style="display: flex;flex-wrap: wrap;"> + <button @click="tongbu()" style="margin-right: 0.2rem;" type="primary"> + 鍟嗗搧鍚屾 + </button> + <button @click="getCount()" style="margin-right: 0.2rem;" type="primary"> + 鏌ョ湅閾鸿揣鍗� + </button> + <button @click="clearHuo()" type="primary"> + 娓呴櫎閾鸿揣鍗� + </button> + </view> + + <view @click="refreshList()" class="refresh"> + 鍒锋柊 + </view> + </view> <cc-pullScroolView class="pullScrollView" ref="pullScroll" :enablePullDown="false" :back-top="false"> <view> <view v-if="productList.length>0" class="orders-list d-flex flex-column w-100" @@ -38,7 +55,8 @@ <view style="display: flex;"> <view style="display: flex;flex-wrap:wrap;" v-if="currentId==item.id"> - <view style="margin: 0.3rem;" v-for="(linkitem, linkindex) in currentLink" :key="linkindex"> + <view style="margin: 0.3rem;" + v-for="(linkitem, linkindex) in currentLink" :key="linkindex"> <button @click="download(linkitem)" type="primary"> 涓嬭浇{{linkindex}} </button> @@ -91,9 +109,51 @@ } }, methods: { - toPyq() { - uni.navigateTo({ - url: '/pages/ad_page/wx_pyqset' + //鍟嗗搧鍚屾 + tongbu() { + this.$http.post('/api/ProductManage/AddDistributebillTask', {}).then(e => { + if (e.result == true) { + uni.showToast({ + title: '鍚屾浠诲姟宸叉彁浜わ紝璇风◢鍚庡埛鏂伴〉闈�', + icon: 'none' + }); + } + + }).catch(function(err) { + console.log(err); + }) + }, + refreshList() + { + this.productList=[]; + this.getTemplateData(); + }, + //鏌ョ湅閾鸿揣鍗� + getCount() { + this.$http.post('/api/ProductInfo/DistributebillGet', {}).then(e => { + if (e.success == true) { + uni.showToast({ + title: '褰撳墠閾鸿揣鍗曞叡鏈�' + e.result + '浠跺晢鍝�', + icon: 'none' + }); + } + + }).catch(function(err) { + console.log(err); + }) + }, + //娓呴櫎閾鸿揣鍗� + clearHuo() { + this.$http.post('/api/ProductInfo/ClearDistributebill', {}).then(e => { + if (e.success == true) { + uni.showToast({ + title: '娓呴櫎鎴愬姛锛�', + icon: 'none' + }); + } + + }).catch(function(err) { + console.log(err); }) }, //妫�鏌ョ櫧鍚嶅崟 @@ -199,6 +259,16 @@ width: 80%; } + .refresh { + display: flex; + align-items: center; + color: #fff; + background: #FF928F; + padding: 0.6rem; + border-radius: 10px; + font-size: 0.8rem; + } + .container { display: flex; flex-direction: column; -- Gitblit v1.9.3