挂账增加
This commit is contained in:
275
pageCreditBuyer/components/my-repayment.vue
Normal file
275
pageCreditBuyer/components/my-repayment.vue
Normal file
@@ -0,0 +1,275 @@
|
||||
<template>
|
||||
<up-popup :show="show" @close="close" round="20" mode="center" customStyle="width: 80%;">
|
||||
<view class="head">
|
||||
<text></text>
|
||||
<text class="title">{{pageData.formData.orderId?'挂账付款':'挂账还款'}}</text>
|
||||
<text></text>
|
||||
</view>
|
||||
<view class="content">
|
||||
<up-form
|
||||
labelPosition="top"
|
||||
labelWidth="120"
|
||||
required
|
||||
:model="pageData.formData"
|
||||
:rules="pageData.rules"
|
||||
ref="uFormRef"
|
||||
:labelStyle="{fontSize: '28rpx',color: '#333',fontWeight: 'bold'}"
|
||||
>
|
||||
<view class="card top" v-if="pageData.formData.repaymentMethod == 'total'">
|
||||
<view>
|
||||
<text class="label">挂账人</text>
|
||||
<text class="value">{{pageData.debtor.debtor}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text class="label">挂账金额</text>
|
||||
<text class="value">{{pageData.debtor.owedAmount || 0}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text class="label">账户余额</text>
|
||||
<text class="value">{{pageData.debtor.accountBalance || 0}}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="card">
|
||||
<up-form-item label="还款方式" labelPosition="left" v-if="pageData.formData.repaymentMethod == 'total'">
|
||||
<view style="width: 100%;display: flex;justify-content: flex-end;">
|
||||
<up-radio-group v-model="pageData.formData.repaymentMethod" placement="row" style="justify-content: flex-end;">
|
||||
<view v-for="(item, index) in pageData.repaymentMethodList" :key="index">
|
||||
<up-radio
|
||||
v-if="pageData.formData.repaymentMethod == item.value"
|
||||
:label="item.label"
|
||||
:name="item.value"
|
||||
></up-radio>
|
||||
</view>
|
||||
</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;">
|
||||
<template #prefix>
|
||||
<up-button color="#e5e5e5" customStyle="font-size:32rpx;color: #999;width: 124rpx;margin-right: 10rpx;" :hairline="false">¥</up-button>
|
||||
</template>
|
||||
</up-input>
|
||||
</up-form-item>
|
||||
<up-form-item label="支付方式" prop="paymentMethod">
|
||||
<up-input v-model="pageData.formData.paymentMethod" placeholder="请输入支付方式"></up-input>
|
||||
</up-form-item>
|
||||
<up-form-item label="备注" prop="remark">
|
||||
<up-input v-model="pageData.formData.remark" placeholder="请输入备注"></up-input>
|
||||
</up-form-item>
|
||||
</view>
|
||||
|
||||
</up-form>
|
||||
<view class="bottomPop">
|
||||
<view class="save" @click="affirm">保存</view>
|
||||
<view class="cancel" @click="close">取消</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</up-popup>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { reactive,ref } from 'vue';
|
||||
import { debounce } from '@/commons/utils/debounce.js'
|
||||
import { creditRePayment, creditPayment } from '@/http/yskApi/credit.js'
|
||||
const props=defineProps({
|
||||
show:{
|
||||
type:Boolean,
|
||||
default:false
|
||||
}
|
||||
})
|
||||
const emits=defineEmits(['close', "affirm"])
|
||||
const pageData = reactive({
|
||||
id: null,
|
||||
title: "",
|
||||
debtor: {
|
||||
debtor: '',
|
||||
formData: 0,
|
||||
accountBalance: 0,
|
||||
},
|
||||
repaymentMethodList: [
|
||||
{ label: '按总金额还款', value: 'total' },
|
||||
{ label: '按订单还款', value: 'order' }
|
||||
],
|
||||
formData: {
|
||||
id: null,
|
||||
creditBuyerId: null,
|
||||
orderId: null,
|
||||
repaymentMethod: '',
|
||||
repaymentAmount: '',
|
||||
paymentMethod: '',
|
||||
remark: ''
|
||||
},
|
||||
rules: {
|
||||
'repaymentAmount': {
|
||||
type: 'string',
|
||||
required: true,
|
||||
message: '请输入金额',
|
||||
trigger: ['blur'],
|
||||
},
|
||||
'paymentMethod': {
|
||||
type: 'string',
|
||||
required: true,
|
||||
message: '请输入支付方式',
|
||||
trigger: ['blur'],
|
||||
},
|
||||
|
||||
},
|
||||
})
|
||||
// 表单引用
|
||||
const uFormRef = ref(null);
|
||||
let show=ref(false)
|
||||
|
||||
function open(options){
|
||||
show.value = true;
|
||||
console.log(options)
|
||||
if (options.creditBuyerId) {
|
||||
pageData.formData.creditBuyerId = options.creditBuyerId;
|
||||
pageData.formData.orderId = options.order.orderId;
|
||||
pageData.formData.repaymentMethod = options.repaymentMethod;
|
||||
|
||||
} else {
|
||||
pageData.formData.id = options.id;
|
||||
pageData.formData.repaymentMethod = options.repaymentMethod;
|
||||
pageData.debtor.debtor = options.debtor;
|
||||
pageData.debtor.owedAmount = options.owedAmount;
|
||||
pageData.debtor.accountBalance = options.accountBalance;
|
||||
}
|
||||
pageData.formData.repaymentAmount = "";
|
||||
pageData.formData.paymentMethod = "";
|
||||
pageData.formData.remark = "";
|
||||
}
|
||||
|
||||
function close(){
|
||||
show.value = false;
|
||||
emits('close')
|
||||
}
|
||||
/**
|
||||
* 确认
|
||||
*/
|
||||
let affirm = debounce(() => {
|
||||
uFormRef.value.validate().then(valid => {
|
||||
if (valid) {
|
||||
console.log(pageData.formData)
|
||||
let params = {
|
||||
...pageData.formData
|
||||
}
|
||||
if ( !pageData.formData.orderId ) {
|
||||
creditRePayment(params).then((res) => {
|
||||
console.log(res.repaymentCount > 0)
|
||||
if (res.repaymentCount > 0) {
|
||||
uni.$u.toast('还款成功')
|
||||
emits('affirm')
|
||||
close();
|
||||
|
||||
} else {
|
||||
uni.$u.toast(res.repaymentMsg)
|
||||
setTimeout(()=>{
|
||||
emits('affirm')
|
||||
close();
|
||||
},2000)
|
||||
}
|
||||
|
||||
})
|
||||
} else {
|
||||
creditPayment(params).then((res) => {
|
||||
if (!res.repaymentMsg) {
|
||||
uni.$u.toast('付款成功')
|
||||
emits('affirm')
|
||||
close();
|
||||
|
||||
} else {
|
||||
uni.$u.toast(res.repaymentMsg)
|
||||
setTimeout(()=>{
|
||||
emits('affirm')
|
||||
close();
|
||||
},2000)
|
||||
}
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}).catch(() => {
|
||||
// 处理验证错误
|
||||
});
|
||||
|
||||
},1000)
|
||||
defineExpose({
|
||||
open,close,affirm
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.head{
|
||||
display: flex;
|
||||
padding: 32rpx 28rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.title{
|
||||
font-weight: bold;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
.content{
|
||||
padding: 0 32rpx 32rpx 32rpx;
|
||||
.card{
|
||||
background-color: #fff;
|
||||
margin-bottom: 42rpx;
|
||||
}
|
||||
.card.top{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
background: #F8F8FA;
|
||||
border-radius: 8rpx 8rpx 8rpx 8rpx;
|
||||
margin-top: 20rpx;
|
||||
margin-bottom: 48rpx;
|
||||
padding: 16rpx 0 ;
|
||||
>view{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
.label{
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
margin-bottom: 8rpx;
|
||||
}
|
||||
.value{
|
||||
font-weight: bold;
|
||||
font-size: 28rpx;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
.bottomPop{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
>view {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
font-size: 32rpx;
|
||||
border-radius: 56rpx 56rpx 56rpx 56rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.save{
|
||||
color: #fff;
|
||||
background: #318AFE;
|
||||
}
|
||||
.cancel{
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user