From 0311359d2b04fc7176509b00a383dce057443001 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期日, 08 十二月 2024 22:30:52 +0800 Subject: [PATCH] 导入合同规则 --- src/views/system/contract/contract-result/index.vue | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/system/contract/contract-result/index.vue b/src/views/system/contract/contract-result/index.vue index 5e585e6..e1fc67a 100644 --- a/src/views/system/contract/contract-result/index.vue +++ b/src/views/system/contract/contract-result/index.vue @@ -6,7 +6,6 @@ size="small" :inline="true" v-show="showSearch" - label-width="100px" > <el-form-item label="鑰冩牳瀵硅薄" prop="unitId"> <el-select @@ -44,6 +43,7 @@ range-separator="-" start-placeholder="寮�濮嬫棩鏈�" end-placeholder="缁撴潫鏃ユ湡" + @change="handleQuery" ></el-date-picker> </el-form-item> <el-form-item> @@ -100,7 +100,7 @@ ></right-toolbar> --> </el-row> - <el-row v-loading="loading"> + <el-row v-if="checkResultList && checkResultList.length > 0" v-loading="loading"> <el-col :xl="8" :lg="8" @@ -135,7 +135,7 @@ style="float: right" @click="handlePublish(item)" v-show="item.publish != 1" - v-hasPermi="['result:contract:publish']" + v-hasPermi="['contract:result:publish']" >纭鍙戝竷</el-button > <el-button @@ -144,13 +144,14 @@ style="float: right" disabled v-show="item.publish == 1" - v-hasPermi="['result:contract:publish']" + v-hasPermi="['contract:result:publish']" >宸插彂甯�</el-button > </div> </el-card> </el-col> </el-row> + <el-empty v-else description="鏆傛棤鏁版嵁"></el-empty> <pagination v-show="total > 0" @@ -306,6 +307,9 @@ if (null != this.daterangeCheckTime && "" != this.daterangeCheckTime) { this.queryParams["createStartTime"] = this.daterangeCheckTime[0]; this.queryParams["createEndTime"] = this.daterangeCheckTime[1]; + }else { + this.queryParams["createStartTime"] = null; + this.queryParams["createEndTime"] = null; } console.log("this.queryParams", this.queryParams); listCheckResult(this.queryParams).then((response) => { -- Gitblit v1.8.0