Browse Source

修复 iccid获取错误的问题

feat
JinxChen 1 year ago
parent
commit
764565b840
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/views/package-home/index.vue

+ 2
- 2
src/views/package-home/index.vue View File

@@ -1,7 +1,7 @@
<!-- <!--
* @Date: 2023-02-24 14:18:25 * @Date: 2023-02-24 14:18:25
* @LastEditors: JinxChen * @LastEditors: JinxChen
* @LastEditTime: 2023-03-02 01:30:58
* @LastEditTime: 2023-03-03 17:05:44
* @FilePath: \TelpoH5FrontendWeb\src\views\package-home\index.vue * @FilePath: \TelpoH5FrontendWeb\src\views\package-home\index.vue
* @description: * @description:
--> -->
@@ -37,7 +37,7 @@ export default {
checkImei() { checkImei() {
let reqBody = { let reqBody = {
imei: this.params.imei, imei: this.params.imei,
iccid: this.params.imei || ''
iccid: this.params.iccid || ''
}; };
APIWx.CheckImei(reqBody).then(res =>{ APIWx.CheckImei(reqBody).then(res =>{
console.log("checkImei", res); console.log("checkImei", res);


Loading…
Cancel
Save