Просмотр исходного кода

Merge branch 'develop' into test

test
JinxChen 1 год назад
Родитель
Сommit
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 * @Date: 2022-08-17 16:19:13
* @LastEditors: JinxChen * @LastEditors: JinxChen
* @LastEditTime: 2023-04-17 11:20:12
* @LastEditTime: 2023-04-17 17:41:51
* @FilePath: \TelpoH5FrontendWeb\README.md * @FilePath: \TelpoH5FrontendWeb\README.md
* @description: 项目说明 * @description: 项目说明
--> -->
@@ -378,4 +378,6 @@ update
`2023.4.17` `2023.4.17`
update update
- packageHome - packageHome
- 增加 进入充值首页时已充值跳转到话费查询页面
- 增加 进入充值首页时已充值跳转到话费查询页面
- cardInfo
- 修复 code重复的问题

+ 1
- 1
src/views/buy-record/index.vue Просмотреть файл

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


+ 1
- 1
src/views/package-buy/index.vue Просмотреть файл

@@ -153,7 +153,7 @@ export default {
onNavBack() { onNavBack() {
this.$router.replace({ this.$router.replace({
name: "cardInfo", 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 // 获取core token


Загрузка…
Отмена
Сохранить