Quellcode durchsuchen

页面展示bug处理

oyq28 vor 3 Jahren
Ursprung
Commit
dcc1fdac66

+ 1 - 1
imcs-ui/src/layout/index.vue

@@ -87,7 +87,7 @@ export default {
                   let url = data.taskNodeId ? "#/dispatchMgr/exception":"#/developer/warnLong";
                   let content = "<a href='"+url+"'>"+(data.resourceName? "["+ data.resourceName +"] " : "" )+(data.procedureName? data.procedureName : "")
                    + (data.instructionName? "("+data.instructionName+")" : "") + msg+"</a>";                  
-                  this.$notification.error(content, { messageIsHTML: true, timer:60, title:"异常警报", showCloseIcn:true });
+                  this.$notification.error(content, { messageIsHTML: true, timer:10, title:"异常警报", showCloseIcn:true });
               })
           });
         }

+ 2 - 2
imcs-ui/src/views/zuihou/largeScreen/twoDatasModel/Index.vue

@@ -200,7 +200,7 @@
 		  		<table class="tableBorder" border="0" cellspacing="0" cellpadding="0" >
   					<tr>
   						<th>订单号</th>
-  						<th width="80">客户</th>
+  						<th width="80" v-show="false">客户</th>
   						<th width="60">零件数量</th>
   						<th width="50">已生产</th>
   						<th>交付时间</th>
@@ -208,7 +208,7 @@
   					</tr>
   					<tr v-for="(item, index) in diaoduList" :key="index">
   						<td style="word-wrap: break-word;word-break: break-all;width:80px;">{{ item.orderNo }}</td>
-  						<td style="min-width:30px;">{{ item.custDesc }}</td>
+  						<td style="min-width:30px;" v-show="false" >{{ item.custDesc }}</td>
   						<td>{{ item.productNum }}</td>
   						<td v-if="item.completeNum">{{ item.completeNum}}</td>
 						<td v-else>0</td>