|
@@ -52,7 +52,7 @@
|
|
|
<view class="sales-list-box">
|
|
|
<scroll-view class="sales-list-con" :style="{height:scrollH+'upx'}" scroll-y @scrolltolower="onreachBottom">
|
|
|
<view class="sales-list-item border-b flex align_center justify_between" v-for="(item, index) in listData" :key="item.id">
|
|
|
- <view class="font_13 flex_1 flex justify_between" @click="handleEdit(item)">
|
|
|
+ <view class="font_13 flex_1 flex justify_between">
|
|
|
<view class="pimgs">
|
|
|
<u-image :src="item.productMainImage?item.productMainImage:`../../static/${theme}/def_img@2x.png`" width="128" height="128" border-radius="10"></u-image>
|
|
|
<view v-if="item.oosFlag == 1" class="sign" :style="{backgroundColor: $config('errorColor')}">急</view>
|
|
@@ -75,10 +75,9 @@
|
|
|
<view class="sales-item-price" v-if="detailData&&detailData.discountAmount">折后:¥{{toThousands(item.discountedAmount||0, 2)}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="btn-box" style="padding-right: 0;">
|
|
|
- <!-- <u-icon v-if="pageData.type=='edit'" @click="handleDel(item)" name="trash" :color="$config('errorColor')" size="40"></u-icon> -->
|
|
|
+ <!-- <view class="btn-box" style="padding-right: 0;">
|
|
|
<u-button v-if="pageData.type=='edit'" @click="handleDel(item)" size="mini" :hair-line="false" shape="circle" plain type="error" hover-class="none">删除</u-button>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
</view>
|
|
|
<view v-if="listData && listData.length == 0">
|
|
|
<u-empty :text="noDataText" mode="list" :img-width="200" :margin-top="30"></u-empty>
|