From bc582323ab3166f7eb02b45ba7208302c4a6ed7b Mon Sep 17 00:00:00 2001 From: shijing Date: Thu, 7 Aug 2025 16:54:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=8F=98=E6=9B=B4=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/index.js | 2 +- src/views/mtm/route_form.vue | 2 +- update_changelog.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"