Authored by ZhongW

测试环境

... ... @@ -99,4 +99,15 @@ module.exports=function(app) {
/*通过任务ID查看任务是否被执行完*/
app.post("/product/queryBatchImportResult","basegoods_queryBatchImportResult");
/*批量*/
app.get("/supplier/baseproduct/batchSetPortal","goods.batchSetPortal.Batch",function(){
this.$extend={
moduleName:"基础商品",
pageName:"批量功能",
isPL:true
}
});
}
\ No newline at end of file
... ...
<%include '../../common/__ui/header'%>
<%include '../../common/__partail/ListHeader'%>
<%if isPL%>
<div class="contentpanel">
<div class="panel panel-default" style="margin-bottom:10px;">
<div class="panel-body">
<table class="table table-bordered">
<tr>
<td rowspan="2">展示平台</td>
<td>上传EXCEL:</td>
<td style="position: relative;"><input id="appTypeModify" name="file" data-type="" type="file" style="cursor: pointer; height: 37px; top: 8px;"></td>
</tr>
<tr>
<td>说明:</td>
<td colspan="2">
1、上传文件必须是<span style="color:red;">.xlsx</span>文件<br>
2、第一行标题栏:<span style="color: #67D267;">SKN,展示平台</span><br>
3、<a href="/ajax/link/batchModifyAppType">下载样例</a>
</td>
</tr>
</table>
</div>
<div class="panel-body red" id="message">
</div>
</div>
</div>
<%else%>
<div class="contentpanel">
<div class="panel panel-default" style="margin-bottom:10px;">
<div class="panel-body">
<div class="rows">
<div class="form-group">
<label class="col-sm-1 control-label">品牌 <span class="red">*</span></label>
<div class="col-sm-2">
<select id="brandId" class="form-control" required>
<option value="-1">选择品牌</option>
</select>
</div>
<label class="col-sm-1 control-label">管理店铺 <span class="red">*</span></label>
<div class="col-sm-2">
<select id="shopId" class="form-control">
<option value="-1">选择店铺</option>
</select>
</div>
<label class="col-sm-1 control-label">JIT供应商</label>
<div class="col-sm-2">
<select id="supplierId" class="form-control">
<option value="-1">选择JIT供应商</option>
</select>
</div>
</div>
</div>
<table class="table table-bordered">
<tr>
<td rowspan="2">基础商品</td>
<td>上传EXCEL:</td>
<td >
<div class="panel-col" style="position: relative;">
<input id="baseProduct" name="file" data-type="baseProduct" type="file" style="cursor: pointer; height: 37px; top: 8px;">
</div>
<div class="panel-col" style="line-height: 40px;position: relative;left: -60px;">
<span class="red">必须输入品牌、店铺</span>
</div>
</td>
</tr>
<tr>
<td>说明:</td>
<td colspan="2">
1、上传文件必须是<span style="color:red;">.xlsx</span>文件<br>
2、第一行标题栏:<span style="color: #67D267;">货品名称、厂家编号、一级分类、二级分类、三级分类、四级分类、性别、货品年、货品季、商品属性、吊牌价、销售价、色系、厂家颜色、款型、尺码、条码、能否补货、SKN计数,年龄层(成人,大童,中童,小童,幼童),重点款,预计上架时间、upm条码</span><br>
3、<a href="/ajax/link/baseproduct" style="margin: 0; text-decoration: underline">下载样例.xlsx</a>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="panel panel-primary-head">
<div class="panel-body red" id="message">
</div>
</div>
<%/if%>
<%include '../../common/__ui/footer'%>
\ No newline at end of file
... ...