|
|
@@ -163,6 +163,7 @@ export default {
|
|
|
single: true,
|
|
|
// 非多个禁用
|
|
|
multiple: true,
|
|
|
+ isWatch:false,
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
@@ -179,6 +180,7 @@ export default {
|
|
|
this.projectItemTotal=0;
|
|
|
// 重新请求接口获取最新数据
|
|
|
this.getList(isWatch);
|
|
|
+ this.isWatch=isWatch;
|
|
|
},
|
|
|
clickRow(row) {
|
|
|
this.$refs.dataTable.toggleRowSelection(row);
|
|
|
@@ -243,7 +245,7 @@ export default {
|
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
|
this.projectQueryParams.pageNum = 1;
|
|
|
- this.getList();
|
|
|
+ this.getList(this.isWatch);
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|