| 1234567891011121314151617181920 |
- // component/comment/comment.js
- import util from "../../utils/util"
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- info:Object,
- },
- /**
- * 组件的方法列表
- */
- methods: {
- previewImages(e){
- util.previewImage(this.data.info.images, e.currentTarget.dataset.index)
- },
- }
- })
|