细节优化
parent
27d321ab61
commit
469cfe50db
|
|
@ -606,7 +606,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins-wholesale-container-view .item:not(:last-child) {
|
.plugins-wholesale-container-view .item:not(:last-child) {
|
||||||
margin-right: 10rpx;
|
margin-right: 24rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins-wholesale-container {
|
.plugins-wholesale-container {
|
||||||
|
|
|
||||||
|
|
@ -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>
|
<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">
|
<view class="oh flex-row flex-warp">
|
||||||
<block v-for="(item, index) in plugins_wholesale_data.rules" :key="index">
|
<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">
|
<view class="padding-main bg-base border-radius-main oh tc">
|
||||||
<text class="cr-base">{{ item.arr.msg }}</text>
|
<text class="cr-base">{{ item.arr.msg }}</text>
|
||||||
<text class="margin-left-sm cr-main fw-b text-size-lg">{{ item.arr.val }}</text>
|
<text class="margin-left-sm cr-main fw-b text-size-lg">{{ item.arr.val }}</text>
|
||||||
|
|
|
||||||
|
|
@ -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-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">
|
<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>
|
</block>
|
||||||
|
|
||||||
<!-- 已使用 -->
|
<!-- 已使用 -->
|
||||||
<block v-if="(data_list.already_use || null) != null && data_list.already_use.length > 0 && nav_tabs_value == 'already_use'">
|
<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">
|
<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>
|
</block>
|
||||||
|
|
||||||
<!-- 已过期 -->
|
<!-- 已过期 -->
|
||||||
<block v-if="(data_list.already_expire || null) != null && data_list.already_expire.length > 0 && nav_tabs_value == 'already_expire'">
|
<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">
|
<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>
|
||||||
</block>
|
</block>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue