You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
466 B
26 lines
466 B
// pages/component/commonImage/index.js
|
|
Component({
|
|
properties: {
|
|
//默认图片
|
|
defaultImage: {
|
|
type:String,
|
|
value:"/images/place1.png"
|
|
},
|
|
//原始图片
|
|
src: String,
|
|
width: String,
|
|
height: String,
|
|
//图片剪裁mode,同Image组件的mode
|
|
mode: String
|
|
},
|
|
data: {
|
|
finishLoadFlag: false
|
|
},
|
|
methods: {
|
|
finishLoad: function (e) {
|
|
this.setData({
|
|
finishLoadFlag: true
|
|
})
|
|
}
|
|
}
|
|
})
|