提现功能需要添加

This commit is contained in:
bobobobo
2026-01-04 23:35:06 +08:00
parent a4ae562396
commit 42eba945e8
58 changed files with 4825 additions and 1015 deletions

View File

@@ -94,7 +94,7 @@
<view class="swipe-box">
<view
v-if="item.defaultAddress == 0"
class="btn-box"
class="public-uni-swipe-action-right"
@click="onDefault(item)"
>
<uni-icons
@@ -104,7 +104,10 @@
></uni-icons>
<text class="iocn-name">设为默认</text>
</view>
<view class="btn-box" @click="onDelete(item)">
<view
class="public-uni-swipe-action-right"
@click="onDelete(item)"
>
<uni-icons
type="trash"
size="18"
@@ -121,6 +124,8 @@
</template>
<style lang="scss" scoped>
@import '@/styles/global.scss';
.top-right-name {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
@@ -181,28 +186,6 @@
}
.swipe-box {
display: flex;
.btn-box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgb(47, 194, 17);
width: 130rpx;
.iocn-name {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 28rpx;
color: #fff;
text-align: left;
font-style: normal;
text-transform: none;
}
// 最后一个
&:last-child {
background: rgb(206, 59, 22);
}
}
}
}
</style>