|
- // components/TaskInfo/index.js
- import {statusList} from '../../utils/data.js'
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- data: {
- type: Object,
- value: {}
- },
- type: {
- type: String,
- value: ''
- }
- },
-
- /**
- * 组件的初始数据
- */
- data: {
- statusList
- },
-
- /**
- * 组件的方法列表
- */
- methods: {
-
- }
- })
|