|
@@ -190,6 +190,7 @@ function getList() {
|
|
|
function handleQuery() {
|
|
|
queryParams.value.pageNum = 1;
|
|
|
const innerOutsourceQueryParams = JSON.parse(JSON.stringify(queryParams.value));
|
|
|
+ console.log(innerOutsourceQueryParams)
|
|
|
innerOutsourceStore().setInnerOutsourceQueryParams(innerOutsourceQueryParams);
|
|
|
getList();
|
|
|
}
|
|
@@ -197,6 +198,8 @@ function handleQuery() {
|
|
|
/** 重置按钮操作 */
|
|
|
function resetQuery() {
|
|
|
proxy.resetForm("queryRef");
|
|
|
+ queryParams.value = {};
|
|
|
+ innerOutsourceStore().setInnerOutsourceQueryParams(null);
|
|
|
handleQuery();
|
|
|
}
|
|
|
|