...
|
...
|
@@ -97,7 +97,23 @@ export default { |
|
|
renderHeader(h, params) { //eslint-disable-line
|
|
|
return (
|
|
|
<div>
|
|
|
<span class="table-header-req">{params.column.title}<example-pop></example-pop></span>
|
|
|
<span class="table-header-req">
|
|
|
{params.column.title}
|
|
|
<poptip trigger="hover" placement="right-start">
|
|
|
<icon type="help-circled"></icon>
|
|
|
<div class="example-pop" slot="content">
|
|
|
<div class="title">
|
|
|
图片尺寸建议 1050*1400,不大于 500KB 。
|
|
|
</div>
|
|
|
|
|
|
<div class="title">
|
|
|
色卡图片会被自动设置为商品的正面图片,要求必须拍摄商品正面照,且图片底色为 <strong>F5F7F6</strong> 。
|
|
|
</div>
|
|
|
|
|
|
<div class="text-center"><img class="image" /></div>
|
|
|
</div>
|
|
|
</poptip>
|
|
|
</span>
|
|
|
</div>
|
|
|
);
|
|
|
}
|
...
|
...
|
@@ -118,7 +134,18 @@ export default { |
|
|
return null;
|
|
|
},
|
|
|
renderHeader(h) { //eslint-disable-line
|
|
|
return <span>款型编码</span>;
|
|
|
return (
|
|
|
<div>
|
|
|
<span>款型编码
|
|
|
<poptip trigger="hover" placement="right-start">
|
|
|
<icon type="help-circled"></icon>
|
|
|
<div slot="content">
|
|
|
<span>入库识别码填写规范</span><a href="/instore_code_rule.pdf">下载</a>
|
|
|
</div>
|
|
|
</poptip>
|
|
|
</span>
|
|
|
</div>
|
|
|
);
|
|
|
}
|
|
|
},
|
|
|
{
|
...
|
...
|
@@ -395,4 +422,28 @@ export default { |
|
|
padding: 10px;
|
|
|
}
|
|
|
|
|
|
.example-pop {
|
|
|
padding: 10px;
|
|
|
|
|
|
.title {
|
|
|
color: #c90;
|
|
|
width: 155px;
|
|
|
white-space: normal;
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
|
|
|
.text-center {
|
|
|
text-align: center;
|
|
|
}
|
|
|
|
|
|
.image {
|
|
|
width: 100px;
|
|
|
height: 134px;
|
|
|
background-image: url(../../statics/images/example/1.png);
|
|
|
}
|
|
|
|
|
|
.ivu-poptip-body {
|
|
|
padding: 8px 16px;
|
|
|
}
|
|
|
}
|
|
|
</style> |
...
|
...
|
|