更换正式环境,测试修改
This commit is contained in:
@@ -44,8 +44,9 @@
|
||||
</up-radio-group>
|
||||
</view>
|
||||
</up-form-item>
|
||||
|
||||
<up-form-item label="还款金额(¥)" prop="repaymentAmount">
|
||||
<up-input v-model="pageData.formData.repaymentAmount" type="number" placeholder="请输入金额" customStyle="padding: 0!important;">
|
||||
<up-input v-model="pageData.formData.repaymentAmount" type="digit" @change="pageData.formData.repaymentAmount = $utils.isMoney(pageData.formData.repaymentAmount)" placeholder="请输入金额" customStyle="padding: 0!important;">
|
||||
<template #prefix>
|
||||
<up-button color="#e5e5e5" customStyle="font-size:32rpx;color: #999;width: 124rpx;margin-right: 10rpx;" :hairline="false">¥</up-button>
|
||||
</template>
|
||||
|
||||
@@ -215,7 +215,7 @@
|
||||
getList()
|
||||
}
|
||||
let repaymentOpen = (item) => {
|
||||
if ( item.repaymentMethod == 'total' ) {
|
||||
if ( pageData.repaymentMethod == 'total' ) {
|
||||
return;
|
||||
}
|
||||
repayment.value.open({creditBuyerId:pageData.query.creditBuyerId,order:item});
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<view class="content_list" v-if="pageData.list.length > 0">
|
||||
<view class="list_cell" v-for="(item,index) in pageData.list" :key="item.id">
|
||||
<view><text class="paymentMethod">{{item.paymentMethod}}</text><text class="repaymentAmount">¥{{item.repaymentAmount}}</text></view>
|
||||
<view><text class="remark">{{item.remark||'-'}}</text><text class="createTime">{{item.createTime}}</text></view>
|
||||
<view style="align-items: flex-start;"><text class="remark">{{item.remark||'-'}}</text><text class="createTime" style="flex-shrink: 0;">{{item.createTime}}</text></view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else style="display: flex;flex-direction: column;align-items: center;justify-content: center;margin-top: 300rpx;">
|
||||
|
||||
Reference in New Issue
Block a user