From 0abe6ac3b77cd414e860df4979aa06c62c3e6143 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期五, 06 九月 2024 19:06:46 +0800 Subject: [PATCH] 1、【花满芫小程序项目】 小程序-花店:申请售后-售后理由字段布局调整,字数过多显示会跨行 2、【花满芫小程序项目】 管理端-合伙人:质检详情-降级、缺货、补货高亮显示 3、【花满芫小程序项目】 小程序-花店:浏览记录-浏览记录默认状态按照时间倒序排列 因为目前只显示10条记录,不按时间顺序的话最新的浏览记录就不会被看到; 4、【花满芫小程序项目】 小程序-合伙人:合伙人审核-1.已经审核通过后,现在还可以再次提交审核,不合逻辑。 2.审核后的不通过原因,需要显示在小程序端; --- sub_pages/customer/shop/shop-trade.vue | 43 ++----------------------------------------- 1 files changed, 2 insertions(+), 41 deletions(-) diff --git a/sub_pages/customer/shop/shop-trade.vue b/sub_pages/customer/shop/shop-trade.vue index dbd7a58..4b3513b 100644 --- a/sub_pages/customer/shop/shop-trade.vue +++ b/sub_pages/customer/shop/shop-trade.vue @@ -104,47 +104,7 @@ this.currentCategory = this.list[0] || {} } }, - async updateParamsAndSearch() { - //todo 设置参数并查询 - await this.refreshList() - this.$refs.popup_param.close() - }, - openParamPop() { - //todo 同时设置查询参数为空吧 - this.$refs.popup_param.open() - }, - closeParamPop() { - this.$refs.popup_param.close() - }, - buttonSearchFlow() { - - if (this.type == 'category') { - //根据分类名称查询 - this.$message.showLoading() - this.$http.request('get', '/api/customer/flower/category/tree', { - params: { - name: this.query.name || '' - } - }).then(res => { - var data = res.data - this.list = data || [] - if (this.list.length > 0) { - this.query.categoryId = this.list[0].id || '' - this.currentCategory = this.list[0] || {} - } else { - this.query.categoryId = '' - this.currentCategory = {} - } - }).finally(() => { - this.$message.hideLoading() - }) - } else { - uni.navigateTo({ - url: '/sub_pages/customer/trade/list?' + 'supplierName=' + this.query.name - }) - - } - }, + toDetailList(item) { //去商品列表页面 console.log('toDetailList', this.supplierId) @@ -155,6 +115,7 @@ changeType(item) { this.query.categoryId = item.id || '' this.currentCategory = item + //拼接二级分类,然后查询商品列表 }, -- Gitblit v1.9.3