拓恒飞手平台小程序
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.

32 lines
473B

  1. // components/TaskInfo/index.js
  2. import {statusList} from '../../utils/data.js'
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. data: {
  9. type: Object,
  10. value: {}
  11. },
  12. type: {
  13. type: String,
  14. value: ''
  15. }
  16. },
  17. /**
  18. * 组件的初始数据
  19. */
  20. data: {
  21. statusList
  22. },
  23. /**
  24. * 组件的方法列表
  25. */
  26. methods: {
  27. }
  28. })