diff --git a/src/views/port/port/index.vue b/src/views/port/port/index.vue
index f3109e7..ef3cf3c 100644
--- a/src/views/port/port/index.vue
+++ b/src/views/port/port/index.vue
@@ -7,21 +7,6 @@
手机号查询归属地
购买
-
-
-
-
-
-
- 测试
-
- 省份:{{this.formPhone.province}}
- 城市:{{this.formPhone.city}}
- 区号:{{this.formPhone.zip}}
- 邮编:{{this.formPhone.zip}}
- 运营商:{{this.formPhone.company}}
-
-
@@ -30,21 +15,6 @@
IP查询归属地
购买
-
-
-
-
-
-
- 测试
-
-
-
-
-
-
-
-
@@ -53,16 +23,6 @@
邮编查询
购买
-
-
-
-
-
-
- 测试
-
-
-
@@ -71,18 +31,6 @@
新闻头条
购买
-
-
-
- 测试
-
-
-
-
-
-
-
-
@@ -91,13 +39,6 @@
气象预警
购买
-
-
-
- 测试
-
-
-
@@ -106,13 +47,6 @@
生辰助手
购买
-
-
-
- 测试
-
-
-
@@ -132,21 +66,7 @@ export default {
data() {
//这里存放数据"
- return {
- dialogFormVisible:false,
- dialogFormVisible1:false,
- formPhone:{
- province:"",
- city:"",
- address:"",
- zip:"",
- company:"",
- tel:"",
- },
- formIP:{
-
- }
- };
+ return {};
},
//计算属性 类似于data概念",
computed: {},
@@ -154,15 +74,7 @@ export default {
watch: {},
//方法集合",
methods: {
- textPhone(){
- getPhonePlace(this.formPhone.tel).then((res)=>{
- this.formPhone.province = res.data.province;
- this.formPhone.city = res.data.city;
- this.formPhone.address = res.data.address;
- this.formPhone.zip = res.data.zip;
- this.formPhone.company = res.data.company;
- })
- }
+
},
//生命周期 - 创建完成(可以访问当前this实例)",
created() {