Browse Source

Merge branch 'merge-master'

master
JinxChen 1 year ago
parent
commit
6591b85c75
3 changed files with 10 additions and 5 deletions
  1. +7
    -2
      README.md
  2. +2
    -2
      src/App.vue
  3. +1
    -1
      src/config/models.js

+ 7
- 2
README.md View File

@@ -1,7 +1,7 @@
<!--
* @Date: 2022-08-17 16:19:13
* @LastEditors: JinxChen
* @LastEditTime: 2023-04-08 15:03:04
* @LastEditTime: 2023-04-08 21:03:45
* @FilePath: \TelpoH5FrontendWeb\README.md
* @description: 项目说明
-->
@@ -353,4 +353,9 @@ update
- packageHome
- 增加 微信授权code调用方式,缓存没有则从路由获取
- appId
- 修改 测试环境appId
- 修改 测试环境appId

## v1.0.41
`2023.4.8`
update
增加 正式环境的debug按钮

+ 2
- 2
src/App.vue View File

@@ -1,7 +1,7 @@
<!--
* @Date: 2022-01-19 10:08:26
* @LastEditors: JinxChen
* @LastEditTime: 2023-04-08 17:13:31
* @LastEditTime: 2023-04-08 21:03:05
* @FilePath: \TelpoH5FrontendWeb\src\App.vue
* @description:
-->
@@ -37,7 +37,7 @@ export default {
});
},
debug() {
if (process.env.NODE_ENV !== 'production') {
if (process.env.NODE_ENV !== 'development') {
const script = document.createElement('script');
script.src = "//cdn.jsdelivr.net/npm/eruda";
document.body.appendChild(script);


+ 1
- 1
src/config/models.js View File

@@ -5,7 +5,7 @@
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js
* @description:
*/
export const VERSION_MODEL = '1.0.40F'; //版本号
export const VERSION_MODEL = '1.0.41F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


Loading…
Cancel
Save