更新小程序仓库

This commit is contained in:
zoujiandong
2023-11-17 09:51:35 +08:00
parent 13f54a26df
commit 4506940c2d
936 changed files with 60022 additions and 0 deletions
+76
View File
@@ -0,0 +1,76 @@
// pages/imgPreview/imgpreview.js
Page({
/**
* 页面的初始数据
*/
data: {
url:''
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
if(options.url){
this.setData({
url:decodeURIComponent(options.url)
});
}
if(options.name){
wx.setNavigationBarTitle({
title: decodeURIComponent(options.name),
})
}
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
// onShareAppMessage() {
// }
})
+3
View File
@@ -0,0 +1,3 @@
{
"usingComponents": {}
}
+2
View File
@@ -0,0 +1,2 @@
<!--pages/imgPreview/imgpreview.wxml-->
<image src="{{url}}" mode="widthFix" class="dcimg" lazy-load/>
+4
View File
@@ -0,0 +1,4 @@
/* pages/imgPreview/imgpreview.wxss */
.dcimg{
width:750rpx;
}