任务明细页面

This commit is contained in:
limqhz
2022-11-24 17:07:38 +08:00
parent 0a8e99c94c
commit ec41ce736d
106 changed files with 4892 additions and 48 deletions

51
components/cell/props.js Normal file
View File

@@ -0,0 +1,51 @@
const props = {
align: {
type: String,
value: 'middle',
},
arrow: {
type: Boolean,
value: false,
},
bordered: {
type: Boolean,
value: true,
},
description: {
type: String,
},
externalClasses: {
type: Array,
},
hover: {
type: Boolean,
},
image: {
type: String,
},
jumpType: {
type: String,
value: 'navigateTo',
},
leftIcon: {
type: String,
},
note: {
type: String,
},
required: {
type: Boolean,
value: false,
},
rightIcon: {
type: String,
},
title: {
type: String,
},
url: {
type: String,
value: '',
},
};
export default props;