Commit f059fa3d by yuhao

Merge branch 'dev_xzeq' of http://39.99.224.27:9022/changchao/founder_vue into dev_xzeq

parents 66b87ebe 25c320b9
...@@ -152,4 +152,12 @@ export const deleteXs = params => ...@@ -152,4 +152,12 @@ export const deleteXs = params =>
//线索详情 //线索详情
export const queryXs = params => export const queryXs = params =>
postform(`${base.alyIP}/hcyprw/queryXs`, params); postform(`${base.alyIP}/hcyprw/queryXs`, params);
\ No newline at end of file
//研判要素导入
export const importExcel = params =>
postform(`${base.alyIP}/hcyprw/importExcel`, params);
//研判要素导出
export const downloadExcel = params =>
post(`${base.alyIP}/hcyprw/downloadExcel`, params);
...@@ -312,7 +312,7 @@ export default { ...@@ -312,7 +312,7 @@ export default {
JSON.parse(sessionStorage.getItem('userInfo')) JSON.parse(sessionStorage.getItem('userInfo'))
.identitycard .identitycard
) )
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${this.form.zjhm}&identitycard=${idcard}` let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${this.form.zjhm}&identitycard=${idcard}`
window.open(path, '_blank') window.open(path, '_blank')
} else if (this.pages == 'hxgc') { } else if (this.pages == 'hxgc') {
// let base = encodeURIComponent( // let base = encodeURIComponent(
......
...@@ -728,7 +728,7 @@ export default { ...@@ -728,7 +728,7 @@ export default {
let idcard = encry.Encrypt( let idcard = encry.Encrypt(
JSON.parse(sessionStorage.getItem("userInfo")).identitycard JSON.parse(sessionStorage.getItem("userInfo")).identitycard
); );
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
export2Excel() { export2Excel() {
......
...@@ -729,7 +729,7 @@ export default { ...@@ -729,7 +729,7 @@ export default {
let idcard = encry.Encrypt( let idcard = encry.Encrypt(
JSON.parse(sessionStorage.getItem("userInfo")).identitycard JSON.parse(sessionStorage.getItem("userInfo")).identitycard
); );
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
......
...@@ -2539,36 +2539,36 @@ ...@@ -2539,36 +2539,36 @@
<span style="margin-right: 16px" <span style="margin-right: 16px"
v-if="scope.row.zhzt == '0'">未追回</span> v-if="scope.row.zhzt == '0'">未追回</span>
</template> </template>
<el-table-column v-if="pageBs == 'queryZw'" </el-table-column>
align="center" <el-table-column v-if="pageBs == 'queryZw'"
width="200" align="center"
label="状态"> width="200"
<template slot-scope="scope"> label="状态">
<div> <template slot-scope="scope">
<div class="rwgl_s"> <div>
<div class="rwgl_s">
<span v-if="scope.row.zzhwkbh != ''" <span v-if="scope.row.zzhwkbh != ''"
class="s_stop">可侦</span> class="s_stop">可侦</span>
<span v-if="scope.row.xyrZjhm != ''" <span v-if="scope.row.xyrZjhm != ''"
class="s_runn">可研</span> class="s_runn">可研</span>
</div>
</div> </div>
</template> </div>
</el-table-column> </template>
<el-table-column v-if="pageBs == 'queryDna'" </el-table-column>
align="center" <el-table-column v-if="pageBs == 'queryDna'"
width="200" align="center"
label="状态"> width="200"
<template slot-scope="scope"> label="状态">
<div> <template slot-scope="scope">
<div class="rwgl_s"> <div>
<div class="rwgl_s">
<span v-if="scope.row.bzajXkbh != ''" <span v-if="scope.row.bzajXkbh != ''"
class="s_stop">可侦</span> class="s_stop">可侦</span>
<span v-if="scope.row.bzrySfzh != ''" <span v-if="scope.row.bzrySfzh != ''"
class="s_runn">可研</span> class="s_runn">可研</span>
</div>
</div> </div>
</template> </div>
</el-table-column> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="pageBs == 'queryZw'" <el-table-column v-if="pageBs == 'queryZw'"
align="center" align="center"
...@@ -5145,6 +5145,7 @@ export default { ...@@ -5145,6 +5145,7 @@ export default {
}, },
}, },
mounted () { mounted () {
console.log(this.pageBs)
// if (this.menuIdPgbg == "dw") { // if (this.menuIdPgbg == "dw") {
// this.pageShow = false; // this.pageShow = false;
// } // }
......
...@@ -774,7 +774,7 @@ export default { ...@@ -774,7 +774,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
checkempty() { checkempty() {
......
...@@ -457,7 +457,7 @@ export default { ...@@ -457,7 +457,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
} else { } else {
window.open( window.open(
......
...@@ -181,7 +181,7 @@ export default { ...@@ -181,7 +181,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${obj.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${obj.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
} else { } else {
this.$router.pushToTab({ this.$router.pushToTab({
......
...@@ -176,7 +176,7 @@ export default { ...@@ -176,7 +176,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
} else { } else {
window.open( window.open(
......
...@@ -702,7 +702,7 @@ export default { ...@@ -702,7 +702,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
showDialogS(data) { showDialogS(data) {
......
...@@ -344,7 +344,7 @@ export default { ...@@ -344,7 +344,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
dele(scope) { dele(scope) {
......
...@@ -857,7 +857,7 @@ export default { ...@@ -857,7 +857,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
} else { } else {
let idcard = encry.Encrypt( let idcard = encry.Encrypt(
......
...@@ -1008,7 +1008,7 @@ export default { ...@@ -1008,7 +1008,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
showDialogS(data) { showDialogS(data) {
......
...@@ -1227,7 +1227,7 @@ export default { ...@@ -1227,7 +1227,7 @@ export default {
let idcard = encry.Encrypt( let idcard = encry.Encrypt(
JSON.parse(sessionStorage.getItem("userInfo")).identitycard JSON.parse(sessionStorage.getItem("userInfo")).identitycard
); );
let path = `${this.$baseUrl.alyIP14}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
showDialogS (data) { showDialogS (data) {
......
...@@ -1202,7 +1202,7 @@ export default { ...@@ -1202,7 +1202,7 @@ export default {
let idcard = encry.Encrypt( let idcard = encry.Encrypt(
JSON.parse(sessionStorage.getItem("userInfo")).identitycard JSON.parse(sessionStorage.getItem("userInfo")).identitycard
); );
let path = `${this.$baseUrl.alyIP14}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
showDialogS (data) { showDialogS (data) {
......
...@@ -1209,7 +1209,7 @@ export default { ...@@ -1209,7 +1209,7 @@ export default {
let idcard = encry.Encrypt( let idcard = encry.Encrypt(
JSON.parse(sessionStorage.getItem("userInfo")).identitycard JSON.parse(sessionStorage.getItem("userInfo")).identitycard
); );
let path = `${this.$baseUrl.alyIP14}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
showDialogS (data) { showDialogS (data) {
......
...@@ -332,7 +332,7 @@ export default { ...@@ -332,7 +332,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
login() { login() {
......
...@@ -212,7 +212,7 @@ export default { ...@@ -212,7 +212,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -194,7 +194,7 @@ export default { ...@@ -194,7 +194,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -209,7 +209,7 @@ export default { ...@@ -209,7 +209,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -208,7 +208,7 @@ export default { ...@@ -208,7 +208,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -209,7 +209,7 @@ export default { ...@@ -209,7 +209,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -206,7 +206,7 @@ export default { ...@@ -206,7 +206,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -207,7 +207,7 @@ export default { ...@@ -207,7 +207,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?ath=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -397,7 +397,7 @@ export default { ...@@ -397,7 +397,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -213,7 +213,7 @@ export default { ...@@ -213,7 +213,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${this.$baseUrl.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope.asjbh}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
/** /**
......
...@@ -394,7 +394,7 @@ export default { ...@@ -394,7 +394,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
} else if (scope.sfsfzxyr == '是' && type.toInfor && type.prop == 'sfsfzxyr') { // } else if (scope.sfsfzxyr == '是' && type.toInfor && type.prop == 'sfsfzxyr') { //
this.dialogVisible = true this.dialogVisible = true
......
...@@ -126,7 +126,7 @@ export default { ...@@ -126,7 +126,7 @@ export default {
JSON.parse(sessionStorage.getItem("userInfo")) JSON.parse(sessionStorage.getItem("userInfo"))
.identitycard .identitycard
); );
let path = `${base.alyIP19}/#/jump?path=/queryAjda&asjbh=${scope}&identitycard=${idcard}`; let path = `${this.$baseUrl.alyIP18}/#/jump?path=/queryAjda&asjbh=${scope}&identitycard=${idcard}`;
window.open(path, "_blank"); window.open(path, "_blank");
}, },
doQuery() { doQuery() {
......
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