有效无效项目页面优化

This commit is contained in:
zhuangdashia 2025-10-21 19:02:33 +08:00
parent 932c8f9baf
commit 1169873a6c
3 changed files with 25 additions and 23 deletions

View File

@ -115,17 +115,17 @@ const {
ellipsis: true,
resizable: true
},
{
key: 'invalidBusiness',
title: '无效的中间业务计价项目',
align: 'center',
minWidth: 120,
ellipsis: true,
resizable: true
},
// {
// key: 'invalidBusiness',
// title: '',
// align: 'center',
// minWidth: 120,
// ellipsis: true,
// resizable: true
// },
{
key: 'validBusiness',
title: '有效的中间业务计价项目',
title: '中间业务计价项目',
align: 'center',
minWidth: 120,
ellipsis: true,

View File

@ -66,11 +66,11 @@ public class MarketingValidInvalidImportVo implements Serializable {
@ExcelProperty(value = "客户身份证号")
private String customerId;
/**
* 无效的中间业务计价项目
*/
@ExcelProperty(value = "无效的中间业务计价项目")
private String invalidBusiness;
// /**
// * 无效的中间业务计价项目
// */
// @ExcelProperty(value = "无效的中间业务计价项目")
// private String invalidBusiness;
/**
* 有效的中间业务计价项目
@ -79,9 +79,10 @@ public class MarketingValidInvalidImportVo implements Serializable {
private String validBusiness;
/**
* 有效无效标识
* 有效无效标识 1有效 9 无效
*/
@ExcelProperty(value = "有效无效标识")
@ExcelProperty(value = "有效无效标识", converter = ExcelDictConvert.class)
@ExcelDictFormat(dictType = "report_valid_invalid")
private String checkFlag;
/**

View File

@ -64,22 +64,23 @@ public class MarketingValidInvalidVo implements Serializable {
@ExcelProperty(value = "客户身份证号")
private String customerId;
/**
* 无效的中间业务计价项目
*/
@ExcelProperty(value = "无效的中间业务计价项目")
private String invalidBusiness;
// /**
// * 无效的中间业务计价项目
// */
// @ExcelProperty(value = "无效的中间业务计价项目")
// private String invalidBusiness;
/**
* 有效的中间业务计价项目
*/
@ExcelProperty(value = "有效的中间业务计价项目")
@ExcelProperty(value = "中间业务计价项目")
private String validBusiness;
/**
* 有效无效标识
*/
@ExcelProperty(value = "有效无效标识")
@ExcelProperty(value = "有效无效标识", converter = ExcelDictConvert.class)
@ExcelDictFormat(dictType = "report_valid_invalid")
private String checkFlag;
/**