From 51e974cb37e95a4451b8553631c9262b8a4c1ee6 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 17 Oct 2022 09:43:19 +0800
Subject: [PATCH] 当前登录页跳转到统一登录页;修复查看别的农场数据时,之前的农场图片残留的问题
---
src/views/home/index.vue | 2 +-
src/views/login/index.vue | 2 ++
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/views/home/index.vue b/src/views/home/index.vue
index e2261d8..44e037b 100644
--- a/src/views/home/index.vue
+++ b/src/views/home/index.vue
@@ -1383,7 +1383,7 @@
showDetailPopup (params) {
this.farmDetails = params
- console.log(params)
+ this.farmPicList = []
if (params.picture){
this.farmPicList = params.picture.split(",")
}
diff --git a/src/views/login/index.vue b/src/views/login/index.vue
index b8b1e3f..5ded017 100644
--- a/src/views/login/index.vue
+++ b/src/views/login/index.vue
@@ -76,6 +76,8 @@
}
},
created () {
+ //跳转到统一登录页
+ window.location.replace('http://dev.jxpskj.com:8020/ncny/login.html')
var that = this
this.newAxios = axios.create({
--
Gitblit v1.9.3