fix(我的券):调整商品使用范围格式
This commit is contained in:
parent
1a872f497f
commit
488f859afc
|
@ -56,8 +56,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<p class="text">
|
||||
商品使用范围:<br>
|
||||
{{item.productArray.map(item=>item.name).join('、')}}
|
||||
商品使用范围:{{item.productArray.map(item=>item.name).join('、')}}
|
||||
</p>
|
||||
</div>
|
||||
<!-- 空状态 -->
|
||||
|
@ -75,13 +74,23 @@
|
|||
el: "#app",
|
||||
data () {
|
||||
return {
|
||||
tabList: [
|
||||
{ id: 1, text: "待使用" },
|
||||
{ id: 2, text: "已使用" },
|
||||
{ id: 3, text: "已失效" }
|
||||
tabList: [{
|
||||
id: 1,
|
||||
text: "待使用"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
text: "已使用"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
text: "已失效"
|
||||
}
|
||||
],
|
||||
tabActive: 1, /* tab 选中下标 */
|
||||
more: false, /* 是否展示更多 状态 */
|
||||
tabActive: 1,
|
||||
/* tab 选中下标 */
|
||||
more: false,
|
||||
/* 是否展示更多 状态 */
|
||||
couponList: []
|
||||
}
|
||||
},
|
||||
|
@ -117,7 +126,9 @@
|
|||
},
|
||||
|
||||
/* tab点击 */
|
||||
tabHandle ({ id }) {
|
||||
tabHandle ({
|
||||
id
|
||||
}) {
|
||||
this.tabActive = id
|
||||
this.getCouponList()
|
||||
},
|
||||
|
@ -125,7 +136,13 @@
|
|||
/* 请求数据 */
|
||||
getCouponList () {
|
||||
const key = sessionStorage.getItem('key')
|
||||
req.axiosGet('/key/coupon/list', { key, status: this.tabActive }).then(({ data, code }) => {
|
||||
req.axiosGet('/key/coupon/list', {
|
||||
key,
|
||||
status: this.tabActive
|
||||
}).then(({
|
||||
data,
|
||||
code
|
||||
}) => {
|
||||
if (code === 200) {
|
||||
const productArray = []
|
||||
data.map(item => {
|
||||
|
|
Loading…
Reference in New Issue