This commit is contained in:
aihe 2024-10-18 23:34:02 +08:00
parent 5a40e1d2c5
commit 727cb28e82
2 changed files with 8 additions and 3 deletions

View File

@ -104,7 +104,7 @@
params = Object.assign({}, params || this.searchParam)
delete params.totalVolume // 体积 非必填
let vals = Object.values(params)
return vals.length == vals.filter(v => !!v).length
return vals.length == vals.filter(v => (v==0 || !!v)).length
},
async calcTypeFee(params = {}){
let handleServer = apiService.preCalcWaybillFee

View File

@ -121,8 +121,13 @@
<u-row>
<u-avatar :src="curPro.item.avatar" size="110"></u-avatar>
<view class="pl-30">
<u-text :text="curPro.item.empName" size="30" :bold="true" lines="1"></u-text>
<view class="mt-20">
<u-row>
<u-text :text="curPro.item.empName" size="30" :bold="true" lines="1"></u-text>
<view class="ml-20 font-24 pos-rlt" style="padding: 8rpx 20rpx;border-radius: 20rpx;background-color: #d2d4d8;">
{{curPro.item.ownerSiteName}}
</view>
</u-row>
<view class="mt-10">
{{curPro.item.phone}}
</view>
</view>