作者 芦瑞泽

改bug

... ... @@ -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 || 0 }}</view>
<view style="margin-right: 82rpx;padding-top: 2rpx;">{{ dataTotal?.yesIncome.toFixed(2) || '0.00' }}</view>
<view style="margin-right: 20rpx">累积收入</view>
<view style="padding-top: 2rpx;">{{ dataTotal?.income || 0 }}</view>
<view style="padding-top: 2rpx;">{{ dataTotal?.income.toFixed(2) || '0.00' }}</view>
</view>
<view class="total-numCard">
... ...
... ... @@ -22,7 +22,7 @@
</u-cell-group>
</view>
<view style="box-sizing: border-box; padding: 36rpx 30rpx">
<view style="font-size: 15px; color: #303133; margin-bottom: 22rpx">个人介绍</view>
<view style="font-size: 15px; color: #303133; margin-bottom: 22rpx">擅长</view>
<u-textarea v-model="form['introduction']" :placeholder="`介绍一下自己吧`" border="none" count maxlength="200"></u-textarea>
</view>
... ...
... ... @@ -45,8 +45,8 @@ export default {
picture2: '',
show: false,
ControlsList: [
// { title: '微信', imgUrl: '/static/images/wechat.png', type: 'wechat' },
// { title: '朋友圈', imgUrl: '/static/images/puq.png', type: 'puq' },
{ title: '微信', imgUrl: '/static/images/wechat.png', type: 'wechat' },
{ title: '朋友圈', imgUrl: '/static/images/puq.png', type: 'puq' },
{ title: '保存图片', imgUrl: '/static/images/download.png', type: 'download' }
],
qrCodeDetail: {},
... ...
... ... @@ -30,7 +30,7 @@
<view class="itemtitle">{{ proxy.$h.optObjectValue('incomeTypeList', _.incomeType) }}</view>
<view class="timetext">{{ _.createTime }}</view>
</view>
<view class="moneytext" :class="{ incomemoney: [1, 3, undefined].includes(_.incomeType) }">{{ [1, 3, undefined].includes(_.incomeType) ? '+' : '-' }}{{ _.amount }}</view>
<view class="moneytext" :class="{ incomemoney: [1, 3, undefined].includes(_.incomeType) }">{{ [1, 3, undefined].includes(_.incomeType) ? '+' : '-' }}{{ _.amount.toFixed(2) }}</view>
</view>
</view>
</scroll-view>
... ...
... ... @@ -27,7 +27,7 @@
</view>
<u-line margin="36rpx 0"></u-line>
<view style="margin-bottom: 114rpx">
<text class="redtext">可提现¥{{ amount }}</text>
<text class="redtext">可提现¥{{ 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 || 0 }}/预计收入</view>
<view class="moneytext flexD" v-if="!props.isPrescriptionDrug && !props.isRecord">¥{{ 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 || 0 }}</view>
<view class="blacktext" style="margin-bottom: 8rpx">¥{{ _.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 || '0.00' }}</view>
<view class="blacktext">¥{{ 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 }}元/单</view>
<view class="money">¥{{ _.money.toFixed(2) }}元/单</view>
</view>
<image :src="_.imgUrl" mode="aspectFill" />
</view>
... ...