|
@@ -134,6 +134,7 @@ const search_text = ref('');
|
|
|
const search_label = ref(''); //单个card的搜索标签
|
|
const search_label = ref(''); //单个card的搜索标签
|
|
|
const search_labelId_list = ref([]); //头部的搜索标签
|
|
const search_labelId_list = ref([]); //头部的搜索标签
|
|
|
const search_mode = ref(''); //要过滤的应用类型
|
|
const search_mode = ref(''); //要过滤的应用类型
|
|
|
|
|
+const search_status = ref('1'); //要过滤的上下线状态
|
|
|
const label_list = ref([]);
|
|
const label_list = ref([]);
|
|
|
const dropdown = ref(null);
|
|
const dropdown = ref(null);
|
|
|
const visible = ref(false);
|
|
const visible = ref(false);
|
|
@@ -155,7 +156,8 @@ const getDialog = async () => {
|
|
|
pageSize: pages.pageSize,
|
|
pageSize: pages.pageSize,
|
|
|
keyword: search_text.value,
|
|
keyword: search_text.value,
|
|
|
label: search_labelId_list.value,
|
|
label: search_labelId_list.value,
|
|
|
- mode: search_mode.value
|
|
|
|
|
|
|
+ mode: search_mode.value,
|
|
|
|
|
+ status: search_status.value
|
|
|
};
|
|
};
|
|
|
const res = await getDialogListForFilter(filter_data);
|
|
const res = await getDialogListForFilter(filter_data);
|
|
|
const data = res.data.rows.map((item) => {
|
|
const data = res.data.rows.map((item) => {
|
|
@@ -336,6 +338,7 @@ bus_intelligentSearch.on((search_data) => {
|
|
|
search_text.value = search_data.searchText;
|
|
search_text.value = search_data.searchText;
|
|
|
search_labelId_list.value = search_data.target_label_list;
|
|
search_labelId_list.value = search_data.target_label_list;
|
|
|
search_mode.value = search_data.target_app;
|
|
search_mode.value = search_data.target_app;
|
|
|
|
|
+ search_status.value = search_data.target_status;
|
|
|
moke_data.value = [];
|
|
moke_data.value = [];
|
|
|
pages.current = 1;
|
|
pages.current = 1;
|
|
|
getDialog();
|
|
getDialog();
|