diff --git a/buyer/src/api/common.js b/buyer/src/api/common.js index 76fc0e05..def96a12 100644 --- a/buyer/src/api/common.js +++ b/buyer/src/api/common.js @@ -33,7 +33,7 @@ export function sendSms (params) { }); } /** - * 发送短信验证码 + * 获取logo图标 */ export function getLogo () { return request({ diff --git a/buyer/src/assets/images/logo2.png b/buyer/src/assets/images/logo2.png new file mode 100644 index 00000000..4ee26429 Binary files /dev/null and b/buyer/src/assets/images/logo2.png differ diff --git a/buyer/src/components/nav/GoodsClassNav.vue b/buyer/src/components/nav/GoodsClassNav.vue index b8fd1fd8..f249f8cc 100644 --- a/buyer/src/components/nav/GoodsClassNav.vue +++ b/buyer/src/components/nav/GoodsClassNav.vue @@ -95,7 +95,7 @@ +
{{showTagCount===5?'更多筛选项':'收起筛选项'}}
@@ -168,6 +169,7 @@ export default { first: {}, second: {} }, + showTagCount: 5, // 展示的搜索项数量 multiple: false, // 多选 tagsContent: [ // 标签 @@ -369,6 +371,10 @@ export default { }); } }); + }, + // 展示更多搜索项 + moreOptions () { + this.showTagCount = this.showTagCount === 5 ? 100 : 5 } }, mounted () { @@ -502,8 +508,8 @@ export default { /** 筛选主体 */ .content { background: #fff; - border-top: 1px solid #999; - border-bottom: 1px solid #999; + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; margin: 10px 0; } /** 品牌 start */ @@ -700,6 +706,13 @@ export default { } } } +.more-options{ + margin: 5px; + color: #2d8cf0; + font-size: 12px; + cursor: pointer; + text-align: right; +} /** 其他筛选项 end */ diff --git a/buyer/src/pages/couponCenter.vue b/buyer/src/pages/couponCenter.vue index 3c71aa07..b2da1057 100644 --- a/buyer/src/pages/couponCenter.vue +++ b/buyer/src/pages/couponCenter.vue @@ -5,7 +5,7 @@
- +

领券中心

diff --git a/buyer/src/pages/home/enumeration.js b/buyer/src/pages/home/enumeration.js index 638c6af7..416a30e4 100644 --- a/buyer/src/pages/home/enumeration.js +++ b/buyer/src/pages/home/enumeration.js @@ -75,5 +75,9 @@ export const afterSaleStatusList = [ { name: '完成售后', status: 'COMPLETE' + }, + { + name: '等待平台退款', + status: 'WAIT_REFUND' } ] diff --git a/buyer/src/pages/home/orderCenter/AfterSale.vue b/buyer/src/pages/home/orderCenter/AfterSale.vue index 9b1138f1..826f4164 100644 --- a/buyer/src/pages/home/orderCenter/AfterSale.vue +++ b/buyer/src/pages/home/orderCenter/AfterSale.vue @@ -235,6 +235,7 @@ export default { this.submitLoading = false }) }, + // 提交物流modal openModal (row) { console.log(row); this.singleOrder = row; diff --git a/buyer/src/pages/home/orderCenter/AfterSaleDetail.vue b/buyer/src/pages/home/orderCenter/AfterSaleDetail.vue index 51301f2e..400a4bb2 100644 --- a/buyer/src/pages/home/orderCenter/AfterSaleDetail.vue +++ b/buyer/src/pages/home/orderCenter/AfterSaleDetail.vue @@ -2,7 +2,7 @@
-

{{filterOrderStatus(afterSale.serviceStatus)}}

+

{{afterSale.serviceName}}

{{ afterSale.orderStatusValue }}

售后单号:{{ afterSale.sn }}    订单号:{{afterSale.orderSn}}

创建时间:{{afterSale.createTime}}
@@ -31,8 +31,22 @@

服务单信息

- + + + + + @@ -53,7 +67,7 @@
退款方式{{afterSale.refundWay == 'ORIGINAL' ? '原路退回' : '账号退款'}}{{afterSale.applyRefundPrice | unitPrice('¥')}}退款方式{{afterSale.refundWay == 'ORIGINAL' ? '原路退回' : '账号退款'}}
退款金额{{afterSale.actualRefundPrice | unitPrice('¥')}}
商品处理方式{{afterSale.serviceType == 'RETURN_MONEY' ? '退款' : '退货'}}