|
@@ -107,12 +107,19 @@
|
|
|
</modal-module>
|
|
</modal-module>
|
|
|
|
|
|
|
|
<view class="module-com input-line-wrap">
|
|
<view class="module-com input-line-wrap">
|
|
|
- <view class="">
|
|
|
|
|
|
|
+ <view>
|
|
|
|
|
+
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
|
<view class="tui-title">客户</view>
|
|
<view class="tui-title">客户</view>
|
|
|
- <view class="tui-input" style="display: flex;align-items:center;">
|
|
|
|
|
- <text style="max-width:200upx;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display: inline-block;">{{ form.customName }}</text>
|
|
|
|
|
- <text v-if="Number(customInfo.balance)>0" style="color:#3385FF;font-weight:bold;margin-left:20upx;">余额 ¥{{ parseFloat(customInfo.balance) }}</text>
|
|
|
|
|
|
|
+ <view class="tui-input">
|
|
|
|
|
+ {{ form.customName }}
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </tui-list-cell>
|
|
|
|
|
+
|
|
|
|
|
+ <tui-list-cell class="line-cell" :hover="false" :arrow="false" v-if="Number(customInfo.balance)>0">
|
|
|
|
|
+ <view class="tui-title">余额</view>
|
|
|
|
|
+ <view class="tui-input" style="color:#3385FF;font-weight:bold;">
|
|
|
|
|
+ ¥{{ parseFloat(customInfo.balance) }}
|
|
|
</view>
|
|
</view>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|