diff --git a/README.md b/README.md index 828f32c..d0597d4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -227,3 +227,10 @@ update `2023.2.27` update - 优化 支付方式选择页面 + + +## v1.0.26 +`2023.2.28` +update +- 开放 微信支付 +- 修改 支付宝全额支付参数,0表示全额,12表示分期 \ No newline at end of file diff --git a/src/config/appId.js b/src/config/appId.js new file mode 100644 index 0000000..3dfd823 --- /dev/null +++ b/src/config/appId.js @@ -0,0 +1,13 @@ +/* + * @Date: 2022-03-19 19:57:20 + * @LastEditors: JinxChen + * @LastEditTime: 2022-10-12 16:50:09 + * @FilePath: \ParentWeb\src\config\appId.js + * @description: + */ +const AppId = process.env.NODE_ENV === 'production' ? + 'wx23f697736154110b' : + process.env.VUE_APP_BASE_API.indexOf('ai.ssjlai.com') > -1 ? + 'wx23f697736154110b': + /* 'wx785c95a3e7f46f72' */'wx5e26f0813859e5f6'; //wx5e26f0813859e5f6 2022.10.12 更改测试公众号 +export default AppId; \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index 0ba8f08..db5f1e3 100644 --- a/src/config/models.js +++ b/src/config/models.js @@ -5,7 +5,7 @@ * @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @description: */ -export const VERSION_MODEL = '1.0.25F'; //版本号 +export const VERSION_MODEL = '1.0.26F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/package-home/index.vue b/src/views/package-home/index.vue index 693298d..35218e4 100644 --- a/src/views/package-home/index.vue +++ b/src/views/package-home/index.vue @@ -1,12 +1,14 @@