123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- import {
- ApiModel
- } from "../../../utils/api";
- const _Http = new ApiModel();
- const handleList = require("../../../utils/processingData");
- const analyze = require("../../../components/My_TwoDimensionalCode/analyze");
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- productList: [], //供需列表
- //轮播图列表
- swiperBannerList: [],
- /* 宫格列表 */
- gridList: [{
- text: '供需广场',
- icon: 'https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/home-grid/icon-02.png'
- }, {
- text: '私域直播',
- icon: 'https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/home-grid/icon-01.png'
- }, {
- text: '通告',
- icon: 'https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/home-grid/icon-01.png'
- }, {
- text: '即时沟通',
- icon: 'https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/home-grid/icon-01.png'
- }],
- /* 圆角按钮tabs列表 */
- roundedList: ["兴趣爱好", "关注板块", "最新发布"],
- partnerList: [], //合作商家列表
- codeMsg: {}, //二维码信息
- MyModelShow: false, //二维码二次确认
- MyModelText: "", //提示框文本
- },
- /* tabs切换 */
- /* tabsSelectedIitem(text) {
- console.log(text.detail)
- }, */
- /* 宫格区跳转 */
- gridJumpPage(e) {
- const {
- name
- } = e.target.dataset;
- if (name == '供需广场') {
- wx.switchTab({
- url: '/pages/tabbar-pages/supplyAndDemand/index',
- })
- } else if (name == '私域直播') {
- wx.navigateTo({
- url: '/pages/liveStreaming/index',
- })
- } else if (name == '通告') {
- wx.navigateTo({
- url: '/pages/annunciate/index',
- })
- } else if (name == '即时沟通') {
- wx.navigateTo({
- url: '/pages/chatRoom/index',
- })
- } else {
- wx.showToast({
- title: '功能开发中',
- icon: "none"
- })
- }
- },
- /* 获得展示区标题 */
- getExhibitionTitle(title) {
- const {
- detail
- } = title;
- if (detail == '最新供需') {
- wx.switchTab({
- url: '/pages/tabbar-pages/supplyAndDemand/index',
- })
- } else if (detail == '合作商家') {
- wx.navigateTo({
- url: '/pages/businessPartner/index',
- })
- } else if (detail == '通告') {
- wx.navigateTo({
- url: '/pages/annunciate/index',
- })
- }
- },
- /* 跳转详情 */
- toDetails(e) {
- const {
- index
- } = e.currentTarget.dataset;
- wx.navigateTo({
- url: '/pages/annunciate/details?id=' + this.data.annunciateList[index].tnoticeid + '&type=0',
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (query) {
- const that = this;
- /* 获取最新供需列表 */
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.supplyanddemand.supplyanddemand",
- "method": "query_supplyanddemandList",
- "content": {
- "getdatafromdbanyway": true,
- "pageNumber": 1,
- "pageSize": 8,
- "where": {
- "fissupply": "0",
- "fstatus": "待对接"
- }
- }
- }).then(res => {
- if (res.msg != '成功') {
- wx.showToast({
- title: res.data,
- icon: "none"
- });
- if (query.q) {
- //有登录态直接加入
- analyze.setDataUrl(decodeURIComponent(query.q), true);
- console.log('登录态')
- }
- return;
- }
- const data = handleList.getYTD(res.data);
- this.setData({
- productList: data
- });
- // 获取到二维码原始链接内容
- if (query.q) {
- //有登录态直接加入
- this.ifQrCodeType(analyze.setDataUrl(decodeURIComponent(query.q)));
- console.log('有登录态')
- } else if (wx.getStorageSync('qrCodeMsg')) {
- //判断缓存中是否存在
- this.ifQrCodeType(wx.getStorageSync('qrCodeMsg'));
- //返回数据后清空缓存
- setTimeout(() => {
- wx.removeStorageSync('qrCodeMsg');
- }, 500)
- };
- });
- /* 获取合作商家 */
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.tagents.tagents",
- "method": "query_cooperation",
- "content": {
- "getdatafromdbanyway": true,
- "pageNumber": 1,
- "pageSize": 9,
- "where": {
- "condition": "",
- "ftype": "",
- "fstatus": "合作"
- }
- }
- }).then(res => {
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- });
- let data = handleList.imageType(res.data, 'brandlogo')
- const partnerList = handleList.twoDimensionalArr(data, 3);
- this.setData({
- partnerList
- })
- })
- /* 获取通告 */
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.notice.notice",
- "method": "query_noticeList",
- "content": {
- "getdatafromdbanyway": true,
- "pageNumber": 1,
- "pageSize": 8,
- "where": {
- "condition": "",
- "ftype": ""
- }
- }
- }).then(res => {
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- });
- let list = handleList.annunciateCheckdate(res.data),
- data = handleList.imageType(list, 'cover');
- this.setData({
- annunciateList: data
- })
- })
- /* 获取轮播图 */
- const bannerList = wx.getStorageSync('bannerDataList').filter(value => value.flocation == 'home_head');
- this.setData({
- swiperBannerList: bannerList[0].banner
- });
- //获取信息数量
- this.selectComponent("#gxshuju").unReadMessageCount();
- setTimeout(() => {
- that.getTabBar().setData({
- 'tabbarList[3].fcount': getApp().globalData.msgFcount
- })
- }, 500)
- },
- /* 判断二维码类型 */
- ifQrCodeType(data) {
- let MyModelText = '';
- if (data.type == 'partner') {
- //申请合作
- MyModelText = '是否向“' + data.name + '”发送合作申请';
- } else if (data.type == 'shop') {
- //申请加入团队
- MyModelText = '申请加入“' + data.name + '”团队';
- };
- this.setData({
- MyModelText,
- codeMsg: data,
- MyModelShow: true
- })
- },
- /* 首页模态框回调 */
- MyShowModelCallBack({
- detail
- }) {
- if (detail == 'true') {
- if (this.data.codeMsg.type == 'partner') {
- //申请合作
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.tagents.tagents",
- "method": "apply_cooperation",
- "content": {
- "tcooperationagentsid": this.data.codeMsg.id
- }
- }).then(res => {
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- });
- wx.showToast({
- title: "合作申请成功",
- });
- });
- } else if (this.data.codeMsg.type == 'shop') {
- //申请加入团队
- _Http.basic({
- "classname": "publicmethod.users.Users",
- "method": "entryTeamApply",
- "content": {
- "userid": wx.getStorageSync('userData').userid,
- "tagentsid": this.data.codeMsg.id
- }
- }).then(res => {
- if (res.data != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- });
- wx.showToast({
- title: "申请成功",
- icon: "none"
- });
- })
- }
- } else {
- this.setData({
- MyModelShow: false,
- codeMsg: ''
- });
- }
- },
- /* 一键联系 */
- contact() {
- /* wx.showToast({
- title: '功能尚在开发',
- icon: "none"
- }) */
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- this.getTabBar().init();
- this.getTabBar().setData({
- 'tabbarList[3].fcount': getApp().globalData.msgFcount
- })
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|