退款

parent d1900331
<template>
<view class="container">
<Header title="售后"></Header>
<view class="container">
<Header title="售后"></Header>
<view class="content">
111
</view>
</view>
<view class="content">111</view>
</view>
</template>
<script setup>
import Header from '@/pages/order/components/Header/index.vue';
</script>
<style lang="scss" scoped>
page {
background: #f3f3f3;
background: #f3f3f3;
}
.container {
width: 375 * 2rpx;
margin: 0 auto;
width: 375 * 2rpx;
margin: 0 auto;
.content {
padding-top: 88rpx;
}
.content {
padding-top: 88rpx;
}
}
</style>
\ No newline at end of file
</style>
<template>
<view class="container">
<Header title="我的店铺"></Header>
<view class="container">
<Header title="我的店铺"></Header>
<view class="content">
111
</view>
</view>
<view class="content">111</view>
</view>
</template>
<script setup>
import Header from '@/pages/order/components/Header/index.vue';
</script>
<style lang="scss" scoped>
page {
background: #f3f3f3;
background: #f3f3f3;
}
.container {
width: 375 * 2rpx;
margin: 0 auto;
width: 375 * 2rpx;
margin: 0 auto;
.content {
padding-top: 88rpx;
}
.content {
padding-top: 88rpx;
}
}
</style>
\ No newline at end of file
</style>
......@@ -2,8 +2,12 @@
<view class="container">
<Header title="我的券"></Header>
<view class="tab">
<view :class="currentTab == index ? 'tab-select' : 'tab-item'" @click="changeTab(index)"
v-for="(item, index) in tabList" :key="index">
<view
:class="currentTab == index ? 'tab-select' : 'tab-item'"
@click="changeTab(index)"
v-for="(item, index) in tabList"
:key="index"
>
{{ item }}
</view>
</view>
......@@ -15,8 +19,12 @@
<!-- 优惠券状态 -->
<view class="status">
<view :class="currenStatus == index ? 'status-select' : 'status-item'" @click="changeStatus(index)"
v-for="(item, index) in statusList" :key="index">
<view
:class="currenStatus == index ? 'status-select' : 'status-item'"
@click="changeStatus(index)"
v-for="(item, index) in statusList"
:key="index"
>
{{ item }}
</view>
</view>
......@@ -39,7 +47,11 @@
</view>
<view class="ticket-right">
<image class="img" :src="iconUrl[item.status]" v-if="item.status == 0 || item.status == 2"></image>
<image
class="img"
:src="iconUrl[item.status]"
v-if="item.status == 0 || item.status == 2"
></image>
<view class="head">
<text class="title">{{ item.couponName }}</text>
<view class="headbox">
......@@ -55,8 +67,11 @@
<view class="line"></view>
<view class="footbox" @click="handleChangeDetail(index)">
<text class="desc">详细信息</text>
<wd-icon :name="item.showDetail ? 'chevron-down' : 'chevron-right'" size="15px"
color="#9d9d9d"></wd-icon>
<wd-icon
:name="item.showDetail ? 'chevron-down' : 'chevron-right'"
size="15px"
color="#9d9d9d"
></wd-icon>
</view>
</view>
</view>
......@@ -168,7 +183,7 @@ const getCouponList = async () => {
});
couponData.value.push(...res.data.records);
total.value = res.data.total;
}
}
state.value = 'finished';
};
getCouponList();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment