From 7464567b057664c3e8ea9386cbfcdc6f774fcf0e Mon Sep 17 00:00:00 2001
From: hanbaoshan <hanbaoshan@aiotlink.com>
Date: 星期五, 09 十月 2020 14:08:41 +0800
Subject: [PATCH] 系统设置-集群管理退出集群清空历史集群,修改密码限制条件

---
 src/pages/search/index/main.ts |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/pages/search/index/main.ts b/src/pages/search/index/main.ts
index 40f7ec6..1d444e1 100644
--- a/src/pages/search/index/main.ts
+++ b/src/pages/search/index/main.ts
@@ -1,29 +1,29 @@
 import Vue from 'vue';
-import App from './App.vue'
-import "../../../assets/css/common.scss"
-
+import ElementUI from 'element-ui';
+import preview from 'vue-photo-preview'
 import moment from "moment";
+import * as VueWindow from "@hscmap/vue-window";
+import App from './App.vue';
+import Mixin from "./mixins";
+
+import 'element-ui/lib/theme-chalk/index.css';
+import "@/assets/css/element-variables.scss";
+import 'vue-photo-preview/dist/skin.css'
+//import "../../../assets/css/common.scss"
+
 Vue.prototype.$moment = moment;
 
-import Mixin from "./mixins";
 Vue.mixin(Mixin);
 
-import ElementUI from 'element-ui';
-import "@/assets/css/element-variables.scss";
-import 'element-ui/lib/theme-chalk/index.css';
 Vue.use(ElementUI)
 
-import preview from 'vue-photo-preview'
-import 'vue-photo-preview/dist/skin.css'
 Vue.use(preview)
 
-import * as VueWindow from "@hscmap/vue-window";
 Vue.use(VueWindow);
 
 Vue.filter('moment', function (value, formatString) {
   formatString = formatString || 'YYYY-MM-DD HH:mm:ss';
   return moment(value).format(formatString);
-
 });
 
 export default Vue.prototype.bus = new Vue({

--
Gitblit v1.8.0