refactor(crm): 客户ID字段类型从字符串改为长整型
- 将CrmCustomer实体类中的customerId字段从String类型改为Long类型 - 将CrmCustomerBo业务对象中的customerId字段从String类型改为Long类型 - 将CrmCustomerVo视图对象中的customerId字段从String类型改为Long类型 - 在预订单页面为操作按钮添加orderType条件判断 - 修复代码缩进格式问题
This commit is contained in:
@@ -94,18 +94,21 @@
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
v-if="scope.row.orderType === 0"
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-check"
|
||||
@click.stop="handleApprove(scope.row)"
|
||||
>审批</el-button>
|
||||
<el-button
|
||||
v-if="scope.row.orderType === 0"
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click.stop="handleUpdate(scope.row)"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
v-if="scope.row.orderType === 0"
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@@ -269,7 +272,7 @@ export default {
|
||||
this.getList();
|
||||
}).finally(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
// 表单重置
|
||||
|
||||
Reference in New Issue
Block a user