Browse Source

更新接口地址

csg6 3 weeks ago
parent
commit
42fdc90d05

+ 4 - 2
src/components/login/index.vue

@@ -44,8 +44,10 @@ export default {
44 44
 
45 45
   data () {
46 46
     return {
47
-      username: 'admin',
48
-      password: 'admin123'
47
+      // username: 'admin',
48
+      // password: 'admin123'
49
+      username: '',
50
+      password: ''
49 51
     }
50 52
   },
51 53
 

+ 3 - 7
src/config/env.development.js

@@ -1,9 +1,5 @@
1
-// 本地环境配置
1
+// 双重防御系统开发环境后台接口地址配置
2 2
 module.exports = {
3
-  // baseUrl: 'http://47.109.88.180:8080', // 项目地址
4
-
5
-  // baseApi: 'http://192.168.3.47:8090' // 本地api请求地址-zjs
6
-  // baseApi: 'http://192.168.3.142:8082' // 本地api请求地址-mtx
7
-  baseApi: 'http://192.168.3.200:8080' // 本地api请求地址-lyp
8
-  // baseApi: 'http://47.109.88.180:8080' // 测试环境api请求地址
3
+  baseApi: 'http://39.105.121.97:18080' // 服务器api请求地址
4
+  // baseApi: 'http://localhost:18080' // 本地api请求地址-lyp
9 5
 }

+ 2 - 1
src/config/env.production.js

@@ -1,7 +1,8 @@
1 1
 // 正式环境配置
2 2
 module.exports = {
3 3
   baseUrl: '', // 项目地址1
4
-  baseApi: 'http://47.109.88.180:8080' // 本地api请求地址
4
+  baseApi: 'http://39.105.121.97:18080' // 服务器api请求地址
5
+  // baseApi: 'http://localhost:8080' // 本地api请求地址
5 6
 }
6 7
 // 本地环境配置
7 8
 // module.exports = {

+ 21 - 21
src/views/home/polling/task.vue

@@ -32,27 +32,27 @@ export default {
32 32
   },
33 33
 
34 34
   mounted () {
35
-    // const nfcCode = Android.getNfcCode()
36
-    // console.log(nfcCode, '这是nfc卡号')
37
-    // if (nfcCode) {
38
-    //   register(nfcCode).then((res) => {
39
-    //     console.log('页面刷新的,重新调用列表数据了')
40
-    //     if (res.code === 200) {
41
-    //       console.log('打卡成功!!!!!')
42
-    //       this.$notify({
43
-    //         type: 'success',
44
-    //         message: res.msg,
45
-    //         duration: 1500
46
-    //       })
47
-    //     }
48
-    //   }).catch(err => {
49
-    //     console.log(err, '走到错误了')
50
-    //   })
51
-    //   this.areaList()
52
-    // }
53
-    // this.nfcTime = setInterval(() => {
54
-    //   this.getNfc()
55
-    // }, 1000)
35
+    const nfcCode = Android.getNfcCode()
36
+    console.log(nfcCode, '这是nfc卡号')
37
+    if (nfcCode) {
38
+      register(nfcCode).then((res) => {
39
+        console.log('页面刷新的,重新调用列表数据了')
40
+        if (res.code === 200) {
41
+          console.log('打卡成功!!!!!')
42
+          this.$notify({
43
+            type: 'success',
44
+            message: res.msg,
45
+            duration: 1500
46
+          })
47
+        }
48
+      }).catch(err => {
49
+        console.log(err, '走到错误了')
50
+      })
51
+      this.areaList()
52
+    }
53
+    this.nfcTime = setInterval(() => {
54
+      this.getNfc()
55
+    }, 1000)
56 56
     this.areaList()
57 57
   },
58 58
   beforeDestroy () {