aa
jiangping
2024-08-09 ba4da8d8e8d55153d0ff1c39ebdac30115a066a8
aa
已修改4个文件
8 ■■■■ 文件已修改
wechat_staff/components/disCase/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_staff/components/disProduct/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_staff/components/disRealpic/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_staff/pages/kefu/select.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_staff/components/disCase/index.js
@@ -115,7 +115,7 @@
      getZhongTaiWholecasePage({
        catalogCode,pageNum,pageSize,tagCodes, sortType,query
      }).then(res => {
        if(res.data || res.data.records){
        if(res.data && res.data.records){
          this.setData({ 
            total: res.data.total,
            dataList: [...this.data.dataList, ...res.data.records],
wechat_staff/components/disProduct/index.js
@@ -139,7 +139,7 @@
      getZhongTaiProductPage({
        catalogCode,pageNum,pageSize,sortType,query,tagCodes
      }).then(res => {
        if(res.data || res.data.records){
        if(res.data && res.data.records){
          this.setData({
            datalist: [...this.data.datalist, ...res.data.records],
            total: res.data.total
wechat_staff/components/disRealpic/index.js
@@ -118,7 +118,7 @@
      getZhongTaiRealcasePage({
        catalogCode,tagCodes,pageNum,pageSize, sortType,query
      }).then(res => {
        if(res.data || res.data.records){
        if(res.data && res.data.records){
          this.setData({
            dataList: [...this.data.dataList, ...res.data.records],
            total: res.data.total
wechat_staff/pages/kefu/select.js
@@ -41,7 +41,7 @@
      customer
    } = this.data
    const enjoyList = wx.getStorageSync('enjoyList') || []
    if (!customer.userId) return wx.showToast({
    if (!customer.customerId) return wx.showToast({
      title: '请先选择要关联的客户',
      icon: 'none'
    })