fix: 日期选择清空异常和移除console
This commit is contained in:
@@ -350,6 +350,9 @@ function fnClose() {
|
||||
/**查询调度日志列表 */
|
||||
function fnGetList() {
|
||||
tableState.loading = true;
|
||||
if (!queryRangePicker.value) {
|
||||
queryRangePicker.value = ['', ''];
|
||||
}
|
||||
queryParams.beginTime = queryRangePicker.value[0];
|
||||
queryParams.endTime = queryRangePicker.value[1];
|
||||
listJobLog(toRaw(queryParams)).then(res => {
|
||||
|
||||
@@ -312,6 +312,9 @@ function fnExportList() {
|
||||
function fnGetList() {
|
||||
if (tableState.loading) return;
|
||||
tableState.loading = true;
|
||||
if (!queryRangePicker.value) {
|
||||
queryRangePicker.value = ['', ''];
|
||||
}
|
||||
queryParams.beginTime = queryRangePicker.value[0];
|
||||
queryParams.endTime = queryRangePicker.value[1];
|
||||
listLogininfor(toRaw(queryParams)).then(res => {
|
||||
|
||||
@@ -345,6 +345,9 @@ function fnExportList() {
|
||||
function fnGetList() {
|
||||
if (tableState.loading) return;
|
||||
tableState.loading = true;
|
||||
if (!queryRangePicker.value) {
|
||||
queryRangePicker.value = ['', ''];
|
||||
}
|
||||
queryParams.beginTime = queryRangePicker.value[0];
|
||||
queryParams.endTime = queryRangePicker.value[1];
|
||||
listOperlog(toRaw(queryParams)).then(res => {
|
||||
|
||||
Reference in New Issue
Block a user