feat(czrt6): switch runtime domains and profile to czrt6

Update admin/frontend profiles, contract template paths, and H5/integral routing domains to point the deployed environment from byjyw149 to czrt6.

Made-with: Cursor
This commit is contained in:
danaisuiyuan
2026-04-17 12:26:19 +08:00
parent 58d6446a22
commit 43d652aa42
10 changed files with 15 additions and 15 deletions

View File

@@ -8,8 +8,8 @@ ENV = 'development'
# VUE_APP_BASE_API = 'http://jfanyueadmin.szxingming.com' # VUE_APP_BASE_API = 'http://jfanyueadmin.szxingming.com'
# VUE_APP_BASE_API = 'http://jfadmin.wenjinhui.com' # VUE_APP_BASE_API = 'http://jfadmin.wenjinhui.com'
# VUE_APP_BASE_API = 'http://jfadmin-bsy.bosenyuan.com' # VUE_APP_BASE_API = 'http://jfadmin-bsy.bosenyuan.com'
# byjyw149 项目(宝应金雅文商贸 # czrt6 项目(池州瑞棠商贸有限公司
VUE_APP_BASE_API = 'https://jf.jinyawen.com' VUE_APP_BASE_API = 'https://jf.czruitang.com'
# hapr191 项目(淮安鹏然商贸) # hapr191 项目(淮安鹏然商贸)
# VUE_APP_BASE_API = 'http://jfadmin.hapengran.com' # VUE_APP_BASE_API = 'http://jfadmin.hapengran.com'

View File

@@ -8,8 +8,8 @@ ENV = 'production'
# miao33 项目 # miao33 项目
# VUE_APP_BASE_API = 'http://jfadmin.xiashengjun.com' # VUE_APP_BASE_API = 'http://jfadmin.xiashengjun.com'
# byjyw149 项目(宝应金雅文商贸 # czrt6 项目(池州瑞棠商贸有限公司
VUE_APP_BASE_API = 'https://jf.jinyawen.com' VUE_APP_BASE_API = 'https://jf.czruitang.com'
# hapr191 项目(淮安鹏然商贸) # hapr191 项目(淮安鹏然商贸)
# VUE_APP_BASE_API = 'http://jfadmin.hapengran.com' # VUE_APP_BASE_API = 'http://jfadmin.hapengran.com'

View File

@@ -38,7 +38,7 @@ server:
spring: spring:
profiles: profiles:
active: byjyw149 active: czrt6
servlet: servlet:
multipart: multipart:
max-file-size: 50MB #设置单个文件大小 max-file-size: 50MB #设置单个文件大小

View File

@@ -73,7 +73,7 @@ public class WaUserController {
FileInputStream fileInputStream = null; FileInputStream fileInputStream = null;
try { try {
// 读取模板PDF文件 // 读取模板PDF文件
Resource resource = new ClassPathResource("pdf/sign_contract_byjyw149.pdf"); Resource resource = new ClassPathResource("pdf/sign_contract_czrt6.pdf");
InputStream pdfInputStream = resource.getInputStream(); InputStream pdfInputStream = resource.getInputStream();
document = PDDocument.load(pdfInputStream); document = PDDocument.load(pdfInputStream);
pdfInputStream.close(); pdfInputStream.close();
@@ -199,7 +199,7 @@ public class WaUserController {
// user.setContract("https://anyue.szxingming.com/"+pdfResultVo.getUrl()); // user.setContract("https://anyue.szxingming.com/"+pdfResultVo.getUrl());
// user.setContract("https://xiashengjun.com/"+pdfResultVo.getUrl()); // user.setContract("https://xiashengjun.com/"+pdfResultVo.getUrl());
// user.setContract("https://ccd.cichude.com/"+pdfResultVo.getUrl()); // user.setContract("https://ccd.cichude.com/"+pdfResultVo.getUrl());
user.setContract("https://jinyawen.com/"+pdfResultVo.getUrl()); user.setContract("https://czruitang.com/"+pdfResultVo.getUrl());
waUsersDao.updateById(user); waUsersDao.updateById(user);
} }
return CommonResult.success(pdfResultVo); return CommonResult.success(pdfResultVo);

View File

@@ -32,7 +32,7 @@ server:
spring: spring:
profiles: profiles:
active: byjyw149 active: czrt6
servlet: servlet:
multipart: multipart:
max-file-size: 50MB #设置单个文件大小 max-file-size: 50MB #设置单个文件大小

View File

@@ -6,7 +6,7 @@
// let domain = 'https://jfanyue.szxingming.com' // let domain = 'https://jfanyue.szxingming.com'
// let domain = 'https://jf.wenjinhui.com' // let domain = 'https://jf.wenjinhui.com'
// let domain = 'https://jjy-jf.fwxgpt.com' // let domain = 'https://jjy-jf.fwxgpt.com'
let domain = 'https://jf.jinyawen.com' let domain = 'https://jf.czruitang.com'
// let domain = 'https://jf.hapengran.com' // let domain = 'https://jf.hapengran.com'
// let domain = 'https://jjy-jf.uj345.com' // let domain = 'https://jjy-jf.uj345.com'
// let domain = 'https://ccd-jf.cichude.com' // let domain = 'https://ccd-jf.cichude.com'
@@ -17,7 +17,7 @@ module.exports = {
// HTTP_REQUEST_URL:'', // HTTP_REQUEST_URL:'',
HTTP_REQUEST_URL: domain, HTTP_REQUEST_URL: domain,
// H5商城地址 // H5商城地址
HTTP_H5_URL: 'https://jf.jinyawen.com', HTTP_H5_URL: 'https://jf.czruitang.com',
// #endif // #endif
// #ifdef H5 // #ifdef H5
HTTP_REQUEST_URL:domain, HTTP_REQUEST_URL:domain,

View File

@@ -34,7 +34,7 @@
export default { export default {
data() { data() {
return { return {
pdfUrl: '/static/sign_contract_byjyw149.pdf', pdfUrl: '/static/sign_contract_czrt6.pdf',
userId: '', userId: '',
isMobile: false, isMobile: false,
usePdfJs: false, usePdfJs: false,

View File

@@ -338,7 +338,7 @@ export default {
// 跳转到抢购页面 // 跳转到抢购页面
goToRushBuy() { goToRushBuy() {
// #ifdef H5 // #ifdef H5
window.location.href = 'https://jinyawen.com/?#/pages/personal/index' window.location.href = 'https://czruitang.com/?#/pages/personal/index'
// window.location.href = 'https://ccd.cichude.com/?#/pages/personal/index' // window.location.href = 'https://ccd.cichude.com/?#/pages/personal/index'
// window.location.href = 'https://shop.wenjinhui.com/?#/pages/personal/index' // window.location.href = 'https://shop.wenjinhui.com/?#/pages/personal/index'
//window.location.href = 'https://anyue.szxingming.com/?#/pages/personal/index' //window.location.href = 'https://anyue.szxingming.com/?#/pages/personal/index'
@@ -347,7 +347,7 @@ export default {
// #endif // #endif
// #ifndef H5 // #ifndef H5
uni.navigateTo({ uni.navigateTo({
url: '/pages/web-view/index?url=' + encodeURIComponent('https://jinyawen.com/?#/pages/personal/index') url: '/pages/web-view/index?url=' + encodeURIComponent('https://czruitang.com/?#/pages/personal/index')
}) })
// #endif // #endif
}, },

View File

@@ -16,7 +16,7 @@ export default {
}, },
onLoad(options) { onLoad(options) {
const url = options && options.url ? decodeURIComponent(options.url) : '/static/sign_contract_byjyw149.pdf' const url = options && options.url ? decodeURIComponent(options.url) : '/static/sign_contract_czrt6.pdf'
this.pdfUrl = url this.pdfUrl = url
}, },

View File

@@ -360,7 +360,7 @@ export default {
}); });
// 返回 // 返回
setTimeout(() => { setTimeout(() => {
window.location.href = 'https://jinyawen.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '') window.location.href = 'https://czruitang.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '')
// window.location.href = 'https://shop.wenjinhui.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '') // window.location.href = 'https://shop.wenjinhui.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '')
// window.location.href = 'https://anyue.szxingming.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '') // window.location.href = 'https://anyue.szxingming.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '')
// window.location.href = 'https://xiashengjun.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '') // window.location.href = 'https://xiashengjun.com/?#/pages/rushing/index' + (this.userId ? ('?user_id=' + this.userId) : '')