Quellcode durchsuchen

产权交易

rongxin_prod
庞东旭 vor 2 Jahren
Ursprung
Commit
f196f8d96e
3 geänderte Dateien mit 29 neuen und 12 gelöschten Zeilen
  1. +27
    -10
      src/utils/request.js
  2. +1
    -1
      src/views/sunVillage_info/list_signature.vue
  3. +1
    -1
      src/views/user/signature/signatureList.vue

+ 27
- 10
src/utils/request.js Datei anzeigen

@@ -61,6 +61,7 @@ service.interceptors.response.use(res => {
const code = res.data.code || 200;
// 获取错误信息
const msg = errorCode[code] || res.data.msg || errorCode['default']

if (code === 401) {
Dialog.confirm({
title: '系统提示',
@@ -81,25 +82,41 @@ service.interceptors.response.use(res => {

if (window.location.href.indexOf('/lawEnforcement') != -1) {
window.location.href = '/lawEnforcement/login';
} else if (window.location.href.indexOf('/authenticRight') != -1) {
return;
}
if (window.location.href.indexOf('/authenticRight') != -1) {
window.location.href = '/authenticRight/login';
} else if (window.location.href.indexOf('/homesteadSurvey') != -1) {
return;
}
if (window.location.href.indexOf('/homesteadSurvey') != -1) {
window.location.href = '/homesteadLogin';
} else if (window.location.href.indexOf('/onlineHome') != -1) {
return;
}
if (window.location.href.indexOf('/onlineHome') != -1) {
window.location.href = '/zjdLogin';
} else if (window.location.href.indexOf('/yinnong') != -1) {
return;
}
if (window.location.href.indexOf('/yinnong') != -1) {
window.location.href = '/yinnongLogin';
} else if (window.location.href.indexOf('/sunVillage_info/') != -1) {
return;
}
if (window.location.href.indexOf('/sunVillage_info/') != -1) {
window.location.href = '/sunVillage_info/login';
} else if (window.location.href.indexOf('/sunVillage') != -1) {
return;
}
if (window.location.href.indexOf('/sunVillage') != -1) {
window.location.href = '/sunVillage/login';
} else if (window.location.href.indexOf('/homestead/') != -1) {
return;
}
if (window.location.href.indexOf('/homestead/') != -1) {
window.location.href = '/homestead/login';
}else if (window.location.href.indexOf('/agriculturalTrusteeship') != -1){
return;
}
if (window.location.href.indexOf('/agriculturalTrusteeship') != -1){
window.location.href = '/agriculturalTrusteeship/login';
} else {
window.location.href = '/login';
return;
}
window.location.href = '/login';
})
})
} else if (code === 500) {


+ 1
- 1
src/views/sunVillage_info/list_signature.vue Datei anzeigen

@@ -45,7 +45,7 @@
<p>预览</p>
</div>
<div class="opera_btn" v-if="item.signingMode == '线上' && item.isArchive == '是' ">
<a :href="'/api/profile/download/'+item.contractPdf" style="color: #333333">
<a :href="'/api/profile/download/'+item.contractPdf" download style="color: #333333">
<img src="../../assets/images/sunVillage_info/signature_icon_04.png" alt="" width="35">
<p>电子合同</p>
</a>


+ 1
- 1
src/views/user/signature/signatureList.vue Datei anzeigen

@@ -44,7 +44,7 @@
<p>预览</p>
</div>
<div class="opera_btn" v-if="item.signingMode == '线上' && item.isArchive == '是' ">
<a :href="'/api/profile/download'+item.contractPdf" style="color: #333333">
<a :href="'/api/profile/download'+item.contractPdf" download style="color: #333333">
<img src="../../../assets/images/sunVillage_info/signature_icon_04.png" alt="" width="35">
<p>电子合同</p>
</a>


Laden…
Abbrechen
Speichern