细节优化

master
gongfuxiang 2023-11-04 10:56:05 +08:00
parent 27d321ab61
commit 469cfe50db
3 changed files with 5 additions and 5 deletions

View File

@ -606,7 +606,7 @@
}
.plugins-wholesale-container-view .item:not(:last-child) {
margin-right: 10rpx;
margin-right: 24rpx;
}
.plugins-wholesale-container {

View File

@ -488,7 +488,7 @@
<text v-if="(plugins_wholesale_data.spec_tips || null) != null" class="spec-tips pa round">{{ plugins_wholesale_data.spec_tips }}</text>
<view class="oh flex-row flex-warp">
<block v-for="(item, index) in plugins_wholesale_data.rules" :key="index">
<view class="item flex-width-half margin-bottom-sm">
<view class="item flex-width-half margin-bottom">
<view class="padding-main bg-base border-radius-main oh tc">
<text class="cr-base">{{ item.arr.msg }}</text>
<text class="margin-left-sm cr-main fw-b text-size-lg">{{ item.arr.val }}</text>

View File

@ -12,21 +12,21 @@
<!-- 未使用 -->
<block v-if="(data_list.not_use || null) != null && data_list.not_use.length > 0 && nav_tabs_value == 'not_use'">
<block v-for="(item, index) in data_list.not_use" :key="index">
<component-coupon-card :prop-data="item.coupon" :prop-start-time="item.time_start" :prop-end-time="item.time_end" :prop-status-type="item.status_type" :prop-status-operable-name="item.status_operable_name" prop-bg="#f5f5f5"></component-coupon-card>
<component-coupon-card :prop-data="item.coupon" :prop-start-time="item.time_start_show_text" :prop-end-time="item.time_end_show_text" :prop-status-type="item.status_type" :prop-status-operable-name="item.status_operable_name" prop-bg="#f5f5f5"></component-coupon-card>
</block>
</block>
<!-- 已使用 -->
<block v-if="(data_list.already_use || null) != null && data_list.already_use.length > 0 && nav_tabs_value == 'already_use'">
<block v-for="(item, index) in data_list.already_use" :key="index">
<component-coupon-card :prop-data="item.coupon" :prop-start-time="item.time_start" :prop-end-time="item.time_end" :prop-status-type="item.status_type" :prop-status-operable-name="item.status_operable_name" prop-bg="#f5f5f5"></component-coupon-card>
<component-coupon-card :prop-data="item.coupon" :prop-start-time="item.time_start_show_text" :prop-end-time="item.time_end_show_text" :prop-status-type="item.status_type" :prop-status-operable-name="item.status_operable_name" prop-bg="#f5f5f5"></component-coupon-card>
</block>
</block>
<!-- 已过期 -->
<block v-if="(data_list.already_expire || null) != null && data_list.already_expire.length > 0 && nav_tabs_value == 'already_expire'">
<block v-for="(item, index) in data_list.already_expire" :key="index">
<component-coupon-card :prop-data="item.coupon" :prop-start-time="item.time_start" :prop-end-time="item.time_end" :prop-status-type="item.status_type" :prop-status-operable-name="item.status_operable_name" prop-bg="#f5f5f5"></component-coupon-card>
<component-coupon-card :prop-data="item.coupon" :prop-start-time="item.time_start_show_text" :prop-end-time="item.time_end_show_text" :prop-status-type="item.status_type" :prop-status-operable-name="item.status_operable_name" prop-bg="#f5f5f5"></component-coupon-card>
</block>
</block>
</view>