Commit 5a66f709 by xue_wengang

可疑线索

parent 0a7948e1
<template>
<div id="detail">
<div class="groupTitleBox">
<span class="groupTitle">{{ propTitle }}</span>
</div>
<div class="detail_content">
</div>
</div>
</template>
<script>
export default {
name: "detail",
data() {
return {};
},
created() {},
methods: {},
};
</script>
<style scoped lang="scss">
.detail_content{
background: #ffffff;
}
.groupTitleBox {
height: 48px;
display: flex;
flex-wrap: wrap;
align-items: center;
background: #ffffff;
border-radius: 8px 8px 0 0;
.groupTitle {
height: 48px;
font-size: 16px;
font-family: Microsoft YaHei;
border-bottom: 1px solid #e4e4e4;
font-weight: bold;
line-height: 48px;
color: #363636;
opacity: 1;
padding-left: 20px;
width: 100%;
}
}
</style>
......@@ -1731,7 +1731,7 @@ $-header-fontSize: 18px;
flex-wrap: wrap;
align-items: center;
background: #ffffff;
border-radius: 8px 0 0 0;
border-radius: 8px 8px 0 0;
.groupTitle {
height: 48px;
font-size: 16px;
......
......@@ -25,25 +25,6 @@
ref="menu"
router
>
<!-- <el-submenu index="1" id="menu2">
<template slot="title">
<i :class="leftMenus[0].className"></i>
<span slot="title" style="color: #343a3f !important">{{
leftMenus[0].label
}}</span>
</template>
<el-menu-item
:index="item.index"
v-for="(item, index) in leftMenus[0].children"
:key="index"
><i
class="iconfont iconquanxianjiesuo"
style="float: right"
v-show="item.disabled"
></i
>{{ item.label }}</el-menu-item
>
</el-submenu> -->
<el-menu-item
:index="item.index"
v-for="(item, index) in leftMenus"
......@@ -66,7 +47,6 @@
<el-breadcrumb-item>刑嫌对象信息管理</el-breadcrumb-item>
<el-breadcrumb-item>新增关注人员</el-breadcrumb-item>
</el-breadcrumb>
<router-view />
</div>
<div v-else>
<el-tabs
......@@ -81,9 +61,9 @@
:key="item.id"
>
</el-tab-pane>
<router-view />
</el-tabs>
</div>
<router-view />
</div>
</div>
</div>
......
......@@ -52,7 +52,7 @@ axios.interceptors.response.use(
window.location.host.length - 5
);
var self = this
if (status == "202") {
if (status == "401") {
MessageBox.confirm("系统登录超时,请重新登录", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
......@@ -104,6 +104,31 @@ instance.interceptors.response.use(
response => {
const status = response.data.code;
const message = response.data.message;
var relUrlIp = window.location.host.substring(
0,
window.location.host.length - 5
);
var self = this
if (status == "401") {
MessageBox.confirm("系统登录超时,请重新登录", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
if(relUrlIp =='47.92.225.109' ){
// window.open('http://47.92.225.109:8300/#/login', '_blank')
window.location.href = 'http://47.92.225.109:8300/#/login';
}else if(relUrlIp =='26.3.13.120'){
window.location.href = 'http://26.3.13.120:8050/#/login';
}else if(relUrlIp =='10.142.16.177'){
window.location.href = 'http://10.142.16.177:8050/#/login';
} else{
// window.open('http://localhost:8080/#/login', '_blank')
window.location.href = 'http://localhost:8080/#/login';
}
})
}
if (status < 0) {
Message({
message: message,
......
......@@ -10,7 +10,7 @@
<script>
import formCompontent from "@c/form_compontent.vue";
import { insertZdxxgl,updateZdxxgl } from "@/api/zdxx.js";
import { insertZdxxgl,updateZdxxgl } from "@/api/zdxx/zdxxgl.js";
export default {
name: "zdxx",
components: {
......
......@@ -10,7 +10,7 @@
<script>
import formCompontent from "@c/form_compontent.vue";
import { insertZdxxgl,updateZdxxgl } from "@/api/zdxx.js";
import { insertZdxxgl,updateZdxxgl } from "@/api/zdxx/zdxxgl.js";
export default {
name: "zdxx",
components: {
......
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