You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
shop-app/pages/order/saleAfter/saleAfterSelect.vue

73 lines
1.4 KiB

<!--
* @Author: ch
* @Date: 2022-04-14 16:50:37
* @LastEditors: ch
3 years ago
* @LastEditTime: 2022-04-14 18:57:54
* @Description: file content
-->
<template>
<view>
3 years ago
<UiWhiteBox>
<!-- <ui-goods-info -->
<UiGoodsInfo class="goods-info" ></UiGoodsInfo>
</UiWhiteBox>
<UiWhiteBox>
<view class="title">选择售后类型</view>
<view class="item item__first" @click="$Router.push(`/saleAfterApply?type=1`)">
<view>申请退款</view>
<text>没有收到货或已协商同意不退货只退款</text>
</view>
<view class="item" @click="$Router.push(`/saleAfterApply?type=2&status=2`)">
<view>申请退货退款</view>
<text>已收到货需要退还收到的货物</text>
</view>
</UiWhiteBox>
</view>
</template>
<script>
3 years ago
import UiGoodsInfo from '../../../components/UiGoodsInfo.vue'
import UiWhiteBox from '../../../components/UiWhiteBox.vue'
export default {
3 years ago
components: { UiWhiteBox, UiGoodsInfo },
data(){
return {
}
},
methods : {
getOrderInfo(){
}
}
}
</script>
3 years ago
<style lang="scss" scoped>
page{
background: $color-grey1;
}
.title{
height: 98rpx;
line-height: 98rpx;
border-bottom: 2rpx solid $color-grey2;
padding: 0 30rpx;
color: $color-grey5;
}
.item{
padding: 40rpx 0;
margin: 0 40rpx;
&__first{
border-bottom: 2rpx solid $color-grey2;
}
view{
font-weight: bold;
margin-bottom:20rpx;
}
text{
color: $color-grey4;
font-size: $font-size-sm;
}
}
.goods-info{
border: 0;
}
</style>