|
@@ -16,6 +16,7 @@ const projectConfigs = {
|
|
|
hrqb: {
|
|
|
appId: "458",
|
|
|
miniAppId: "wxc7ed88182aa77a68",
|
|
|
+ CHANNELCODE: "hrqbxcx",
|
|
|
LOGO: "https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/logo.png",
|
|
|
HOME_LOGO:
|
|
|
"https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/home_logo_hrqb.png",
|
|
@@ -23,6 +24,7 @@ const projectConfigs = {
|
|
|
hrhaojie: {
|
|
|
appId: "472",
|
|
|
miniAppId: "wxaca93174bcaa6453",
|
|
|
+ CHANNELCODE: "hrhaojie",
|
|
|
LOGO: "https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/logo.png",
|
|
|
HOME_LOGO:
|
|
|
"https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/home_logo_hrqb.png",
|
|
@@ -50,11 +52,18 @@ async function writeJsonFile(filePath, data) {
|
|
|
}
|
|
|
|
|
|
// 更新配置项在指定文件中
|
|
|
-async function updateConfigInFile(filePath, newAPPID, newLOGO, newHOME_LOGO) {
|
|
|
+async function updateConfigInFile(
|
|
|
+ filePath,
|
|
|
+ newAPPID,
|
|
|
+ newCHANNELCODE,
|
|
|
+ newLOGO,
|
|
|
+ newHOME_LOGO
|
|
|
+) {
|
|
|
try {
|
|
|
let data = await fs.readFile(filePath, "utf8");
|
|
|
const updates = [
|
|
|
{ key: "APPID: ", value: `'"${newAPPID}"',` },
|
|
|
+ { key: "CHANNELCODE: ", value: `'"${newCHANNELCODE}"',` },
|
|
|
|
|
|
// 因现在惠融好借和惠融钱包的图片资源都是一样的,所以LOGO和HOME_LOGO暂时这部分代码暂时注释掉
|
|
|
// { key: "LOGO: ", value: `'"${newLOGO}"',` },
|
|
@@ -76,6 +85,9 @@ async function updateConfigInFile(filePath, newAPPID, newLOGO, newHOME_LOGO) {
|
|
|
if (data !== updatedData) {
|
|
|
await fs.writeFile(filePath, updatedData, "utf8");
|
|
|
console.log(`更新成功: ${filePath} 中的 APPID 已更新为 ${newAPPID}`);
|
|
|
+ console.log(
|
|
|
+ `更新成功: ${filePath} 中的 CHANNELCODE 已更新为 ${newCHANNELCODE}`
|
|
|
+ );
|
|
|
// console.log(`更新成功: ${filePath} 中的 LOGO 已更新为 ${newLOGO}`);
|
|
|
// console.log(
|
|
|
// `更新成功: ${filePath} 中的 HOME_LOGO 已更新为 ${newHOME_LOGO}`
|
|
@@ -109,12 +121,14 @@ async function updateProjectConfig(projectName) {
|
|
|
updateConfigInFile(
|
|
|
devFilePath,
|
|
|
projectConfig.appId,
|
|
|
+ projectConfig.CHANNELCODE,
|
|
|
projectConfig.LOGO,
|
|
|
projectConfig.HOME_LOGO
|
|
|
),
|
|
|
updateConfigInFile(
|
|
|
prodFilePath,
|
|
|
projectConfig.appId,
|
|
|
+ projectConfig.CHANNELCODE,
|
|
|
projectConfig.LOGO,
|
|
|
projectConfig.HOME_LOGO
|
|
|
),
|