This commit is contained in:
2024-03-15 23:20:20 +08:00
parent 3ce85e2396
commit 351e20f0c0
19 changed files with 311 additions and 72 deletions

View File

@@ -11,7 +11,8 @@
</view>
</view>
<view v-show='tabIndex==1' class='address-view c-flex-column'>
<view v-show='tabIndex==1' class='address-view c-flex-column'
@click.stop='goPath("/pages/mine/subs/address/address-list")'>
<view class='user-info c-flex-row'>
<text>默认</text>
<text>黄先生</text>
@@ -102,6 +103,7 @@
import { assetsUrl } from '@/utils/assets';
import PaymentDialog from '../components/payment-dialog.vue';
import CouponDialog from '@/pages/mall/subs/components/coupon-dialog.vue';
import { goPath } from '@/utils';
const couponDialogRef = ref();
const paymentDialogRef = ref();
@@ -144,9 +146,16 @@ const payment = () => {
}
}
.tab:nth-of-type(1) {
border-radius: 10rpx 0 0 0;
}
.tab:nth-of-type(2) {
border-radius: 0 10rpx 0 0;
}
.tab-active {
background: #FFFFFF;
border-radius: 10rpx 0 10rpx 0;
}
.tab:nth-of-type(1) image {