|
@@ -17,14 +17,6 @@
|
|
|
@keyup.enter="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="备注" prop="remark">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.remark"
|
|
|
- placeholder="请输入备注"
|
|
|
- clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
@@ -38,7 +30,6 @@
|
|
|
plain
|
|
|
icon="Plus"
|
|
|
@click="handleAdd"
|
|
|
- v-hasPermi="['ws:workshop:add']"
|
|
|
>新增</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
@@ -48,7 +39,6 @@
|
|
|
icon="Edit"
|
|
|
:disabled="single"
|
|
|
@click="handleUpdate"
|
|
|
- v-hasPermi="['ws:workshop:edit']"
|
|
|
>修改</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
@@ -58,7 +48,6 @@
|
|
|
icon="Delete"
|
|
|
:disabled="multiple"
|
|
|
@click="handleDelete"
|
|
|
- v-hasPermi="['ws:workshop:remove']"
|
|
|
>删除</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
@@ -67,7 +56,6 @@
|
|
|
plain
|
|
|
icon="Download"
|
|
|
@click="handleExport"
|
|
|
- v-hasPermi="['ws:workshop:export']"
|
|
|
>导出</el-button>
|
|
|
</el-col>
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
@@ -75,7 +63,7 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="workshopList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="车间ID" align="center" prop="wsId" />
|
|
|
+<!-- <el-table-column label="车间ID" align="center" prop="wsId" />-->
|
|
|
<el-table-column label="车间编码" align="center" prop="wsCode" />
|
|
|
<el-table-column label="车间名称" align="center" prop="wsName" />
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|