做了几个组件

This commit is contained in:
砂糖
2025-07-18 15:25:07 +08:00
parent 1ef306f163
commit a7502dd45a
15 changed files with 1329 additions and 189 deletions

View File

@@ -32,7 +32,6 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['klp:productionLine:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
@@ -43,7 +42,6 @@
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['klp:productionLine:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
@@ -54,7 +52,6 @@
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['klp:productionLine:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
@@ -64,7 +61,6 @@
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['klp:productionLine:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
@@ -97,14 +93,12 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['klp:productionLine:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['klp:productionLine:remove']"
>删除</el-button>
</template>
</el-table-column>
@@ -324,7 +318,7 @@ export default {
},
/** 导出按钮操作 */
handleExport() {
this.download('klp/productionLine/export', {
this.download('wms/productionLine/export', {
...this.queryParams
}, `productionLine_${new Date().getTime()}.xlsx`)
},