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.

21 lines
489 B

4 years ago
"use strict";
var colors = { '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: colors,
},
/**
* 组件的方法列表
*/
methods: {}
});