Showing
5 changed files
with
7 additions
and
7 deletions
File moved
| ... | @@ -13,10 +13,10 @@ | ... | @@ -13,10 +13,10 @@ |
| 13 | <div style="display:flex;padding:10px 20px"> | 13 | <div style="display:flex;padding:10px 20px"> |
| 14 | <el-button icon="el-icon-search" type="primary" :loading="loading" size="small" @click="selection(1)">查 询 | 14 | <el-button icon="el-icon-search" type="primary" :loading="loading" size="small" @click="selection(1)">查 询 |
| 15 | </el-button> | 15 | </el-button> |
| 16 | - <el-button icon="el-icon-plus" type="primary" size="small" v-hasPermi="['system:goodsStation:add']" | 16 | + <el-button icon="el-icon-plus" type="primary" size="small" v-hasPermi="['base:goodsStation:add']" |
| 17 | @click="add">新 增 | 17 | @click="add">新 增 |
| 18 | </el-button> | 18 | </el-button> |
| 19 | - <el-button icon="el-icon-delete" type="danger" size="small" v-hasPermi="['system:goodsStation:delete']" | 19 | + <el-button icon="el-icon-delete" type="danger" size="small" v-hasPermi="['base:goodsStation:delete']" |
| 20 | style="margin-left:10px" :disabled="checkData.length==0" @click="batchDel"> | 20 | style="margin-left:10px" :disabled="checkData.length==0" @click="batchDel"> |
| 21 | 删 除 | 21 | 删 除 |
| 22 | </el-button> | 22 | </el-button> |
| ... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
| 25 | </el-button> | 25 | </el-button> |
| 26 | <el-upload action="/caPreReviewImport/importFlight" name="file" :http-request="uploadExcel" | 26 | <el-upload action="/caPreReviewImport/importFlight" name="file" :http-request="uploadExcel" |
| 27 | :on-remove="handleRemove" :limit="1" :on-exceed="handleExceed" :file-list="fileList" accept=".xlsx" | 27 | :on-remove="handleRemove" :limit="1" :on-exceed="handleExceed" :file-list="fileList" accept=".xlsx" |
| 28 | - class="upload-demo"> | 28 | + class="upload-demo" v-hasPermi="['base:goodsStation:add']"> |
| 29 | <el-button type="primary" icon="el-icon-upload2" size="small">导入Excel</el-button> | 29 | <el-button type="primary" icon="el-icon-upload2" size="small">导入Excel</el-button> |
| 30 | </el-upload> | 30 | </el-upload> |
| 31 | </div> | 31 | </div> |
| ... | @@ -38,7 +38,7 @@ | ... | @@ -38,7 +38,7 @@ |
| 38 | <el-table-column label="操作" align="center"> | 38 | <el-table-column label="操作" align="center"> |
| 39 | <template slot-scope="scope"> | 39 | <template slot-scope="scope"> |
| 40 | <el-button size="mini" type="text" icon="el-icon-delete" style="color:#ff4949" | 40 | <el-button size="mini" type="text" icon="el-icon-delete" style="color:#ff4949" |
| 41 | - v-hasPermi="['system:goodsStation:delete']" @click="del(scope.row)">删除</el-button> | 41 | + v-hasPermi="['base:goodsStation:delete']" @click="del(scope.row)">删除</el-button> |
| 42 | </template> | 42 | </template> |
| 43 | </el-table-column> | 43 | </el-table-column> |
| 44 | </template> | 44 | </template> | ... | ... |
| ... | @@ -13,11 +13,11 @@ | ... | @@ -13,11 +13,11 @@ |
| 13 | <div style="display:flex;padding:10px 20px"> | 13 | <div style="display:flex;padding:10px 20px"> |
| 14 | <el-button icon="el-icon-search" :loading="loading" type="primary" size="small" @click="selection(1)">查 询 | 14 | <el-button icon="el-icon-search" :loading="loading" type="primary" size="small" @click="selection(1)">查 询 |
| 15 | </el-button> | 15 | </el-button> |
| 16 | - <el-button icon="el-icon-plus" type="primary" size="small" v-hasPermi="['system:goodsStationFlight:add']" | 16 | + <el-button icon="el-icon-plus" type="primary" size="small" v-hasPermi="['base:goodsStationFlight:add']" |
| 17 | @click="add">新 增 | 17 | @click="add">新 增 |
| 18 | </el-button> | 18 | </el-button> |
| 19 | <el-button icon="el-icon-delete" type="danger" size="small" style="margin:0 10px" | 19 | <el-button icon="el-icon-delete" type="danger" size="small" style="margin:0 10px" |
| 20 | - :disabled="checkData.length == 0" v-hasPermi="['system:goodsStationFlight:delete']" @click="batchDel"> | 20 | + :disabled="checkData.length == 0" v-hasPermi="['base:goodsStationFlight:delete']" @click="batchDel"> |
| 21 | 删 除 | 21 | 删 除 |
| 22 | </el-button> | 22 | </el-button> |
| 23 | </div> | 23 | </div> |
| ... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
| 30 | <el-table-column label="操作" align="center"> | 30 | <el-table-column label="操作" align="center"> |
| 31 | <template slot-scope="scope"> | 31 | <template slot-scope="scope"> |
| 32 | <el-button size="mini" type="text" icon="el-icon-delete" style="color:#ff4949" | 32 | <el-button size="mini" type="text" icon="el-icon-delete" style="color:#ff4949" |
| 33 | - v-hasPermi="['system:goodsStationFlight:delete']" @click="del(scope.row)">删除</el-button> | 33 | + v-hasPermi="['base:goodsStationFlight:delete']" @click="del(scope.row)">删除</el-button> |
| 34 | </template> | 34 | </template> |
| 35 | </el-table-column> | 35 | </el-table-column> |
| 36 | </template> | 36 | </template> | ... | ... |
-
Please register or login to post a comment