|
@@ -11,6 +11,15 @@
|
|
|
size="medium"
|
|
|
/>
|
|
|
</span>
|
|
|
+ <span>
|
|
|
+ <span>刀具号:</span>
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.model.cutterT"
|
|
|
+ :placeholder="$t('common.pleaseEnter')"
|
|
|
+ style="width: 150px"
|
|
|
+ size="medium"
|
|
|
+ />
|
|
|
+ </span>
|
|
|
<span>
|
|
|
<span>刀具名:</span>
|
|
|
<el-input
|
|
@@ -116,13 +125,20 @@
|
|
|
width="80px"
|
|
|
>
|
|
|
<template slot-scope="{ row }">
|
|
|
- <el-tooltip class="item" content='修改' effect="dark" placement="top-start" v-if=" row.dkPointId!=null || row.jcPointId!=null" >
|
|
|
+ <el-tooltip class="item" content='位置管理' effect="dark" placement="top-start" v-if=" row.dkPointId!=null || row.jcPointId!=null" >
|
|
|
<i
|
|
|
- class="el-icon-edit table-operation"
|
|
|
+ class="el-icon-location-information table-operation"
|
|
|
style="color: #2db7f5;"
|
|
|
@click="edit(row)"
|
|
|
/>
|
|
|
</el-tooltip>
|
|
|
+ <el-tooltip class="item" content='删除' effect="dark" placement="top-start" >
|
|
|
+ <i
|
|
|
+ class="el-icon-delete table-operation"
|
|
|
+ style="color:crimson;"
|
|
|
+ @click="singleDelete(row)"
|
|
|
+ />
|
|
|
+ </el-tooltip>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -565,7 +581,7 @@
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- this.$confirm(this.$t("calssSchedule.tips.schedulTips"), this.$t("common.tips"), {
|
|
|
+ this.$confirm(this.$t("calssSchedule.tips.generalTips"), this.$t("common.tips"), {
|
|
|
distinguishCancelAndClose: true,
|
|
|
confirmButtonText: this.$t("common.confirm"),
|
|
|
cancelButtonText: this.$t("common.cancel"),
|
|
@@ -594,7 +610,8 @@
|
|
|
this.$refs.table.clearSelection()
|
|
|
},
|
|
|
delete (ids) {
|
|
|
- classScheduleMgrApi.remove({ ids: ids }).then(response => {
|
|
|
+ console.log("删除");
|
|
|
+ classScheduleMgrApi.deleteMore({ ids: ids }).then(response => {
|
|
|
const res = response.data
|
|
|
if (res.isSuccess) {
|
|
|
this.$message({
|