Commit f7ddfb24 by 林家欣

Merge branch 'master' of https://gitee.com/gs1-office-web-sit/gs1

parents 29a393eb 21a170e8
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
"v-clipboard": "^2.2.2", "v-clipboard": "^2.2.2",
"vue": "^2.6.11", "vue": "^2.6.11",
"vue-baidu-map": "^0.21.22", "vue-baidu-map": "^0.21.22",
"vue-puzzle-vcode": "^1.1.9",
"vue-router": "^3.1.6", "vue-router": "^3.1.6",
"vue-slick-carousel": "^1.0.6", "vue-slick-carousel": "^1.0.6",
"vue-social-share": "^0.0.3", "vue-social-share": "^0.0.3",
......
...@@ -7,7 +7,13 @@ ...@@ -7,7 +7,13 @@
<script> <script>
export default { export default {
mounted() { mounted() {
if (!!window.ActiveXObject || 'ActiveXObject' in window) { function checkIE () {
if(!!window.ActiveXObject || 'ActiveXObject' in window){
return true
}
return '-ms-scroll-limit' in document.documentElement.style && '-ms-ime-align' in document.documentElement.style
}
if (checkIE()) {
window.addEventListener('hashchange', () => { window.addEventListener('hashchange', () => {
let currentPath = window.location.hash.slice(1) let currentPath = window.location.hash.slice(1)
if (this.$route.path !== currentPath) { if (this.$route.path !== currentPath) {
......
...@@ -44,6 +44,7 @@ export default { ...@@ -44,6 +44,7 @@ export default {
}, },
data() { data() {
return { return {
loginInfo: {}, loginInfo: {},
query: {}, query: {},
showUnCheck: false, showUnCheck: false,
......
...@@ -308,7 +308,7 @@ ...@@ -308,7 +308,7 @@
id="image" id="image"
lazy lazy
fit="scale-down" fit="scale-down"
style="width: 90%; margin:0 5%" style="width: 10px;height:10px;opacity:0"
:src="imagePreview.url" :src="imagePreview.url"
:preview-src-list="imagePreview.srcList"> :preview-src-list="imagePreview.srcList">
</el-image> </el-image>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<SubNav/> <SubNav/>
</div> </div>
<div class="col-lg-9"> <div class="col-lg-9">
<router-view></router-view> <router-view :key="$route.fullPath"></router-view>
</div> </div>
</div> </div>
</div> </div>
...@@ -205,6 +205,7 @@ export default { ...@@ -205,6 +205,7 @@ export default {
name: "企业实名认证变更", name: "企业实名认证变更",
index: 1, index: 1,
link: "/MyManage/admin/check?type=change&status=3", link: "/MyManage/admin/check?type=change&status=3",
}, },
], ],
} }
......
...@@ -267,7 +267,8 @@ ...@@ -267,7 +267,8 @@
</template> </template>
<script> <script>
import Vcode from "vue-puzzle-vcode"; // import Vcode from "vue-puzzle-vcode";
import Vcode from "../../components/VerifyCode/VerifyCode.vue";
import validation from "@/views/Search/validation"; import validation from "@/views/Search/validation";
import pagination from "@/views/Search/pagination"; import pagination from "@/views/Search/pagination";
import moment from "moment"; import moment from "moment";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment