|
|
@@ -9,11 +9,9 @@
|
|
|
:up="upOption" @up="upCallback" @emptyclick="emptyClick">
|
|
|
|
|
|
<view class="flex-row justify-center">
|
|
|
-
|
|
|
<view class="flex-col">
|
|
|
- <view class="flex-col" :class="item.state == '0'?'':'listBackground'" v-for="(item,index) in list" :key="index" >
|
|
|
-
|
|
|
- <view class="row-list flex-row justify-start">
|
|
|
+ <view class="flex-col" v-for="(item,index) in list" :key="index" >
|
|
|
+ <view class="flex-row justify-start" :class="item.state == '0'?'row-list':'listBackground'">
|
|
|
<view class="h-text flex-col justify-center ">
|
|
|
<view class="money">
|
|
|
<text>{{item.discountsPrice}}</text>
|
|
|
@@ -59,24 +57,21 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view v-if="showRemarkId == item.id " class="remark" style="text-indent:unset">
|
|
|
- <view v-if="item.remark !=null" class="remarkText">
|
|
|
+ <view v-if="showRemarkId == item.id" class="remark" style="text-indent:unset">
|
|
|
+ <view class="remarkText">
|
|
|
<view>
|
|
|
可用门店:<text>{{item.useStoreDesc}}</text>
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view v-if="item.remark !=null">
|
|
|
使用说明:<text>{{item.remark}}</text>
|
|
|
</view>
|
|
|
+ <text v-else class="remarkText">该优惠券暂无使用说明</text>
|
|
|
</view>
|
|
|
- <text v-else class="remarkText">该优惠券暂无使用说明</text>
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
</view>
|
|
|
-
|
|
|
-
|
|
|
</view>
|
|
|
-
|
|
|
</mescroll-uni>
|
|
|
</template>
|
|
|
|