|
@@ -307,8 +307,6 @@ const state = reactive<any>({
|
|
|
Keyword: null, //关键字
|
|
|
Status: 3, //状态 默认已上架
|
|
|
Title: null, //标题
|
|
|
- ModuleCode: '',
|
|
|
- Attribution: '中心案例库',
|
|
|
sjTime: [], // 上架时间
|
|
|
StartOnShelfTime: null,
|
|
|
EndOnShelfTime: null,
|
|
@@ -334,7 +332,7 @@ const state = reactive<any>({
|
|
|
});
|
|
|
// 切换tab 查询列表
|
|
|
const handleClick = () => {
|
|
|
- state.queryParams.ModuleCode = '';
|
|
|
+ state.queryParams.PageIndex = 1;
|
|
|
queryList();
|
|
|
};
|
|
|
/** 搜索按钮操作 节流操作 */
|
|
@@ -346,7 +344,7 @@ const handleQuery = () => {
|
|
|
const getCaseType = async () => {
|
|
|
state.typeLoading = true;
|
|
|
try {
|
|
|
- const { result } = await caseTreeList({ IsEnable: true, Attribution: state.queryParams.Attribution });
|
|
|
+ const { result } = await caseTreeList({ IsEnable: true });
|
|
|
state.typeOptions = result ?? [];
|
|
|
state.typeLoading = false;
|
|
|
} catch (error) {
|