jinhui.wang

bug修复

...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
24 @click="add">新 增 24 @click="add">新 增
25 </el-button> 25 </el-button>
26 <el-button icon="el-icon-delete" type="danger" size="small" v-hasPermi="['base:goodsStation:delete']" 26 <el-button icon="el-icon-delete" type="danger" size="small" v-hasPermi="['base:goodsStation:delete']"
27 - style="margin-left:10px" :disabled="checkData.length==0" @click="batchDel"> 27 + style="margin-left:10px" :disabled="checkData.length == 0" @click="batchDel">
28 删 除 28 删 除
29 </el-button> 29 </el-button>
30 <el-button type="primary" icon="el-icon-download" size="small" style="margin-right:10px" 30 <el-button type="primary" icon="el-icon-download" size="small" style="margin-right:10px"
...@@ -34,9 +34,9 @@ ...@@ -34,9 +34,9 @@
34 @click="downloadExcel"> 34 @click="downloadExcel">
35 导出Excel 35 导出Excel
36 </el-button> 36 </el-button>
37 - <el-upload action="/caPreReviewImport/importFlight" name="file" :http-request="uploadExcel" 37 + <el-upload action="/goods/importGoods" name="file" :http-request="uploadExcel" :on-remove="handleRemove"
38 - :on-remove="handleRemove" :limit="1" :on-exceed="handleExceed" :file-list="fileList" accept=".xlsx" 38 + :limit="1" :on-exceed="handleExceed" :file-list="fileList" accept=".xlsx" class="upload-demo"
39 - class="upload-demo" v-hasPermi="['base:goodsStation:add']"> 39 + v-hasPermi="['base:goodsStation:add']">
40 <el-button type="primary" icon="el-icon-upload2" size="small">导入Excel</el-button> 40 <el-button type="primary" icon="el-icon-upload2" size="small">导入Excel</el-button>
41 </el-upload> 41 </el-upload>
42 </div> 42 </div>
......