mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-11-16 23:53:48 +08:00
Merge branch 'sit-Leung' into sit-jiamin-v2
This commit is contained in:
@@ -5,5 +5,14 @@
|
||||
</head>
|
||||
<body {{ BODY_ATTRS }}>
|
||||
{{ APP }}
|
||||
<script>
|
||||
var _hmt = _hmt || [];
|
||||
(function() {
|
||||
var hm = document.createElement("script");
|
||||
hm.src = "https://hm.baidu.com/hm.js?17dd7dc6178678861e478d02b7a8182e";
|
||||
var s = document.getElementsByTagName("script")[0];
|
||||
s.parentNode.insertBefore(hm, s);
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -105,7 +105,8 @@
|
||||
@click="selectproduce(item)"
|
||||
>
|
||||
<div class="rc-rccontair">
|
||||
<img :src="item.picture" alt="" />
|
||||
<img :src="item.picture" v-if="(item.picture && item.picture.length>0)" alt="" />
|
||||
<img src="/images/default.jpg" v-if="(!item.picture || item.picture.length<=0)" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="rc-column">
|
||||
|
||||
@@ -113,7 +113,8 @@
|
||||
@click="selectproduce(item)"
|
||||
>
|
||||
<div class="rc-rccontair">
|
||||
<img :src="item.picture" alt="" />
|
||||
<img :src="item.picture" v-if="(item.picture && item.picture.length>0)" alt="" />
|
||||
<img src="/images/default.jpg" v-if="(!item.picture || item.picture.length<=0)" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="rc-column">
|
||||
|
||||
Reference in New Issue
Block a user