|
@@ -15,7 +15,7 @@
|
|
|
<div class="user_info">
|
|
<div class="user_info">
|
|
|
<div class="user_title">
|
|
<div class="user_title">
|
|
|
<div class="user_name">
|
|
<div class="user_name">
|
|
|
- <span>{{enUser.enName}} <i class="fa fa-angle-down"></i></span>
|
|
|
|
|
|
|
+ <span>{{enUser.enName ? enUser.enName : '企业名称'}} <i class="fa fa-angle-down"></i></span>
|
|
|
<a :href="/store/+ storeInfo.uuid" target="_blank" v-if="storeInfo.uuid">进入店铺</a>
|
|
<a :href="/store/+ storeInfo.uuid" target="_blank" v-if="storeInfo.uuid">进入店铺</a>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="user_mes">
|
|
<div class="user_mes">
|
|
@@ -91,6 +91,13 @@
|
|
|
</tr>
|
|
</tr>
|
|
|
</tbody>
|
|
</tbody>
|
|
|
</table>
|
|
</table>
|
|
|
|
|
+ <div class="empty" v-if="!list.content || list.content.length === 0">
|
|
|
|
|
+ <img src="/images/supplier/icon/empty.png">
|
|
|
|
|
+ <div class="info">
|
|
|
|
|
+ <p>暂无物料信息</p>
|
|
|
|
|
+ <a href="javascript:history.go(-1)"><i class="fa fa-reply" style="margin-right:5px;"></i>返回上一页</a>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
<div style="float: right;background: #ecf1f1;">
|
|
<div style="float: right;background: #ecf1f1;">
|
|
|
<page :total="list.totalElements" :page-size="pageParams.count"
|
|
<page :total="list.totalElements" :page-size="pageParams.count"
|
|
|
:current="pageParams.page" v-on:childEvent="handleCurrentChange">
|
|
:current="pageParams.page" v-on:childEvent="handleCurrentChange">
|
|
@@ -621,6 +628,19 @@
|
|
|
}
|
|
}
|
|
|
.info_list{
|
|
.info_list{
|
|
|
padding-bottom:200px;
|
|
padding-bottom:200px;
|
|
|
|
|
+ .empty{
|
|
|
|
|
+ background: #ffffff;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ padding: 80px 0;
|
|
|
|
|
+ img{
|
|
|
|
|
+ vertical-align: top;
|
|
|
|
|
+ margin-right:15px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .info{
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ padding-top:10px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
table {
|
|
table {
|
|
|
table-layout: fixed;
|
|
table-layout: fixed;
|
|
|
thead{
|
|
thead{
|