8/13, 缴费分析-缴费方式修改

This commit is contained in:
Zy
2026-08-13 16:24:11 +08:00
parent 03e2fa531a
commit de2b0fec48
4 changed files with 45 additions and 9 deletions

View File

@@ -74,8 +74,18 @@ export interface PayMentMethod {
'wechatPercent': string;
'alipayAmount': string;
'alipayPercent': string;
'offlineAmount': string;
'offlinePercent': string;
'yidangAmount': string;
'yidangPercent': string;
'cashAmount': string;
'cashPercent': string;
'unionPayAmount': string;
'unionPayPercent': string;
'transferAmount': string;
'transferPercent': string;
'depositOffsetAmount': string;
'depositOffsetAmountPercent': string;
'propertyOffsetAmount': string;
'propertyOffsetAmountPercent': string;
}
// 缴费方式
export const payment_methodApi = (datetime?: string): AxiosPromise<PayMentMethod> => {

View File

@@ -85,7 +85,14 @@
<div class="w-full h-full flex mt-2">
<div class="title">审批意见</div>
<div class="preivewBodybox">
<el-input v-model="reviewInfo.propertyReviewFeedback" placeholder="请输入" type="textarea" :rows="5"></el-input>
<el-input
maxlength="200"
show-word-limit
v-model.trim="reviewInfo.propertyReviewFeedback"
placeholder="请输入"
type="textarea"
:rows="5"
></el-input>
<div class="actions">
<el-button type="primary" @click="updatePass('1')">审核通过</el-button>
<el-button type="danger" @click="updatePass('2')">审核不通过</el-button>

View File

@@ -183,7 +183,12 @@ const options2 = shallowRef<EChartsOption>({
data: [
{ value: 0, name: '支付宝', itemStyle: { color: '#0a74fe' } },
{ value: 0, name: '微信', itemStyle: { color: '#f74043' } },
{ value: 0, name: '线下', itemStyle: { color: '#fcd152' } }
{ value: 0, name: '宜当付', itemStyle: { color: '#fcd152' } },
{ value: 0, name: '现金', itemStyle: { color: '#fcd152' } },
{ value: 0, name: '银联', itemStyle: { color: '#fcd152' } },
{ value: 0, name: '转账', itemStyle: { color: '#fcd152' } },
{ value: 0, name: '押金抵顶', itemStyle: { color: '#fcd152' } },
{ value: 0, name: '房产抵顶', itemStyle: { color: '#fcd152' } }
]
}
]
@@ -214,7 +219,12 @@ function updatePayMethod(dataFrom: PayMentMethod): EChartsOption {
data: [
{ value: Number(dataFrom.alipayAmount) ?? 0, name: '支付宝', itemStyle: { color: '#0a74fe' } },
{ value: Number(dataFrom.wechatAmount) ?? 0, name: '微信', itemStyle: { color: '#f74043' } },
{ value: Number(dataFrom.offlineAmount) ?? 0, name: '线下', itemStyle: { color: '#fcd152' } }
{ value: Number(dataFrom.yidangAmount) ?? 0, name: '宜当付', itemStyle: { color: '#fcd152' } },
{ value: Number(dataFrom.cashAmount) ?? 0, name: '现金', itemStyle: { color: '#4b5cc4' } },
{ value: Number(dataFrom.unionPayAmount) ?? 0, name: '银联', itemStyle: { color: '#8d4bbb' } },
{ value: Number(dataFrom.transferAmount) ?? 0, name: '转账', itemStyle: { color: '#424c50' } },
{ value: Number(dataFrom.depositOffsetAmount) ?? 0, name: '押金抵顶', itemStyle: { color: '#00bc12' } },
{ value: Number(dataFrom.propertyOffsetAmount) ?? 0, name: '房产抵顶', itemStyle: { color: '#ff7500' } }
]
}
]
@@ -504,8 +514,17 @@ const payMethodFrom = ref({
'wechatPercent': '0',
'alipayAmount': '0',
'alipayPercent': '0',
'offlineAmount': '0',
'offlinePercent': '0'
'yidangAmount': '0',
'yidangPercent': '0',
'cashAmount': '0',
'cashPercent': '0',
'unionPayPercent': '0',
'transferAmount': '0',
'transferPercent': '0',
'depositOffsetAmount': '0',
'depositOffsetAmountPercent': '0',
'propertyOffsetAmount': '0',
'propertyOffsetAmountPercent': '0'
});
function getList() {