作者 芦瑞泽

tofix问题修复,细节优化

... ... @@ -14,9 +14,9 @@
<view class="flexA total-ffftext" style="margin-bottom: 46rpx">
<view style="margin-right: 20rpx">昨日收入</view>
<view style="margin-right: 82rpx;padding-top: 2rpx;">{{ dataTotal?.yesIncome.toFixed(2) || '0.00' }}</view>
<view style="margin-right: 82rpx;padding-top: 2rpx;">{{ parseFloat(dataTotal?.yesIncome).toFixed(2) || '0.00' }}</view>
<view style="margin-right: 20rpx">累积收入</view>
<view style="padding-top: 2rpx;">{{ dataTotal?.income.toFixed(2) || '0.00' }}</view>
<view style="padding-top: 2rpx;">{{ parseFloat(dataTotal?.income).toFixed(2) || '0.00' }}</view>
</view>
<view class="total-numCard">
... ...
... ... @@ -27,7 +27,7 @@
</view>
<u-line margin="36rpx 0"></u-line>
<view style="margin-bottom: 114rpx">
<text class="redtext">可提现¥{{ amount.toFixed(2) || '0.00' }}</text>
<text class="redtext">可提现¥{{ parseFloat(amount).toFixed(2) || '0.00' }}</text>
<text class="bluetext" @click="params.amount = amount">全部提现</text>
</view>
<view class="money-title">提现到</view>
... ...
... ... @@ -37,7 +37,7 @@
<u-icon name="arrow-right" size="16" color="#05B8D2"></u-icon>
</view>
<u-line margin="32rpx 0 22rpx 0"></u-line>
<view class="moneytext flexD" v-if="!props.isPrescriptionDrug && !props.isRecord">¥{{ props.item?.award.toFixed(2) || '0.00' }}/预计收入</view>
<view class="moneytext flexD" v-if="!props.isPrescriptionDrug && !props.isRecord">¥{{ parseFloat(props.item?.award).toFixed(2) || '0.00' }}/预计收入</view>
<view class="flexD">
<view class="flexW" v-if="!props.isPrescriptionDrug">
<up-button type="info" v-if="props.item?.orderId !== null" shape="circle" text="处方单" throttleTime="1500" :customStyle="{ width: '170rpx', height: '64rpx', marginRight: '20rpx' }" @click="showPrHandler"></up-button>
... ...
... ... @@ -31,7 +31,7 @@
<view class="graytext">{{ _.des || '' }}</view>
</view>
<view>
<view class="blacktext" style="margin-bottom: 8rpx">¥{{ _.amount.toFixed(2) || 0 }}</view>
<view class="blacktext" style="margin-bottom: 8rpx">¥{{ parseFloat(_.amount).toFixed(2) || 0 }}</view>
<view class="graytext">x{{ _.num || 0 }}</view>
</view>
</view>
... ... @@ -48,7 +48,7 @@
</view>
<view class="flexJ mb24" style="margin-top: 24rpx">
<view class="text">总金额</view>
<view class="blacktext">¥{{ props.PrescriptionDetail?.amount.toFixed(2) || '0.00' }}</view>
<view class="blacktext">¥{{ parseFloat(props.PrescriptionDetail?.amount).toFixed(2) || '0.00' }}</view>
</view>
<!-- <view class="flexJ mb24">
... ...
... ... @@ -8,7 +8,7 @@
<view>
<view class="title">{{ _.title }}</view>
<view class="text">{{ _.text }}</view>
<view class="money">¥{{ _.money.toFixed(2) }}元/单</view>
<view class="money">¥{{ parseFloat(_.money).toFixed(2) }}元/单</view>
</view>
<image :src="_.imgUrl" mode="aspectFill" />
</view>
... ...
... ... @@ -102,6 +102,8 @@ onShow(() => {
if (subOrderState.value == 2 && orderState.value == 0 && isJump.value === 'err') return
orderStore.getOrderListHandler(true, orderState.value, subOrderState.value)
console.log('orderStateList',orderStateList);
console.log('orderState',orderState);
})
onReachBottom(() => {
... ...
// export const baseURL = 'http://192.168.10.167:8881/jeecg-boot'
// export const baseURL = 'http://t5qnpc.natappfree.cc/jeecg-boot'
export const baseURL = 'https://doctor.apple02.brofirst.cn/jeecg-boot'
export const baseURL = 'https://pet.apple02.brofirst.cn/jeecg-boot'
// export const baseURL = 'http://114.115.178.175:8799/jeecg-boot'
// export const baseURL = 'http://127.0.0.1:4523/m1/3332971-0-default/jeecg-boot' // mock
... ...