Files
xingque/components/pindao-modal/pindao-modal.js
2026-07-09 00:17:03 +08:00

16 lines
311 B
JavaScript

Component({
properties: {
visible: { type: Boolean, value: false },
title: { type: String, value: '频道' },
channelNo: { type: String, value: '' },
images: { type: Array, value: [] },
},
methods: {
preventMove() {},
onClose() {
this.triggerEvent('close');
},
},
});