Browse Source

bug修改2

xu 2 months ago
parent
commit
ce4d7dc195
6 changed files with 3 additions and 9 deletions
  1. 1 1
      .env.development
  2. 1 1
      .env.production
  3. 0 4
      src/App.vue
  4. 0 1
      src/comm/deviceLoopReplayTimeSet.vue
  5. 0 1
      src/comm/deviceReplayTimeSet.vue
  6. 1 1
      vite.config.js

+ 1 - 1
.env.development

@@ -11,4 +11,4 @@ VITE_EDITOR = webstorm
 
 // VITE_EDITOR = webstorm 如果使用webstorm开发且要使用dom定位到代码行功能 请先自定添加 webstorm到环境变量 再将VITE_EDITOR值修改为webstorm
 // 如果使用docker-compose开发模式,设置为下面的地址或本机主机IP
-// VITE_BASE_PATH = http://106.52.134.22
+//VITE_BASE_PATH = http://106.52.134.22

+ 1 - 1
.env.production

@@ -5,4 +5,4 @@ VITE_SERVER_PORT = 443
 VITE_BASE_API = /api
 VITE_FILE_API = /api
 #下方修改为你的线上ip
-VITE_BASE_PATH = http://110.40.223.170
+VITE_BASE_PATH = http://106.52.134.22

+ 0 - 4
src/App.vue

@@ -335,7 +335,6 @@ const addDevice = () => {
 
 // sn不能重复
 const isRepeatSn = (sn) => {
-  console.log(sn)
   for (let i = 0; i < regionData.value.length; i++) {
     for (let j = 0; j < regionData.value[i].devices.length; j++) {
       if (regionData.value[i].devices[j].sn === sn) {
@@ -407,7 +406,6 @@ const switchLoop = async(val) => {
   val.state = val.state === 1 ? 0 : 1
 
   await deviceLoopSwitch(val).then(res => {
-    console.log(res)
     // 开关回路
     if (res.msg === "设备连接丢失") {
       ElMessage.error("设备离线")
@@ -425,7 +423,6 @@ const switchDevice = async(val, state) => {
     device: val,
     state: state
   }).then(res => {
-    console.log(res)
     // 开关设备
     for (let i = 0; i < val.deviceLoops.length; i++) {
       val.deviceLoops[i].state = state
@@ -471,7 +468,6 @@ const batchDeviceSwitch = async (state) => {
 const selectedDevices = ref([])
 const handleSelectionChange = (val) => {
   selectedDevices.value = val
-  console.log(val)
   // 选中设备
 }
 

+ 0 - 1
src/comm/deviceLoopReplayTimeSet.vue

@@ -145,7 +145,6 @@ const enterDialogTime = async() => {
   selectedDevices.value[0].deviceLoops[s.value-1].timeCondition2OnTime = formDataTime.timeCondition2OnTime
   selectedDevices.value[0].deviceLoops[s.value-1].timeCondition2OffTime = formDataTime.timeCondition2OffTime
 
-  console.log(formDataTime)
   emit('save')
 
   ElMessage({

+ 0 - 1
src/comm/deviceReplayTimeSet.vue

@@ -132,7 +132,6 @@ const enterDialogTime = async() => {
     }
   }
 
-  console.log(formDataTime)
   emit('save')
 
   ElMessage({

+ 1 - 1
vite.config.js

@@ -16,7 +16,7 @@ export default defineConfig({
         // port: 4000,
         proxy: {
             '/api': {
-                target: 'http://192.168.110.218:8222',
+                target: 'http://106.52.134.22:8222',
                 // secure: false, // 请求是否为https
                 changeOrigin: true,
                 rewrite:(path)=>path.replace(/^\/api/,'') //api替换为'',