diff --git a/README.md b/README.md index 4b1626d..a42ac6b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -263,3 +263,11 @@ feat - cardInfo - 增加 物联网卡套餐信息查询页面 - 增加 加油包合基础套餐购买页面 + + +## v1.0.31 +`2023.3.23` +feat +- packageList,packageBuy + - 增加 下单接口iccid参数 + diff --git a/src/config/models.js b/src/config/models.js index 3882e82..08644b4 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.30F'; //版本号 +export const VERSION_MODEL = '1.0.31F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/package-buy/index.vue b/src/views/package-buy/index.vue index f25666e..91b8ca9 100644 --- a/src/views/package-buy/index.vue +++ b/src/views/package-buy/index.vue @@ -1,7 +1,7 @@ @@ -295,6 +295,7 @@ export default { let reqBody = { openId: this.$store.getters.openId, //openId imei: that.$route.query.imei, //imei + iccid: that.$route.query.iccid, productId: orderData.packagesId, //套餐id packageName: orderData.productModel + "," + orderData.packagesName, //套餐名字 @@ -376,6 +377,7 @@ export default { let reqBody = { openId: this.$store.getters.openId, //openId imei: that.$route.query.imei, //imei + iccid: that.$route.query.iccid, productId: this.payProductId, //套餐id packageName: /* data.productModel + ',' + */data.packagesName, //套餐名字 packagePayType: Number(this.payType), //支付类型 diff --git a/src/views/package-list/index.vue b/src/views/package-list/index.vue index ca9917e..dff6af1 100644 --- a/src/views/package-list/index.vue +++ b/src/views/package-list/index.vue @@ -1,7 +1,7 @@ @@ -326,6 +326,7 @@ export default { let reqBody = { openId: this.$store.getters.openId, //openId imei: this.params.imei, //imei + iccid: this.params.iccid, productId: this.payProductId, //套餐id packageName: /* data.productModel */ data.packagesName, //套餐名字 packagePayType: Number(this.payType), //支付类型 @@ -421,6 +422,7 @@ export default { let reqBody = { openId: this.$store.getters.openId, //openId imei: this.params.imei, //imei + iccid: this.params.iccid, productId: this.payProductId, //套餐id packageName: /* data.productModel + ',' + */data.packagesName, //套餐名字 packagePayType: Number(this.payType), //支付类型