8 changed files with 299 additions and 208 deletions
@ -1,32 +1,46 @@ |
|||||
|
/* |
||||
|
* @Author: AaronWu 2463371514@qq.com |
||||
|
* @Date: 2025-04-16 14:22:07 |
||||
|
* @LastEditors: AaronWu 2463371514@qq.com |
||||
|
* @LastEditTime: 2026-01-14 10:57:35 |
||||
|
* @FilePath: /IssueSupportManage/src/views/client/issue/data.ts |
||||
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
|
*/ |
||||
export const stateTypeList: any = [ |
export const stateTypeList: any = [ |
||||
// Init(0,"待处理"),
|
|
||||
// Back(1,"退回"),
|
|
||||
// Develop(2,"开发中"),
|
|
||||
// Test(3,"测试中"),
|
|
||||
// End(4,"结束"),
|
|
||||
|
{ |
||||
|
label: '退回', |
||||
|
value: -1, |
||||
|
color: '#2db7f5', |
||||
|
}, |
||||
{ |
{ |
||||
label: '待处理', |
label: '待处理', |
||||
value: 0, |
value: 0, |
||||
color: '#f50', |
color: '#f50', |
||||
}, |
}, |
||||
{ |
{ |
||||
label: '退回', |
|
||||
|
label: '开发中', |
||||
value: 1, |
value: 1, |
||||
color: '#2db7f5', |
|
||||
|
color: '#87d068', |
||||
}, |
}, |
||||
{ |
{ |
||||
label: '开发中', |
|
||||
|
label: '测试中', |
||||
value: 2, |
value: 2, |
||||
color: '#87d068', |
|
||||
|
color: '#108ee9', |
||||
}, |
}, |
||||
|
// 待客户确认
|
||||
{ |
{ |
||||
label: '测试中', |
|
||||
|
label: '待客户确认', |
||||
value: 3, |
value: 3, |
||||
color: '#108ee9', |
|
||||
|
color: '#2db7f5', |
||||
}, |
}, |
||||
{ |
{ |
||||
label: '已解决', |
label: '已解决', |
||||
value: 4, |
value: 4, |
||||
color: '#f50', |
|
||||
|
color: '#87d068', |
||||
|
}, |
||||
|
{ |
||||
|
label: '关闭', |
||||
|
value: 5, |
||||
|
color: '#d9d9d9', |
||||
}, |
}, |
||||
]; |
]; |
||||
@ -1,43 +1,38 @@ |
|||||
export const stateTypeList: any = [ |
export const stateTypeList: any = [ |
||||
// Init(0,"待处理"),
|
|
||||
// Back(1,"退回"),
|
|
||||
// Develop(2,"开发中"),
|
|
||||
// Test(3,"测试中"),
|
|
||||
// End(4,"结束"),
|
|
||||
|
{ |
||||
|
label: '退回', |
||||
|
value: -1, |
||||
|
color: '#2db7f5', |
||||
|
}, |
||||
{ |
{ |
||||
label: '待处理', |
label: '待处理', |
||||
value: 0, |
value: 0, |
||||
color: '#f50', |
color: '#f50', |
||||
}, |
}, |
||||
{ |
|
||||
label: '退回', |
|
||||
value: 1, |
|
||||
color: '#2db7f5', |
|
||||
}, |
|
||||
{ |
{ |
||||
label: '开发中', |
label: '开发中', |
||||
value: 2, |
|
||||
|
value: 1, |
||||
color: '#87d068', |
color: '#87d068', |
||||
}, |
}, |
||||
{ |
{ |
||||
label: '测试中', |
label: '测试中', |
||||
value: 3, |
|
||||
|
value: 2, |
||||
color: '#108ee9', |
color: '#108ee9', |
||||
}, |
}, |
||||
// 待客户确认
|
// 待客户确认
|
||||
{ |
{ |
||||
label: '待客户确认', |
label: '待客户确认', |
||||
value: 4, |
|
||||
|
value: 3, |
||||
color: '#2db7f5', |
color: '#2db7f5', |
||||
}, |
}, |
||||
{ |
{ |
||||
label: '已解决', |
label: '已解决', |
||||
value: 5, |
|
||||
|
value: 4, |
||||
color: '#87d068', |
color: '#87d068', |
||||
}, |
}, |
||||
{ |
{ |
||||
label: '关闭', |
label: '关闭', |
||||
value: 6, |
|
||||
|
value: 5, |
||||
color: '#d9d9d9', |
color: '#d9d9d9', |
||||
}, |
}, |
||||
]; |
]; |
||||
|
|||||
Loading…
Reference in new issue