123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // components/zyh_card/zyh_card.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- // 预约时间-label
- labelTitle: {
- type: String,
- value: '预约时间'
- },
- // 预约时间-value
- valueTitle: {
- type: String,
- value: '****-**-** **:**-**:**'
- },
- // 姓名
- labelName: {
- type: String,
- value: '***'
- },
- // 手机号
- labelPhone: {
- type: String,
- value: '***********'
- },
- // 预约编号-label
- labelCode: {
- type: String,
- value: '预约编号:'
- },
- // 预约编号-value
- valueCode: {
- type: String,
- value: '**********'
- },
- // 照片-src
- labelPhoto: {
- type: String,
- value: '../../static/comment/avator_no.png'
- },
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- }
- })
|