diff --git a/.env.development b/.env.development
index 41c0621..56c364c 100644
--- a/.env.development
+++ b/.env.development
@@ -1,10 +1,10 @@
VUE_APP_MODE=development
VUE_APP_NODE_ENV=development
VUE_APP_SCENE=wisdomcar
-VUE_APP_BASE_URL=http://test.tall.wiki/
-VUE_APP_API_URL=http://test.tall.wiki/gateway
+VUE_APP_BASE_URL=http://www.tall.wiki/
+VUE_APP_API_URL=http://www.tall.wiki/gateway
VUE_APP_PROXY_URL=/gateway
VUE_APP_PUBLIC_PATH=/wisdomcar
-VUE_APP_MSG_URL=wss://test.tall.wiki/websocket/message/v4.0/ws
+VUE_APP_MSG_URL=wss://www.tall.wiki/websocket/message/v4.0/ws
VUE_APP_TITLE=盐湖区人民医院数字看板
-VUE_APP_DESCRIPTION=盐湖区人民医院数字看板
+VUE_APP_DESCRIPTION=盐湖区人民医院数字看板s
diff --git a/.env.production b/.env.production
index bcc19d6..9fd34d3 100644
--- a/.env.production
+++ b/.env.production
@@ -1,10 +1,10 @@
VUE_APP_MODE=production
VUE_APP_NODE_ENV=production
VUE_APP_SCENE=wisdomcar
-VUE_APP_BASE_URL=http://test.tall.wiki/
-VUE_APP_API_URL=http://test.tall.wiki/gateway
+VUE_APP_BASE_URL=http://www.tall.wiki/
+VUE_APP_API_URL=http://www.tall.wiki/gateway
VUE_APP_PROXY_URL=/gateway
VUE_APP_PUBLIC_PATH=/wisdomcar
-VUE_APP_MSG_URL=wss://test.tall.wiki/websocket/message/v4.0/ws
+VUE_APP_MSG_URL=wss://www.tall.wiki/websocket/message/v4.0/ws
VUE_APP_TITLE=盐湖区人民医院数字看板
VUE_APP_DESCRIPTION=盐湖区人民医院数字看板
diff --git a/src/config/api.js b/src/config/api.js
index 4c14e17..eba99ef 100644
--- a/src/config/api.js
+++ b/src/config/api.js
@@ -3,18 +3,15 @@
* @email: binbin0314@126.com
* @Date: 2021-06-05 12:16:54
* @LastEditors: aBin
- * @LastEditTime: 2021-06-05 12:23:17
- */
-/*
- * Copyright (c) 2019.
- * author: wally
- * email: 18603454788@163.com
+ * @LastEditTime: 2021-07-05 09:55:21
*/
+
import axios from 'axios';
let { proxyUrl, msgUrl } = require('@/config/setting');
-const wisdomcar = `${proxyUrl}/wisdomcar2`; // 盐湖医院分路径
+const wisdomcar = `${proxyUrl}/wisdomcar`; // 盐湖医院分路径
const statistics = `${wisdomcar}/statistics`; // 盐湖医院相关接口
+const rfid = `${wisdomcar}/rfid`; // rfid增删改查界面相关
// websocket基础地址
export const WS_BASE_URL = msgUrl;
@@ -26,3 +23,21 @@ export const record = params => axios.post(`${wisdomcar}/debug/record`, params);
export const selResult = params => axios.post(`${statistics}/get/selResult`, params);
// 急救时长分析统计图数据
export const getPointTime = params => axios.post(`${statistics}/getPointTime`, params);
+
+// 环节查询
+export const queryStepList = params => axios.post(`${rfid}/queryStepList`, params);
+
+// 医院查询
+export const queryHospitalList = params => axios.post(`${rfid}/queryHospitalList`, params);
+
+// rfid删除
+export const rfidDel = params => axios.post(`${rfid}/del`, params);
+
+// rfid新增
+export const rfidSave = params => axios.post(`${rfid}/save`, params);
+
+// rfid修改
+export const rfidUpdate = params => axios.post(`${rfid}/update`, params);
+
+// rfid查询
+export const rfidQuery = params => axios.post(`${rfid}/query`, params);
diff --git a/src/router/index.js b/src/router/index.js
index bd6ac85..df150ba 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -1,3 +1,10 @@
+/*
+ * @Author: aBin
+ * @email: binbin0314@126.com
+ * @Date: 2021-06-05 12:16:54
+ * @LastEditors: aBin
+ * @LastEditTime: 2021-07-02 15:38:19
+ */
import Vue from 'vue';
import VueRouter from 'vue-router';
import Home from 'views/Index/Index.vue';
@@ -17,6 +24,12 @@ const routes = [
name: 'BtnPage',
component: () => import(/* webpackChunkName: "Index" */ 'views/BtnPage/BtnPage.vue'),
},
+ // RFID增删改查
+ {
+ path: '/RfidGauge',
+ name: 'RfidGauge',
+ component: () => import(/* webpackChunkName: "Index" */ 'views/RfidGauge/index.vue'),
+ },
];
const router = new VueRouter({
diff --git a/src/views/RfidGauge/components/Add.vue b/src/views/RfidGauge/components/Add.vue
new file mode 100644
index 0000000..f7ee67b
--- /dev/null
+++ b/src/views/RfidGauge/components/Add.vue
@@ -0,0 +1,130 @@
+
+
+
+
增加
+
+
+
+
+ {{ item.hospitalName }}
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
diff --git a/src/views/RfidGauge/components/Search.vue b/src/views/RfidGauge/components/Search.vue
new file mode 100644
index 0000000..5c89a91
--- /dev/null
+++ b/src/views/RfidGauge/components/Search.vue
@@ -0,0 +1,111 @@
+
+
+
+
+ RFID:
+
+ 名字:
+
+ 类型:
+
+ {{ item.name }}
+
+ 环节:
+
+ {{ item.name }}
+
+ 医院:
+
+ {{ item.hospitalName }}
+
+
搜索
+
+
+
+
+
+
+
diff --git a/src/views/RfidGauge/components/Table.vue b/src/views/RfidGauge/components/Table.vue
new file mode 100644
index 0000000..a62ff01
--- /dev/null
+++ b/src/views/RfidGauge/components/Table.vue
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+ {{ record.name }}
+
+ 十进制:({{ record.rfid }})
+
+ 十六进制:({{ (+record.rfid).toString(16) }})
+
+
+
+ 医生
+ 采血车
+ 门禁
+
+
+
+
+ 确定删除此项吗?
+
+ 删除
+
+
+
+
+
+
diff --git a/src/views/RfidGauge/index.vue b/src/views/RfidGauge/index.vue
new file mode 100644
index 0000000..85dce41
--- /dev/null
+++ b/src/views/RfidGauge/index.vue
@@ -0,0 +1,67 @@
+
+
+
+
+