From 433a767b5d76ec9883906d595ad2fc5677c67487 Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Mon, 13 Mar 2023 08:55:41 +0800 Subject: [PATCH] =?UTF-8?q?update=20-=20=E4=BF=AE=E6=94=B9=20=E6=AD=A3?= =?UTF-8?q?=E5=BC=8F=E7=8E=AF=E5=A2=83=E9=87=91=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 +++++++++-- src/config/models.js | 2 +- src/views/package-list/index.vue | 6 +++--- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bae3cf4..561450b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -249,4 +249,11 @@ feature ## v1.0.28 `2023.3.2` update -- 修改 最后一步按钮文案 \ No newline at end of file +- 修改 最后一步按钮文案 + + + +## v1.0.29 +`2023.3.13` +update +- 修改 正式环境金额 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index 7f11c07..c2be8bb 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.28F'; //版本号 +export const VERSION_MODEL = '1.0.29F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/package-list/index.vue b/src/views/package-list/index.vue index 9a51bf8..b54d78e 100644 --- a/src/views/package-list/index.vue +++ b/src/views/package-list/index.vue @@ -1,7 +1,7 @@ @@ -318,7 +318,7 @@ export default { packageName: /* data.productModel */ data.packageName, //套餐名字 packagePayType: Number(this.payType), //支付类型 packageIssue: 12, //分期 - packagePrice: process.env.NODE_ENV === "production" ? /* data.packagePrice * 100 */1 : 1 //总金额单位为分,测试环境写死 + packagePrice: process.env.NODE_ENV === "production" ? data.packagePrice * 100 : 1 //总金额单位为分,测试环境写死 }; this.$toast.clear(); APICore.payLiveBaseDevice(reqBody) @@ -413,7 +413,7 @@ export default { packageName: /* data.productModel + ',' + */data.packageName, //套餐名字 packagePayType: Number(this.payType), //支付类型 packageIssue: this.packageIssue, //分期 - packagePrice: process.env.NODE_ENV === "production" ? /* data.packagePrice * 100 */1 : 1 //总金额单位为分,测试环境写死 + packagePrice: process.env.NODE_ENV === "production" ? data.packagePrice * 100 : 1 //总金额单位为分,测试环境写死 }; this.$toast.clear(); APICore.payLiveBaseDevice(reqBody)