| | |
| | | // pages/kefu/index.js |
| | | import { getCustomizedNewsDetail } from '../../api/index' |
| | | Page({ |
| | | |
| | | /** |
| | | * 页面的初始数据 |
| | | */ |
| | | data: { |
| | | bottomLift: 0 |
| | | bottomLift: 0, |
| | | info: {} |
| | | }, |
| | | |
| | | /** |
| | |
| | | this.setData({ |
| | | bottomLift: app.bottomLift |
| | | }) |
| | | if(options && options.id){ |
| | | this.getDetail(options.id) |
| | | } |
| | | }, |
| | | |
| | | /** |
| | | * 生命周期函数--监听页面初次渲染完成 |
| | | */ |
| | | getDetail(id) { |
| | | getCustomizedNewsDetail({id}).then(res => { |
| | | this.setData({ |
| | | info: { ...res.data } |
| | | }) |
| | | }) |
| | | }, |
| | | toSever () { |
| | | console.log('客服'); |
| | | try { |
| | | wx.openCustomerServiceChat({ |
| | | extInfo: { |
| | | url: "https://work.weixin.qq.com/kfid/kfcfbccadc81cd01c0b?enc_scene=ENC5EhZgjepB9zsutZUQ5AiRnyN7GamomkuWsUA4bwigukSK6w5pVyRzcNDKurjFDNDC7" //客服ID |
| | | }, |
| | | corpId: 'ww3686d2bb864ce3e2', //企业微信ID |
| | | success(res) { |
| | | console.log('连接客服成功'); |
| | | } |
| | | }) |
| | | } catch (error) { |
| | | wx.showToast({ |
| | | title: '请更新至微信最新版本', |
| | | icon: 'none' |
| | | }) |
| | | } |
| | | }, |
| | | onReady() { |
| | | |
| | | }, |