···
const appointmentService = uniCloud.importObject('my_appointment_service'); //第一步导入云对象
methods: {
async getArrangeList(doctor, day, c, eleId) {
let _this = this
let list = await appointmentService.listArrange(doctor.doctor, day, c)
_this.$set(doctor.doctor, 'arranges', list)
if (eleId) {
let ele = this.$refs[eleId][0]
ele.init()
setTimeout(function() {
ele.manualExpended()
}, 100)
}
},
}
···
heiheiha (作者)
没有
2022-08-03 14:13
DCloud_uniCloud_WYQ
回复 heiheiha: 只调用这一个云函数也有问题是吗
2022-08-04 16:29