// commpents/appraise_data/index.js Component({ /** * 组件的属性列表 */ properties: { name: { type: String, value: '默认姓名', }, start: { type: Number, value: '5', }, content: { type: String, value: '默认评价内筒', }, date: { type: String, value: '2023-01-25 12:09', }, }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { } })