| 123456789101112131415161718192021222324252627282930 |
- // components/voyageCard/voyageCard.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- item: {
- type: Object
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- status: {
- 未开航: "not-started",
- 运输中: "transit",
- 卸货中: "transit",
- 卸货完成: "unload-finish"
- }
- },
- /**
- * 组件的方法列表
- */
- methods: {
- }
- })
|