forked from mfay/IOReportMgt
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
518 B
25 lines
518 B
interface colorMap {
|
|
[key: string]: string;
|
|
}
|
|
let colors:colorMap = {'SCHOOL_PASS':'#DAFFA5','SUBMIT':'#7CE4ED','DEPT_PASS':'#7CE4ED','DENY':'#E9F0E0'}
|
|
Component({
|
|
// reportType: "入校报备",
|
|
// reportDateTime: "2022-10-4 18:18:30",
|
|
// reviewer: "张三",
|
|
properties: {
|
|
reportStatus: String,
|
|
reportType: String,
|
|
reportDateTime: String,
|
|
reviewer: String,
|
|
},
|
|
|
|
data: {
|
|
colors,
|
|
},
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
|
|
}
|
|
})
|
|
|