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.
151 lines
2.8 KiB
151 lines
2.8 KiB
let common = getApp().globalData.commonFun; |
|
let util = getApp().globalData.utilFun; |
|
Page({ |
|
/** |
|
* 页面的初始数据 |
|
*/ |
|
|
|
data: { |
|
imgarr:[] , |
|
arr:[], |
|
imgURL:'', |
|
|
|
text: '', |
|
text_width:'',//文字宽度 |
|
orientation: 'left',//滚动方向 |
|
marqueePace: .5,//滚动速度 |
|
marqueeDistance: 0,//初始滚动距离 |
|
size: 14, |
|
adUrl:'../../img/fanbo1.png', |
|
}, |
|
gps () { |
|
wx.navigateTo({ |
|
url: '../GPS/GPS', |
|
}) |
|
}, |
|
stay() { |
|
wx.navigateTo({ |
|
url: '../stay/stay', |
|
}) |
|
}, |
|
// 跳转列表 |
|
loan(){ |
|
wx.navigateTo({ |
|
url: '../loanList/loanList', |
|
}) |
|
}, |
|
/** |
|
* 生命周期函数--监听页面加载 |
|
*/ |
|
onLoad: function (options) { |
|
wx.showLoading({ |
|
title: '加载中...', |
|
mask: true |
|
}) |
|
this.setData({ |
|
imgURL: wx.getStorageSync("serverurl") |
|
}) |
|
this.getData() |
|
this.getBanner() |
|
this.getNotice() |
|
}, |
|
// 详情 |
|
details(e) { |
|
let id = e.currentTarget.dataset.id |
|
wx.navigateTo({ |
|
url: `/pages/loanDetails/loanDetails?id=${id}`, |
|
}) |
|
} , |
|
getData () { |
|
let url = 'api/index-product' |
|
util.httpRequest(url).then((res) => { |
|
if (res.code == '200') { |
|
res.data.map(item =>{ |
|
item.tag = item.tag.split(",") |
|
}) |
|
this.setData({ |
|
arr: res.data |
|
}) |
|
} |
|
}) |
|
}, |
|
// 跑马灯 |
|
getNotice () { |
|
let url = "api/get-notice" |
|
util.httpRequest(url).then((res) => { |
|
if (res.code == '200') { |
|
console.log(res.data.notice.length) |
|
this.setData({ |
|
text: res.data.notice, |
|
text_width: res.data.notice.length, |
|
}) |
|
} |
|
}) |
|
}, |
|
// 轮播图 |
|
getBanner() { |
|
let url = 'api/banner' |
|
util.httpRequest(url).then((res) => { |
|
wx.hideLoading() |
|
if (res.code == '200') { |
|
this.setData({ |
|
imgarr:res.data |
|
}) |
|
} |
|
}) |
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面初次渲染完成 |
|
*/ |
|
onReady: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面显示 |
|
*/ |
|
onShow: function () { |
|
// 页面显示 |
|
var that = this; |
|
var length = that.data.text.length * that.data.size;//文字长度 |
|
var windowWidth = wx.getSystemInfoSync().windowWidth;// 屏幕宽度 |
|
that.setData({ |
|
length: length, |
|
windowWidth: windowWidth, |
|
}); |
|
}, |
|
/** |
|
* 生命周期函数--监听页面隐藏 |
|
*/ |
|
onHide: function () { |
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面卸载 |
|
*/ |
|
onUnload: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 页面相关事件处理函数--监听用户下拉动作 |
|
*/ |
|
onPullDownRefresh: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 页面上拉触底事件的处理函数 |
|
*/ |
|
onReachBottom: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 用户点击右上角分享 |
|
*/ |
|
onShareAppMessage: function () { |
|
|
|
} |
|
}) |