123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- const app = getApp();
- const util = require("../../../utils/util");
- var utils = require("../../../utils/http"),
- casepage = 1;
- let time = 0,timer = null;
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- nowstyle: '',
- stylelist: [],
- square_start: '', //面积开始值
- square_end: '', //面积结束值
- nowcommunity: '',
- communitylist: [],
- nowhousetype: '',
- housetypelist: [],
- imgUrl: app.globalData.imgUrl,
- caselist: [],
- keyword: '',
- datashow: false,
- loginFlag:false,
- phoneFlag:false,
- canIUseGetUserProfile: false,
- shareobj:{},
- employeeflag:false,//false是用户,true是员工
- top:app.globalData.statusBarHeight,
- hgt:app.globalData.titleBarHeight,
- companyobj:{},
- nowcommunitname:'',
- typearr:[
- {id:1,name:'效果案例',type:1},
- {id:2,name:'实景案例',type:2}
- ],
- noweffect:''
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- const that=this;
- wx.hideHomeButton();
- time=0;
- this.setData({
- top:app.globalData.statusBarHeight,
- hgt:app.globalData.titleBarHeight,
- })
-
- if(!!options.scene){
- options=unescape(options.scene);
- let arr=options.split('&');
- let obj={};
- for(let i=0;i<arr.length;i++){
- let arr1=arr[i].split('=');
- obj[arr1[0]]=arr1[1];
- }
- this.setData({
- nowstyle: obj.s,
- square_start: obj.st, //面积开始值
- square_end: obj.e, //面积结束值
- nowcommunity: obj.c,
- nowhousetype: obj.h
- })
- app.globalData.clientype=obj.ctp;
- app.globalData.shareuserid = obj.u;
- }else{
- this.setData({
- nowstyle: options.s,
- square_start: options.st, //面积开始值
- square_end: options.e, //面积结束值
- nowcommunity: options.c,
- nowhousetype: options.h
- })
- app.globalData.clientype=options.ctp;
- app.globalData.shareuserid = options.u;
- }
-
- if (wx.getUserProfile) {
- this.setData({
- canIUseGetUserProfile: true
- })
- }
- wx.showLoading({
- title: '加载中...',
- })
- that.login();
- },
- sharecompany:function (){
- const that=this;
- utils.$post({
- url: app.globalData.webUrl + 'client/index/content_belong_company',
- header: {
- 'Authorization':'bearer '+app.globalData.token
- },
- data:{
- client_type:app.globalData.clientype,
- uid: app.globalData.shareuserid
- },
- success: function (res) {
- if(res.data.code=='0'){
- app.globalData.companyobj=res.data.data;
- app.globalData.currentUserId = res.data.data.employee_id;
- that.setData({
- companyobj:res.data.data
- })
- }
- },
- complete(res) {
- wx.hideLoading()
- }
- })
- },
- login: function () {
- var that = this;
- wx.login({
- success: function (data) {
- if (data.errMsg == 'login:ok') {
- utils.$post({
- method: "POST", //TESTAPIURL APIURL/users/auth
- url: app.globalData.webUrl + 'api/users/code2sessionmini',
- data: {
- code: data.code,
- share: app.globalData.shareuserid,
- client_type:app.globalData.clientype
- },
- success: function (r) {
- if (r.data.code == '0') {
- app.globalData.sharepersonobj = r.data.share;
- app.globalData.token = r.data.token;
- that.sharecompany();
- if (r.data.share) {
- app.globalData.vrString = r.data.share.str;
- }
- that.setData({
- shareobj:app.globalData.sharepersonobj
- })
- util.toolfun(1);
- app.globalData.companyname=r.data.company;
- app.globalData.official_openid = r.data.official_openid;
- app.globalData.agentEmployeEid = r.data.agent_employee_id;
- if (!!r.data.user.phone) {
- that.setData({
- datashow: true,
- loginFlag: false,
- phoneFlag:false,
- employeeflag:(!!r.data.user.binded&&r.data.user.binded.state=='在职')?true:false
- })
- if (!!r.data.user.binded && r.data.user.binded.state == '在职'){
- app.globalData.currentUserId = r.data.user.binded.id;
- }
- app.globalData.personMsg = r.data.user;
- app.globalData.userflag = false; //有个人信息
- app.globalData.phone = true; //有手机号
- that.unreadMsg();
- } else {
- that.unreadMsg();
- wx.hideLoading();
- that.setData({
- loginFlag: false,
- phoneFlag: true
- })
- }
-
- } else {
- setTimeout(function () {
- wx.hideLoading()
- }, 500)
- }
- }
- })
- }
- }
- })
- },
- prelooktap(){
- if(!app.globalData.sharepersonobj.qrcode){
- wx.showToast({
- title: "当前专属客服的二维码为空!",
- icon: 'none',
- duration: 2000
- })
- return false;
- }
- wx.previewImage({
- current: app.globalData.imgUrl+app.globalData.sharepersonobj.qrcode, // 当前显示图片的http链接
- urls: [app.globalData.imgUrl+app.globalData.sharepersonobj.qrcode]// 需要预览的图片http链接列表
- })
- },
- unreadMsg:function(){
- this.casestylefun();
- this.housestylefun();
- this.casecommunityfun();
- this.caselistfun();
- },
- golastap:function(){
- wx.navigateBack({
- delta: 1,
- success:function(r){
- },
- fail:function(r){
- wx.reLaunch({
- url: '/pages/index/index?state=1',
- })
- },
- })
- },
- goindextap:function(){
- if(!this.data.employeeflag){
- wx.reLaunch({
- url: '/pages/index/index?state=1',
- })
- }else{
- wx.reLaunch({
- url: '/pages/consoledesk/consoledesk',
- })
- }
- },
- openVRLink(e) {
- let vrlink = e.currentTarget.dataset.vrlink;
- let id = e.currentTarget.dataset.id;
- wx.navigateTo({
- url: '/pages/other/other?type=vr&vrurl=' + escape(vrlink) + '&cty=materialCase' + '&uid=' + app.globalData.shareuserid + '&ctp=' + app.globalData.clientype + '&aid=' + id,
- })
- },
- opencommunitytap:function(){
- this.setData({
- communityflag:true,
- })
- },
- dothis:function(){},
- colsecommunitytap:function(){
- this.setData({
- communityflag:false
- })
- },
- seteffectap(e){
- this.setData({
- noweffect:e.currentTarget.dataset.type
- })
- this.caselistfun();
- },
- casecommunityfun: function () {
- var that = this;
- utils.$get({
- url: app.globalData.webUrl + 'api/communitylist',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {},
- success: function (res) {
- if (res.data.code == '0') {
- for(let i=0;i<res.data.data.length;i++){
- if(res.data.data[i].id==that.data.nowcommunity){
- that.setData({
- nowcommunitname:res.data.data[i].name
- })
- }
- }
- that.setData({
- communitylist: res.data.data
- })
- }
- that.getCitys();
- }
- })
- },
- getCitys() {
- const _this = this
- const cities = this.data.communitylist;
- // 按拼音排序
- cities.sort((c1, c2) => {
- let pinyin1 = c1.pinyin;
- let pinyin2 = c2.pinyin;
- return pinyin1.localeCompare(pinyin2)
- })
- // 添加首字母
- const map = new Map()
- for (const city of cities) {
- const alpha = city.pinyin.charAt(0).toUpperCase()
- if (!map.has(alpha)) map.set(alpha, [])
- map.get(alpha).push({ name: city.name,id: city.id})
- }
- const keys = []
- for (const key of map.keys()) {
- keys.push(key)
- }
- keys.sort()
-
- const list = []
- for (const key of keys) {
- list.push({
- alpha: key,
- subItems: map.get(key)
- })
- }
- for(let i=0;i<list.length;i++){
- for(let k=0;k<list[i].subItems.length;k++){
- for(let j=0;j<cities.length;j++){
- if(list[i].subItems[k].name==cities[j].name){
- list[i].subItems[k].case_num=cities[j].case_num;
- list[i].id=cities[j].id;
- }
- }
- }
-
- }
- _this.setData({list:list})
- },
- onChoose(e) {
- var that=this;
- that.setData({
- nowcommunity:e.detail.item.currentTarget.dataset.cid,
- nowcommunitname:e.detail.item.currentTarget.dataset.item.name,
- communityflag:false
- })
- wx.showLoading({
- title: '加载中...',
- })
- that.caselistfun();
- },
- casestylefun: function () {
- var that = this;
- utils.$get({
- url: app.globalData.webUrl + 'api/stylelist',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {},
- success: function (res) {
- if (res.data.code == '0') {
- that.setData({
- stylelist: res.data.data
- })
- }
- }
- })
- },
- callphonetap:function(){
- console.log()
- wx.makePhoneCall({
- phoneNumber: app.globalData.sharepersonobj.phone //仅为示例,并非真实的电话号码
- })
- },
- housestylefun: function () {
- var that = this;
- utils.$get({
- url: app.globalData.webUrl + 'api/material/housetypelist',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {},
- success: function (res) {
- if (res.data.code == '0') {
- that.setData({
- housetypelist: res.data.data
- })
- }
- }
- })
- },
- selectareatap: function (e) {
- this.setData({
- square_start: e.currentTarget.dataset.start,
- square_end: e.currentTarget.dataset.end,
- })
- this.caselistfun();
- },
- caselistfun: function (e) {
- var that = this;
- casepage = 1;
- utils.$get({
- url: app.globalData.webUrl + 'client/caselist',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {
- page: 1,
- uid: app.globalData.personMsg.id,
- commu_id: that.data.nowcommunity, // 小区id
- style_id: that.data.nowstyle, //风格id
- square_start: that.data.square_start, //面积开始值
- square_end: that.data.square_end, //面积结束值
- keyword: that.data.keyword,
- housetype_id: that.data.nowhousetype,
- case_type:this.data.noweffect,
- },
- success: function (res) {
- that.setData({
- datashow: true
- })
- if (res.data.code == '0') {
- that.setData({
- caselist: res.data.data
- })
- }
- setTimeout(function () {
- wx.hideLoading()
- }, 1000)
- },
- fail() {
- wx.hideLoading()
- }
- })
- },
- setstyletap: function (e) {
- this.setData({
- nowstyle: e.currentTarget.dataset.type
- })
- this.caselistfun();
- },
- setcommunitytap: function (e) {
- this.setData({
- nowcommunity: e.currentTarget.dataset.type
- })
- this.caselistfun();
- },
- sethousetypetap: function (e) {
- this.setData({
- nowhousetype: e.currentTarget.dataset.type
- })
- this.caselistfun();
- },
- casemsgtap: function (e) {
- wx.navigateTo({
- url: '/share/pages/materialcase/materialcase?type=3&cid=' + e.currentTarget.dataset.cid+'&uid='+app.globalData.shareuserid+'&ctp='+app.globalData.clientype
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- this.setData({
- top:app.globalData.statusBarHeight,
- hgt:app.globalData.titleBarHeight,
- })
- timer = setInterval(function () {
- time = time * 1 + 1;
- }, 1000)
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- if (timer) {
- clearInterval(timer)
- }
- this.setimetap();
- },
- setimetap(){
- const that = this;
- utils.$post({
- url: app.globalData.webUrl + 'client/index/visit_due_time',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {
- id: that.data.companyobj.employee_id,
- pipe_type: 'toolAll',
- time: time,
- },
- success: function (res) {
- }
- })
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- this.setimetap();
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- var that = this;
- casepage = 1;
- utils.$get({
- url: app.globalData.webUrl + 'client/caselist',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {
- page: 1,
- uid: app.globalData.personMsg.id,
- commu_id: that.data.nowcommunity, // 小区id
- style_id: that.data.nowstyle, //风格id
- square_start: that.data.square_start, //面积开始值
- square_end: that.data.square_end, //面积结束值
- keyword: that.data.keyword,
- housetype_id: that.data.nowhousetype,
- case_type:this.data.noweffect,
- },
- success: function (res) {
- wx.stopPullDownRefresh()
- if (res.data.code == '0') {
- that.setData({
- caselist: res.data.data
- })
- }
- setTimeout(function () {
- wx.hideLoading()
- }, 1000)
- }
- })
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- var that = this;
- casepage = casepage * 1 + 1;
- utils.$get({
- url: app.globalData.webUrl + 'client/caselist',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {
- page: casepage,
- uid: app.globalData.personMsg.id,
- commu_id: that.data.nowcommunity, // 小区id
- style_id: that.data.nowstyle, //风格id
- square_start: that.data.square_start, //面积开始值
- square_end: that.data.square_end, //面积结束值
- keyword: that.data.keyword,
- housetype_id: that.data.nowhousetype,
- case_type:this.data.noweffect,
- },
- success: function (res) {
- let caselist = that.data.caselist;
- if (res.data.code == '0') {
- caselist = caselist.concat(res.data.data);
- that.setData({
- caselist: caselist
- })
- }
- setTimeout(function () {
- wx.hideLoading()
- }, 1000)
- }
- })
- },
- addsharetap: function (type) {
- let that = this;
- utils.$post({
- url: app.globalData.webUrl + 'api/share/addlog',
- header: {
- 'Authorization': 'bearer ' + app.globalData.token
- },
- data: {
- id: '0',
- type: type,
- },
- success: function (r) {}
- })
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- let that = this;
- that.addsharetap('toolAll');
- return {
- title: app.globalData.personMsg.binded.name + "的装修案例",
- imageUrl: app.globalData.imgUrl+"xcx/caseposter.jpg",
- path: '/share/pages/caselist/caselist?u=' + app.globalData.personMsg.id +'&c=' + that.data.nowcommunity + '&s=' + that.data.nowstyle + '&st=' + that.data.square_start+'&ctp='+app.globalData.clientype + '&e=' + that.data.square_end + '&h=' + that.data.nowhousetype
- }
- }
- })
|