|
@@ -16,7 +16,9 @@ Page({
|
|
|
courseIndex: 0,
|
|
|
flag: true,
|
|
|
switchs: true,
|
|
|
- errorData: {}
|
|
|
+ errorData: {},
|
|
|
+ errImgW: '',
|
|
|
+ errImgH: '',
|
|
|
},
|
|
|
|
|
|
particulars: function (e) {
|
|
@@ -37,6 +39,20 @@ Page({
|
|
|
}
|
|
|
},
|
|
|
|
|
|
+ //获取image宽高
|
|
|
+ imageLoad: function (e) {
|
|
|
+ let height = e.detail.height;
|
|
|
+ let width = e.detail.width;
|
|
|
+ //设置图片宽度
|
|
|
+ //const imgW = width * .9;
|
|
|
+ //设置图片高度
|
|
|
+ //const imgH = imgW * (height / width);
|
|
|
+ this.setData({
|
|
|
+ errImgW: width + 'rpx',
|
|
|
+ errImgH: height + 'rpx'
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
/*tab切换*/
|
|
|
tab (e) {
|
|
|
const index = e.currentTarget.dataset.index;
|