添加相似和推荐功能

This commit is contained in:
2023-06-14 19:10:31 +08:00
parent c1438af1e4
commit 2019e15b7a
13 changed files with 715 additions and 91 deletions

View File

@@ -51,11 +51,14 @@
</template>
</el-table-column>
<el-table-column prop="createTime" label="创建时间" width="180"></el-table-column>
<el-table-column label="操作" width="100">
<el-table-column label="操作" width="150">
<template slot-scope="scope">
<el-button @click.native.prevent="modifyRow(scope.row)" type="text" size="small">
编辑
</el-button>
<el-button @click.native.prevent="similarItem(scope.row)" type="text" size="small">
相似条目
</el-button>
<el-button @click.native.prevent="removeRow(scope.row)" type="text" size="small">
删除
</el-button>
@@ -180,6 +183,10 @@ export default {
},
mounted() {
_this = this;
let _qo = _this.$route.query.qo;
if (_qo) {
_this.qo = JSON.parse(_qo);
}
_this.queryData();
},
methods: {
@@ -202,6 +209,14 @@ export default {
_this.qo.pageNo = val;
_this.queryData();
},
similarItem(item) {
_this.$router.push({
path: "similarItem", query: {
itemId: item.fid,
qo: JSON.stringify(_this.qo)
}
});
},
removeRow(item) {
_this.$confirm('此操作将永久删除记录, 是否继续?', '提示', {
confirmButtonText: '确定',