From a0ea1ece4e3ffb728aee73e954d65a2209ebde32 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期三, 06 十一月 2024 17:51:45 +0800 Subject: [PATCH] 1.提现不能超过500 --- pages/home/supplier-home.vue | 21 +++++++++++++++++++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/pages/home/supplier-home.vue b/pages/home/supplier-home.vue index 65eda05..6204421 100644 --- a/pages/home/supplier-home.vue +++ b/pages/home/supplier-home.vue @@ -39,8 +39,25 @@ <view class="name"> <view class="t1"> - {{ (!!currentInfo.supplierDTO?(currentInfo.supplierDTO.name):"") || currentInfo.nickName || currentInfo.loginName || '-'}}<span - v-if="currentInfo.supplierDTO&¤tInfo.supplierDTO.status!=='P'"> + <!-- {{ (!!currentInfo.supplierDTO?(currentInfo.supplierDTO.name):"") || currentInfo.nickName || currentInfo.loginName || '-'}} --> + <span v-if="currentInfo.partnerDTO && currentInfo.partnerDTO.name"> + {{ currentInfo.partnerDTO.name }} + </span> + <span v-else-if="currentInfo.supplierDTO && currentInfo.supplierDTO.name"> + {{ currentInfo.supplierDTO.name }} + </span> + <span v-else-if="currentInfo.customerDTO && currentInfo.customerDTO.name"> + {{ currentInfo.customerDTO.name }} + </span> + <span v-else-if="currentInfo.nickName"> + {{ currentInfo.nickName }} + </span> + <span v-else-if="currentInfo.loginName"> + {{ currentInfo.loginName }} + </span> + <span v-else>-</span> + + <span v-if="currentInfo.supplierDTO&¤tInfo.supplierDTO.status!=='P'"> ({{currentInfo.supplierDTO?currentInfo.supplierDTO.statusStr:''}})</span> <span v-if="currentInfo.partnerDTO&¤tInfo.partnerDTO.status!=='P'"> ({{currentInfo.partnerDTO?currentInfo.partnerDTO.statusStr:''}})</span> -- Gitblit v1.9.3