123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- const app = require('../../utils/util.js');
- const tools = require('../../utils/tools.js');
- Page({
- data: {
- // 轮播
- backgrounds: [{
- "pic": "/images/banner1.png",
- // link:'../aboutme/index',
- },
- {
- "pic": "/images/banner2.png",
- // link:'../aboutme/index',
- },
- {
- "pic": "/images/banner3.png",
- // link:'../aboutme/index',
- },
- ],
- indicatorDots: true,
- vertical: false,
- autoplay: true,
- interval: 5000,
- duration: 500,
- number: {},
- msgList: [
- // {
- // url: "url",
- // title: "欢迎来到吉顺致养小程序"
- // },
- // {
- // url: "url",
- // title: "欢迎来到吉顺致养小程序"
- // },
- ]
- },
- goCollect() {
- wx.switchTab({
- url: '/pages/collectInfo/collectInfo',
- })
- },
- goXunfang() {
- wx.switchTab({
- url: '/pages/visitandinfo/visitandinfo',
- })
- },
- goTongzhi() {
- if (wx.getStorageSync('user') == '') {
- wx.redirectTo({
- url: '/pages/login/login',
- })
- } else {
- wx.navigateTo({
- url: '/pages/notice/notice',
- })
- }
- },
- goPaiming() {
- wx.navigateTo({
- url: '/pages/paiming/paiming',
- })
- },
- goSaoMa() {
- console.log("扫阿");
- // 允许从相机和相册扫码
- wx.scanCode({
- onlyFromCamera: true,
- success: (res) => {
- console.log(res, "打印锕");
- let length = res.result.substring(res.result.lastIndexOf('/') + 1, res.result.length)
- wx.navigateTo({
- url: '/pages/love/love?id=' + length,
- })
- },
- fail: (res) => {
- console.log(res, "假的");
- wx.showToast({
- title: '扫码失败',
- icon: 'none',
- duration: 2000,
- })
- }
- })
- },
- depts() {
- console.log(wx.getStorageSync('openId'), "openid的问题");
- wx.request({
- url: app.globalData.publicUrl + '/applet/homeStatistics',
- method: "GET",
- data: {
- appletsId: wx.getStorageSync('openId')
- },
- success: (res) => {
- if (res.data.code == 0) {
- this.setData({
- number: res.data.data
- })
- }
- }
- })
- },
- welcomeMessage() {
- this.setData({
- msgList: []
- })
- if (wx.getStorageSync('user') == '') {
- wx.request({
- url: app.globalData.publicUrl + '/welcomeMessage/list',
- method: "GET",
- success: (res) => {
- if (res.data.code == 0) {
- console.log(res);
- let result = res.data.data[0].title
- this.data.msgList.push({
- // url: '',
- title: result
- });
- this.data.msgList.push({
- // url: '',
- title: result
- });
- this.setData({
- msgList: this.data.msgList
- })
- }
- }
- })
- } else {
- wx.request({
- url: app.globalData.publicUrl + '/appletNotice/listForAppletsFirst',
- method: "GET",
- header: {
- appletsId: wx.getStorageSync('openId')
- },
- success: (res) => {
- if (res.data.code == 0) {
- console.log(res);
- if (res.data.data.length == 0) {
- this.data.msgList.push({
- // url: '',
- title: '暂无数据!!!'
- });
- this.data.msgList.push({
- // url: '',
- title: '暂无数据!!!'
- });
- this.setData({
- msgList: this.data.msgList
- })
- } else {
- let result = res.data.data.title;
- this.data.msgList.push({
- // url: '',
- title: result
- });
- this.data.msgList.push({
- // url: '',
- title: result
- });
- this.setData({
- msgList: this.data.msgList
- })
- }
- }
- }
- })
- }
- },
- onLoad() {
- this.depts();
- },
- onShow() {
- this.depts();
- this.welcomeMessage();
- }
- })
|