diff --git a/src/config/index.js b/src/config/index.js index 9f402f4a..6a19d2df 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -6,7 +6,7 @@ const DEFAULT_CONFIG = { DASHBOARD_URL: "/dashboard", //版本号 - APP_VER: "2.7.2025070310", + APP_VER: "2.7.2025080716", //内核版本号 CORE_VER: "1.6.9", diff --git a/src/views/mtm/route_form.vue b/src/views/mtm/route_form.vue index 253c568f..999ef2b3 100644 --- a/src/views/mtm/route_form.vue +++ b/src/views/mtm/route_form.vue @@ -295,7 +295,7 @@ export default { this.getMaterialOptions(); this.project_code = this.$TOOL.data.get("BASE_INFO").base.base_code; this.form.routepack = this.routepack; - if(this.project_code=='bxerp'){ + if(this.project_code=='bxerp'||this.project_code=='tcerp'){ this.form.material_out_tracking = 20; } }, diff --git a/update_changelog.sh b/update_changelog.sh index e49ac499..acd9a958 100644 --- a/update_changelog.sh +++ b/update_changelog.sh @@ -1,7 +1,7 @@ #!/bin/bash # 设置默认版本号 (格式: 2.6.YYYYMMDDHH) -DEFAULT_VERSION="2.6.$(date '+%Y%m%d%H')" +DEFAULT_VERSION="2.7.$(date '+%Y%m%d%H')" # 获取参数 (起始tag) TARGET_TAG="$1"