瀏覽代碼

Merge branch 'develop' into test

test
JinxChen 1 年之前
父節點
當前提交
21cc65e6e3
共有 4 個文件被更改,包括 11 次插入7 次删除
  1. +4
    -2
      README.md
  2. +1
    -1
      src/views/buy-record/index.vue
  3. +5
    -3
      src/views/card-info/index.vue
  4. +1
    -1
      src/views/package-buy/index.vue

+ 4
- 2
README.md 查看文件

@@ -1,7 +1,7 @@
<!--
* @Date: 2022-08-17 16:19:13
* @LastEditors: JinxChen
* @LastEditTime: 2023-04-17 11:20:12
* @LastEditTime: 2023-04-17 17:41:51
* @FilePath: \TelpoH5FrontendWeb\README.md
* @description: 项目说明
-->
@@ -378,4 +378,6 @@ update
`2023.4.17`
update
- packageHome
- 增加 进入充值首页时已充值跳转到话费查询页面
- 增加 进入充值首页时已充值跳转到话费查询页面
- cardInfo
- 修复 code重复的问题

+ 1
- 1
src/views/buy-record/index.vue 查看文件

@@ -95,7 +95,7 @@ export default {
onNavBack() {
this.$router.replace({
name: "cardInfo",
query: { imei: this.$route.query.imei, iccid: this.$route.query.iccid, isShowMenu: true}
query: { imei: this.$route.query.imei, iccid: this.$route.query.iccid, isShowMenu: true, isHasCode: true}
});
},
// 复制订单号


+ 5
- 3
src/views/card-info/index.vue 查看文件

@@ -1,7 +1,7 @@
<!--
* @Date: 2022-04-15 10:22:36
* @LastEditors: JinxChen
* @LastEditTime: 2023-04-17 17:19:33
* @LastEditTime: 2023-04-17 17:40:01
* @FilePath: \TelpoH5FrontendWeb\src\views\card-info\index.vue
* @description:
-->
@@ -145,7 +145,9 @@ export default {
let code = url.split("&")[0];
if (isNotNull(code)) {
this.isShowPage = true;
this.getOpenId(code);
if(!params.isHasCode) {
this.getOpenId(code);
}
} else {
this.$dialog({
message: '系统繁忙,请重新进入'
@@ -183,7 +185,7 @@ export default {
this.$toast.loading({ message: '查询中...' });
let reqBody = {
imei: this.$route.query.imei,
iccid: '' || this.$route.query.iccid
iccid: this.$route.query.iccid || ''
}
APIWx.GetCardInfo(reqBody)
.then(res => {


+ 1
- 1
src/views/package-buy/index.vue 查看文件

@@ -153,7 +153,7 @@ export default {
onNavBack() {
this.$router.replace({
name: "cardInfo",
query: { imei: this.$route.query.imei, iccid: this.$route.query.iccid, isShowMenu: true}
query: { imei: this.$route.query.imei, iccid: this.$route.query.iccid, isShowMenu: true, isHasCode: true}
});
},
// 获取core token


Loading…
取消
儲存