增加财务状态页面 客户管理财务状态优化
This commit is contained in:
@@ -149,14 +149,18 @@ export default {
|
||||
order: {
|
||||
type: Object,
|
||||
default: undefined
|
||||
},
|
||||
customerId: {
|
||||
type: [Number, String],
|
||||
default: undefined
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
orderId() {
|
||||
return this.order ? this.order.orderId : undefined;
|
||||
},
|
||||
customerId() {
|
||||
return this.order ? this.order.customerId : undefined;
|
||||
currentCustomerId() {
|
||||
return this.customerId || (this.order ? this.order.customerId : undefined);
|
||||
},
|
||||
receivedAmount() {
|
||||
return this.receivableList.reduce((total, item) => total + parseFloat(item.amount), 0);
|
||||
@@ -174,6 +178,15 @@ export default {
|
||||
}
|
||||
},
|
||||
immediate: true,
|
||||
},
|
||||
currentCustomerId: {
|
||||
handler(newVal) {
|
||||
if (newVal) {
|
||||
this.queryParams.customerId = newVal;
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
immediate: true,
|
||||
}
|
||||
},
|
||||
data() {
|
||||
@@ -344,7 +357,7 @@ export default {
|
||||
this.receiveForm = {
|
||||
receivableId: row.receivableId,
|
||||
amount: row.balanceAmount,
|
||||
balanceAmount: row.balanceAmount
|
||||
balanceAmount: row.balanceAmount
|
||||
};
|
||||
this.receiveOpen = true;
|
||||
},
|
||||
|
||||
400
klp-ui/src/views/crm/contract/fin_sta/index.vue
Normal file
400
klp-ui/src/views/crm/contract/fin_sta/index.vue
Normal file
@@ -0,0 +1,400 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<!-- 筛选区域 -->
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="80px" v-show="showSearch">
|
||||
<el-form-item label="客户" prop="customerId">
|
||||
<CustomerSelect v-model="queryParams.customerId" bindField="customerId" @change="handleCustomerChange"
|
||||
:style="{ width: '240px' }" />
|
||||
</el-form-item>
|
||||
<el-form-item label="合同编号" prop="contractCode">
|
||||
<el-select v-model="queryParams.contractCode" placeholder="请选择合同编号" filterable clearable style="width: 240px;">
|
||||
<el-option v-for="item in contractOptions" :key="item.value" :label="item.label" :value="item.value" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<!-- 财务状态概览 -->
|
||||
<el-descriptions :column="3" title="财务状态" border>
|
||||
<el-descriptions-item label="订单总金额">{{ totalAmount }}万元</el-descriptions-item>
|
||||
<el-descriptions-item label="已收款金额">{{ receivedAmount }}万元</el-descriptions-item>
|
||||
<el-descriptions-item label="未收款金额">{{ unreceivedAmount }}万元</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
|
||||
<!-- 收款明细标题 -->
|
||||
<el-descriptions title="收款明细"></el-descriptions>
|
||||
|
||||
<!-- 操作按钮 -->
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate">修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete">删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport">导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-if="searchable" :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<!-- 收款明细表格 -->
|
||||
<KLPTable v-loading="loading" :data="receivableList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="客户" align="center" prop="customerName" />
|
||||
<el-table-column label="合同编号" align="center" prop="contractCode" />
|
||||
<el-table-column label="收款日期" align="center" prop="dueDate" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.dueDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="收款金额" align="center" prop="amount" />
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)">修改</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</KLPTable>
|
||||
|
||||
<!-- 分页 -->
|
||||
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize" @pagination="getList" />
|
||||
|
||||
<!-- 添加或修改应收款对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="客户" prop="customerId">
|
||||
<CustomerSelect v-model="form.customerId" bindField="customerId" @change="handleFormCustomerChange"
|
||||
:style="{ width: '100%' }" />
|
||||
</el-form-item>
|
||||
<el-form-item label="合同编号" prop="contractCode">
|
||||
<el-select v-model="form.contractCode" placeholder="请选择合同编号" filterable clearable style="width: 100%;">
|
||||
<el-option v-for="item in formContractOptions" :key="item.value" :label="item.label" :value="item.value" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="收款日期" prop="dueDate">
|
||||
<el-date-picker clearable v-model="form.dueDate" type="datetime"
|
||||
value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择收款日期">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="收款金额" prop="amount">
|
||||
<el-input-number :controls=false v-model="form.amount" :step="1.00"
|
||||
:precision="2" placeholder="请输入应收金额" :min="0" style="width: 100%;"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listReceivable, getReceivable, delReceivable, addReceivable, updateReceivable } from "@/api/finance/receivable";
|
||||
import { listOrder } from "@/api/crm/order";
|
||||
import CustomerSelect from "@/components/KLPService/CustomerSelect/index.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
CustomerSelect
|
||||
},
|
||||
name: "FinanceStatus",
|
||||
data() {
|
||||
return {
|
||||
buttonLoading: false,
|
||||
loading: true,
|
||||
ids: [],
|
||||
single: true,
|
||||
multiple: true,
|
||||
showSearch: true,
|
||||
searchable: true,
|
||||
total: 0,
|
||||
receivableList: [],
|
||||
title: "",
|
||||
open: false,
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 20,
|
||||
customerId: undefined,
|
||||
contractCode: undefined,
|
||||
orderId: undefined,
|
||||
orderCode: undefined,
|
||||
dueDate: undefined,
|
||||
amount: undefined,
|
||||
paidAmount: undefined,
|
||||
balanceAmount: undefined,
|
||||
status: undefined,
|
||||
},
|
||||
contractOptions: [],
|
||||
formContractOptions: [],
|
||||
form: {},
|
||||
rules: {}
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
totalAmount() {
|
||||
return this.receivableList.reduce((total, item) => total + parseFloat(item.amount || 0), 0);
|
||||
},
|
||||
receivedAmount() {
|
||||
return this.receivableList.reduce((total, item) => total + parseFloat(item.paidAmount || 0), 0);
|
||||
},
|
||||
unreceivedAmount() {
|
||||
return this.totalAmount - this.receivedAmount;
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listReceivable(this.queryParams).then(response => {
|
||||
this.receivableList = response.rows || [];
|
||||
this.total = response.total || 0;
|
||||
}).catch(error => {
|
||||
console.error('数据加载失败:', error);
|
||||
this.$message.error('数据加载失败,请稍后重试');
|
||||
this.receivableList = [];
|
||||
this.total = 0;
|
||||
}).finally(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
handleCustomerChange(customer) {
|
||||
// 清空合同选择
|
||||
this.queryParams.contractCode = undefined;
|
||||
// 根据客户ID获取合同列表
|
||||
if (customer && customer.customerId) {
|
||||
this.loadContracts(customer.customerId);
|
||||
} else {
|
||||
this.contractOptions = [];
|
||||
}
|
||||
},
|
||||
loadContracts(customerId) {
|
||||
listOrder({ customerId, pageNum: 1, pageSize: 100 }).then(res => {
|
||||
this.contractOptions = (res.rows || []).map(item => ({
|
||||
value: item.contractCode,
|
||||
label: item.contractCode
|
||||
}));
|
||||
});
|
||||
},
|
||||
handleFormCustomerChange(customer) {
|
||||
// 清空合同选择
|
||||
this.form.contractCode = undefined;
|
||||
// 根据客户ID获取合同列表
|
||||
if (customer && customer.customerId) {
|
||||
listOrder({ customerId: customer.customerId, pageNum: 1, pageSize: 100 }).then(res => {
|
||||
this.formContractOptions = (res.rows || []).map(item => ({
|
||||
value: item.contractCode,
|
||||
label: item.contractCode
|
||||
}));
|
||||
});
|
||||
} else {
|
||||
this.formContractOptions = [];
|
||||
}
|
||||
},
|
||||
reset() {
|
||||
this.form = {
|
||||
receivableId: undefined,
|
||||
customerId: undefined,
|
||||
orderId: undefined,
|
||||
dueDate: undefined,
|
||||
amount: undefined,
|
||||
paidAmount: 0,
|
||||
balanceAmount: undefined,
|
||||
status: undefined,
|
||||
delFlag: undefined,
|
||||
remark: undefined,
|
||||
createTime: undefined,
|
||||
createBy: undefined,
|
||||
updateTime: undefined,
|
||||
updateBy: undefined
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.receivableId);
|
||||
this.single = selection.length !== 1;
|
||||
this.multiple = !selection.length;
|
||||
},
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加应收款管理";
|
||||
},
|
||||
handleUpdate(row) {
|
||||
this.loading = true;
|
||||
this.reset();
|
||||
const receivableId = row.receivableId || this.ids;
|
||||
getReceivable(receivableId).then(response => {
|
||||
this.loading = false;
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改应收款管理";
|
||||
}).catch(error => {
|
||||
this.loading = false;
|
||||
this.$message.error('获取数据失败');
|
||||
});
|
||||
},
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
this.buttonLoading = true;
|
||||
if (this.form.receivableId != null) {
|
||||
const { balanceAmount, ...payload } = this.form;
|
||||
updateReceivable(payload).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}).finally(() => {
|
||||
this.buttonLoading = false;
|
||||
});
|
||||
} else {
|
||||
addReceivable(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
}).finally(() => {
|
||||
this.buttonLoading = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
handleDelete(row) {
|
||||
const receivableIds = row.receivableId || this.ids;
|
||||
this.$modal.confirm('是否确认删除应收款管理编号为"' + receivableIds + '"的数据项?').then(() => {
|
||||
this.loading = true;
|
||||
return delReceivable(receivableIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {
|
||||
}).finally(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
handleExport() {
|
||||
this.download('klp/receivable/export', {
|
||||
...this.queryParams
|
||||
}, `receivable_${new Date().getTime()}.xlsx`);
|
||||
},
|
||||
parseTime(time, pattern) {
|
||||
if (!time) return '';
|
||||
const d = new Date(time);
|
||||
const year = d.getFullYear();
|
||||
const month = (d.getMonth() + 1).toString().padStart(2, '0');
|
||||
const day = d.getDate().toString().padStart(2, '0');
|
||||
return pattern.replace('{y}', year).replace('{m}', month).replace('{d}', day);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.stats-card {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
flex: 1;
|
||||
background: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
color: #303133;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.stat-value.success {
|
||||
color: #67c23a;
|
||||
}
|
||||
|
||||
.stat-value.danger {
|
||||
color: #f56c6c;
|
||||
}
|
||||
|
||||
.stat-value.warning {
|
||||
color: #e6a23c;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 13px;
|
||||
color: #909399;
|
||||
}
|
||||
|
||||
.quick-filter {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
margin-bottom: 16px;
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
.quick-filter .el-button.active {
|
||||
color: #409eff;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.expiring-tag,
|
||||
.expired-tag {
|
||||
display: inline-block;
|
||||
margin-left: 4px;
|
||||
padding: 2px 6px;
|
||||
font-size: 10px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.expiring-tag {
|
||||
background: #fffbe6;
|
||||
color: #e6a23c;
|
||||
}
|
||||
|
||||
.expired-tag {
|
||||
background: #fff2f0;
|
||||
color: #f56c6c;
|
||||
}
|
||||
|
||||
.text-danger {
|
||||
color: #f56c6c !important;
|
||||
}
|
||||
|
||||
.text-warning {
|
||||
color: #e6a23c !important;
|
||||
}
|
||||
|
||||
.detail-content {
|
||||
padding: 8px;
|
||||
}
|
||||
</style>
|
||||
@@ -70,7 +70,23 @@
|
||||
</div>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="财务状态" name="third">
|
||||
<KLPTable v-loading="loading" :data="financeList">
|
||||
<!-- 操作按钮 -->
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleFinanceAdd">新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="financeSingle" @click="handleFinanceUpdate">修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="financeMultiple" @click="handleFinanceDelete">删除</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<!-- 表格 -->
|
||||
<KLPTable v-loading="loading" :data="financeList" @selection-change="handleFinanceSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="客户" align="center" prop="customerName" />
|
||||
<el-table-column label="合同编号" align="center" prop="contractCode" />
|
||||
<el-table-column label="收款日期" align="center" prop="dueDate" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.dueDate, '{y}-{m}-{d}') }}</span>
|
||||
@@ -78,6 +94,12 @@
|
||||
</el-table-column>
|
||||
<el-table-column label="收款金额" align="center" prop="amount" />
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleFinanceUpdate(scope.row)">修改</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleFinanceDelete(scope.row)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</KLPTable>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="订单异议" name="fourth">
|
||||
@@ -157,6 +179,34 @@
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 财务状态操作对话框 -->
|
||||
<el-dialog :title="financeTitle" :visible.sync="financeOpen" width="500px" append-to-body>
|
||||
<el-form ref="financeForm" :model="financeForm" label-width="80px">
|
||||
<el-form-item label="客户" prop="customerName">
|
||||
<el-input v-model="financeForm.customerName" disabled />
|
||||
</el-form-item>
|
||||
<el-form-item label="合同编号" prop="contractCode">
|
||||
<el-input v-model="financeForm.contractCode" placeholder="请输入合同编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="收款日期" prop="dueDate">
|
||||
<el-date-picker clearable v-model="financeForm.dueDate" type="datetime"
|
||||
value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择收款日期">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="收款金额" prop="amount">
|
||||
<el-input-number :controls=false v-model="financeForm.amount" :step="1.00"
|
||||
:precision="2" placeholder="请输入收款金额" :min="0" style="width: 100%;"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="financeForm.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="financeSubmitForm">确 定</el-button>
|
||||
<el-button @click="financeCancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -171,6 +221,7 @@ import CoilTable from '../components/CoilTable.vue'
|
||||
import DeliveryTable from '../components/DeliveryTable.vue'
|
||||
|
||||
import { listCustomer, addCustomer, updateCustomer, delCustomer, listCoilByCustomerId, listFinanceByCustomerId } from '@/api/crm/customer'
|
||||
import { getReceivable, delReceivable, addReceivable, updateReceivable } from '@/api/finance/receivable'
|
||||
|
||||
export default {
|
||||
name: 'CustomerPage',
|
||||
@@ -209,6 +260,13 @@ export default {
|
||||
buttonLoading: false,
|
||||
updateLoading: false,
|
||||
debounceTimer: null,
|
||||
// 财务状态相关
|
||||
financeIds: [],
|
||||
financeSingle: true,
|
||||
financeMultiple: true,
|
||||
financeOpen: false,
|
||||
financeTitle: "",
|
||||
financeForm: {},
|
||||
rules: {
|
||||
customerCode: [{ required: true, message: '请输入客户编码', trigger: 'blur' }],
|
||||
companyName: [{ required: true, message: '请输入公司名称', trigger: 'blur' }],
|
||||
@@ -380,6 +438,57 @@ export default {
|
||||
}).catch(() => {
|
||||
this.$message.info('已取消删除');
|
||||
});
|
||||
},
|
||||
|
||||
// 财务状态操作
|
||||
handleFinanceSelectionChange(selection) {
|
||||
this.financeIds = selection.map(item => item.receivableId);
|
||||
this.financeSingle = selection.length !== 1;
|
||||
this.financeMultiple = !selection.length;
|
||||
},
|
||||
handleFinanceAdd() {
|
||||
this.financeForm = {
|
||||
customerId: this.currentCustomerId,
|
||||
customerName: this.currentCustomer.companyName
|
||||
};
|
||||
this.financeTitle = "添加收款记录";
|
||||
this.financeOpen = true;
|
||||
},
|
||||
handleFinanceUpdate(row) {
|
||||
const receivableId = row.receivableId || this.financeIds;
|
||||
getReceivable(receivableId).then(response => {
|
||||
this.financeForm = response.data;
|
||||
this.financeTitle = "修改收款记录";
|
||||
this.financeOpen = true;
|
||||
});
|
||||
},
|
||||
handleFinanceDelete(row) {
|
||||
const receivableIds = row.receivableId || this.financeIds;
|
||||
this.$modal.confirm('是否确认删除收款记录?').then(() => {
|
||||
return delReceivable(receivableIds);
|
||||
}).then(() => {
|
||||
this.getFinanceList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
});
|
||||
},
|
||||
financeSubmitForm() {
|
||||
if (this.financeForm.receivableId != null) {
|
||||
updateReceivable(this.financeForm).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.financeOpen = false;
|
||||
this.getFinanceList();
|
||||
});
|
||||
} else {
|
||||
addReceivable(this.financeForm).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.financeOpen = false;
|
||||
this.getFinanceList();
|
||||
});
|
||||
}
|
||||
},
|
||||
financeCancel() {
|
||||
this.financeOpen = false;
|
||||
this.financeForm = {};
|
||||
}
|
||||
},
|
||||
}
|
||||
@@ -395,4 +504,4 @@ export default {
|
||||
.dialog-footer {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user