1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * @Author: gaorf30153 gaorf30153@hundsun.com
- * @Date: 2024-06-20 09:16:18
- * @LastEditors: gaorf30153 gaorf30153@hundsun.com
- * @LastEditTime: 2024-06-23 17:08:05
- * @FilePath: \wxminipro\plugin\components\autoImage\autoImage.js
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- Component({
- properties: {
- shape: {
- type: String,
- value: "square",
- },
- mode: {
- type: String,
- value: "aspectFit",
- },
- src: {
- type: String,
- value: "",
- },
- style: {
- type: String,
- value: "width: 100%;height: 400rpx",
- },
- lazyLoad: {
- type: Boolean,
- value: false,
- },
- },
- data: {},
- methods: {
- clickImage(e) {
- this.triggerEvent("click")
- },
- },
- })
|