瀏覽代碼

未读数

master
J_yt 2 年之前
父節點
當前提交
7aa819be9f
共有 6 個文件被更改,包括 39 次插入11 次删除
  1. +2
    -2
      pages/index/customer.vue
  2. +3
    -2
      pages/index/index.vue
  3. +2
    -2
      pages/index/learning.vue
  4. +15
    -2
      pages/index/personal.vue
  5. 二進制
      static/images/updateIcon.png
  6. +17
    -3
      utils/domain.js

+ 2
- 2
pages/index/customer.vue 查看文件

@@ -105,8 +105,8 @@
'Access-Token': uni.getStorageSync('weapp_session_login_data').token
},
success: (res) => {
this.count = res.data.data.count
this.tabbarList[3].count = res.data.data.count
this.count = res.data.data
this.tabbarList[3].count = res.data.data
}
})
},


+ 3
- 2
pages/index/index.vue 查看文件

@@ -459,8 +459,9 @@
'Access-Token': uni.getStorageSync('weapp_session_login_data').token
},
success: (res) => {
this.count = res.data.data.count
this.tabbarList[3].count = res.data.data.count
console.log(res)
this.count = res.data.data
this.tabbarList[3].count = res.data.data
}
})
},


+ 2
- 2
pages/index/learning.vue 查看文件

@@ -102,8 +102,8 @@
'Access-Token': uni.getStorageSync('weapp_session_login_data').token
},
success: (res) => {
this.count = res.data.data.count
this.tabbarList[3].count = res.data.data.count
this.count = res.data.data
this.tabbarList[3].count = res.data.data
}
})
},


+ 15
- 2
pages/index/personal.vue 查看文件

@@ -96,6 +96,7 @@
return {
tabbarList:tabbarList,
current: 0,
count:0,
name: "",
photo: "",
mobile: "",
@@ -121,8 +122,8 @@
'Access-Token': uni.getStorageSync('weapp_session_login_data').token
},
success: (res) => {
this.count = res.data.data.count
this.tabbarList[3].count = res.data.data.count
this.count = res.data.data
this.tabbarList[3].count = res.data.data
}
})
},
@@ -201,6 +202,18 @@
};
</script>
<style lang="scss" scoped>
.count{
background: red;
width: 50rpx;
height: 50rpx;
border-radius: 40rpx;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
font-size: 24rpx;
margin-right: 20rpx;
}
.main {
padding: 0 30rpx;
background: #F8F8F8;


二進制
static/images/updateIcon.png 查看文件

Before After
Width: 350  |  Height: 220  |  Size: 54 KiB

+ 17
- 3
utils/domain.js 查看文件

@@ -1,14 +1,28 @@

// http.js使用域名
const baseUrl = 'http://81.70.55.170:9090/autoSR/api';// 测试站
// const baseUrl = 'http://81.70.55.170:9090/autoSR/api';// 测试站
// const baseUrl = 'http://192.168.31.57:8080/autoSR/api';// 本地
// const baseUrl = 'http://121.42.63.138:9091/autoSR/api';// 测试站
// const baseUrl = 'http://192.168.31.167:8080/autoSR/api'; // 长龙
// const baseUrl = 'http://192.168.31.134:8080/autoSR/api'; // 佳豪
// const baseUrl = 'http://10.2.1.104:8081/autoSR/api'; // 刘敏
// const baseUrl = 'https://xitong.pachira.cn/api'; // AI营销辅助 普强使用
const baseUrl = 'https://xitong.pachira.cn/api'; // AI营销辅助 普强使用

// config使用域名
/**192.168.31.167
* 小程序配置文件
*/
// 此处主机域名修改成腾讯云解决方案分配的域名
// const host = 'http://192.168.31.57:8080/autoSR/api';// 本地
const host = baseUrl; // 测试站
// const host = 'http://192.168.31.167:8080/autoSR/api'; // 长龙
// const host = 'http://192.168.31.134:8080/autoSR/api'; // 佳豪
// const host = 'http://10.2.1.104:8081/autoSR/api'; // 刘敏
// const host = 'https://zkgj.quhouse.com/api'; // 质控正式
// const host = 'https://hfju.com/api'; // 数智正式


const iMServiceHost = 'https://im.quhouse.com/'; //IM的后端地址正式 暂未使用留着防止报错
const iMServiceHost = 'https://im.quhouse.com/'; //IM的后端地址正式

export {
baseUrl,


Loading…
取消
儲存