9fe8e3f8 by lihua

解决数据产品报错弹框问题

1 parent 28b63592
...@@ -203,6 +203,11 @@ service.interceptors.response.use( ...@@ -203,6 +203,11 @@ service.interceptors.response.use(
203 }) 203 })
204 } 204 }
205 break 205 break
206 case 504:
207 if (error.response.data?.msg) {
208 ElMessage.error(error.response.data?.msg);
209 }
210 break
206 default: 211 default:
207 if (error.response.data.error == "invalid_grant") { 212 if (error.response.data.error == "invalid_grant") {
208 ElMessage({ 213 ElMessage({
......
...@@ -419,7 +419,7 @@ const handleUploadClose = (itemGuid) => { ...@@ -419,7 +419,7 @@ const handleUploadClose = (itemGuid) => {
419 </div> 419 </div>
420 <div class="label-main"> 420 <div class="label-main">
421 <div class="dataLabel" v-if="item.damTypeName">{{ item.damTypeName }}</div> 421 <div class="dataLabel" v-if="item.damTypeName">{{ item.damTypeName }}</div>
422 <div class="dataLabel" v-show="item.subjectDomain" style="margin-left: 4px;">{{ item.subjectDomainName || item.subjectDomain || '--' }}</div> 422 <div class="dataLabel" v-show="item.domainName" style="margin-left: 4px;">{{ item.domainName || '--' }}</div>
423 </div> 423 </div>
424 </div> 424 </div>
425 <div class="v-middle"> 425 <div class="v-middle">
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!