This commit is contained in:
weipengfei 2024-03-18 16:02:28 +08:00
parent 49dc968ecf
commit 069dba3a17
2 changed files with 29 additions and 4 deletions

View File

@ -2,8 +2,8 @@
"name" : "惠农商户平台", "name" : "惠农商户平台",
"appid" : "__UNI__1EE148C", "appid" : "__UNI__1EE148C",
"description" : "", "description" : "",
"versionName" : "1.3.7", "versionName" : "1.3.9",
"versionCode" : 137, "versionCode" : 139,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -63,7 +63,24 @@
</view> </view>
<view class="b-card"> <view class="b-card">
<view class="b-top"> <view class="b-top">
<view>采购目标金额{{info.purchase_target}}</view> <view>里海云仓采购目标金额{{info.official_purchase_target}}</view>
<view>当前进度{{info.official_purchase_amount}}</view>
</view>
<view class="b-bottom">
<view class="pro">
<view class="loss" :style="{left: `-${100-info.official_purchase_finish_rate}%`}">
<image class="image" src="https://lihai001.oss-cn-chengdu.aliyuncs.com/def/f805f20240229155704834.webp"></image>
<view class="text">{{info.official_purchase_finish_rate}}%</view>
</view>
</view>
<view v-if="info.official_purchase_finish_rate>=100" style="color: #FF5E0C;">已完成</view>
<view v-else style="color: #ADADAD;">未完成</view>
</view>
</view>
<view class="b-card">
<view class="b-top">
<view>其他采购目标金额{{info.purchase_target}}</view>
<view>当前进度{{info.purchase_amount}}</view> <view>当前进度{{info.purchase_amount}}</view>
</view> </view>
<view class="b-bottom"> <view class="b-bottom">
@ -93,7 +110,8 @@
<view class="list-b-text" v-for="(item,index) in list" :key="index"> <view class="list-b-text" v-for="(item,index) in list" :key="index">
<view class="item1">{{ item.extra.purchase_amount }}</view> <view class="item1">{{ item.extra.purchase_amount }}</view>
<view class="item2">{{ item.extra.sale_amount }}</view> <view class="item2">{{ item.extra.sale_amount }}</view>
<view class="item3">{{ item.coupon_price }}</view> <view class="item3" v-if="item.status!=1">{{ cPrice(item.coupon_price) }}</view>
<view class="item3" v-else>{{ item.coupon_price }}</view>
<view class="item4"> <view class="item4">
<text v-if="item.status!=1">未激活</text> <text v-if="item.status!=1">未激活</text>
<text v-else style="color: #FF5E0C;">已到账</text> <text v-else style="color: #FF5E0C;">已到账</text>
@ -158,6 +176,12 @@
getSubsidyRecord(this.mer_id, this.where).then(res=>{ getSubsidyRecord(this.mer_id, this.where).then(res=>{
this.list = res.data.record; this.list = res.data.record;
}) })
},
cPrice(n){ //
let t = Number(this.info.official_purchase_finish_rate) + Number(this.info.purchase_finish_rate) + Number(this.info.sale_finish_rate);
t/=3*100;
t==0?t=1:null;
return (+n*t).toFixed(2);
} }
}, },
onPullDownRefresh() { onPullDownRefresh() {
@ -271,6 +295,7 @@
.b-top{ .b-top{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
font-size: 26rpx;
} }
.b-bottom{ .b-bottom{
display: flex; display: flex;