123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- const app = getApp();
- Page({
- data: {
- StatusBar: app.globalData.StatusBar,
- CustomBar: app.globalData.CustomBar,
- mytask:[{
- img: "../../img/server/order.png",
- openpath: "/pages/IDCard/IDCard",
- text: "全部订单"
- },
- {
- img: "../../img/server/doing.png",
- openpath: "../../pages/bankQuery/bankQuery",
- text: "进行中"
- },
- {
- img: "../../img/server/account.png",
- openpath: "../../pages/bankQuery/bankQuery",
- text: "我的账单"
- },
- {
- img: "../../img/server/history.png",
- openpath: "../../pages/bankQuery/bankQuery",
- text: "我的足迹"
- }
- ],
- server:[{
- img: "../../img/server/credit.png",
- openpath: "/pages/IDCard/IDCard",
- text: "营业执照"
- },
- {
- img: "../../img/server/info.png",
- openpath: "../../pages/bankQuery/bankQuery",
- text: "完善信息"
- },
- {
- img: "../../img/server/identify.png",
- openpath: "../../pages/MobileHome/MobileHome",
- text: "实名认证"
- },
- {
- img: "../../img/server/band.png",
- openpath: "../../pages/IP/IP",
- text: "绑定银行"
- }],
- other:[
- {
- img: "../../img/server/like.png",
- openpath: "../../pages/bankQuery/bankQuery",
- text: "点赞助手"
- },
- {
- img: "../../img/server/help.png",
- openpath: "../../pages/bankQuery/bankQuery",
- text: "联系客服"
- },
- {
- img: "../../img/server/more.png",
- openpath: "../../pages/MobileHome/MobileHome",
- text: "其他更多"
- }
- ]
- },
- onLoad: function (options) {
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|