Commit 98cfd1c093ef57e79d4243d29489c69b372d280f

Authored by shaofan
1 parent 1b8836ff

Refactor routing and message handling logic in `TransportOrderServiceImpl` and `…

…PickupDispatchTaskServiceImpl`, add notification/message generation for courier tasks, and cleanup redundant exception handling in Redis publish logic.
project-wl-kuaidiyuan-uniapp-vue3/utils/env.js
... ... @@ -3,4 +3,4 @@
3 3 // export const baseUrl = 'http://slwl-geteway-t.itheima.net/courier'
4 4 // export const baseUrl ='http://172.16.43.24:9527/courier'
5 5 // 线上环境
6   -export const baseUrl = 'https://sl-gateway.nong12.com/courier'
7 6 \ No newline at end of file
  7 +export const baseUrl = 'https://tms-gateway.zrpfsc.com/courier'
8 8 \ No newline at end of file
... ...
project-wl-kuaidiyuan-uniapp-vue3/utils/request.js
... ... @@ -3,7 +3,7 @@
3 3 export function request({ url = "", params = {}, method = "GET" }) {
4 4 // baseUrl改为可配置地址
5 5 if (!uni.getStorageSync('baseUrl')){
6   - uni.setStorageSync('baseUrl', 'https://sl-gateway.nong12.com/courier')
  6 + uni.setStorageSync('baseUrl', 'https://tms-gateway.zrpfsc.com/courier')
7 7 }
8 8 let baseUrl = uni.getStorageSync('baseUrl')
9 9  
... ...