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,4 +3,4 @@
3 // export const baseUrl = 'http://slwl-geteway-t.itheima.net/courier' 3 // export const baseUrl = 'http://slwl-geteway-t.itheima.net/courier'
4 // export const baseUrl ='http://172.16.43.24:9527/courier' 4 // export const baseUrl ='http://172.16.43.24:9527/courier'
5 // 线上环境 5 // 线上环境
6 -export const baseUrl = 'https://sl-gateway.nong12.com/courier'  
7 \ No newline at end of file 6 \ No newline at end of file
  7 +export const baseUrl = 'https://tms-gateway.zrpfsc.com/courier'
8 \ No newline at end of file 8 \ No newline at end of file
project-wl-kuaidiyuan-uniapp-vue3/utils/request.js
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 export function request({ url = "", params = {}, method = "GET" }) { 3 export function request({ url = "", params = {}, method = "GET" }) {
4 // baseUrl改为可配置地址 4 // baseUrl改为可配置地址
5 if (!uni.getStorageSync('baseUrl')){ 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 let baseUrl = uni.getStorageSync('baseUrl') 8 let baseUrl = uni.getStorageSync('baseUrl')
9 9