| | |
| | | v-hasPermi="['platform:score:add']">新增</el-button> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | | <el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate" |
| | | v-hasPermi="['platform:score:edit']">修改</el-button> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | | <el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete" |
| | | v-hasPermi="['platform:score:remove']">删除</el-button> |
| | | </el-col> |
| | |
| | | if (null != this.daterangeAuditingTime && '' != this.daterangeAuditingTime) { |
| | | this.queryParams["auditingStartTime"] = this.daterangeAuditingTime[0]; |
| | | this.queryParams["auditingEndTime"] = this.daterangeAuditingTime[1]; |
| | | } else { |
| | | this.queryParams["auditingStartTime"] = null; |
| | | this.queryParams["auditingEndTime"] = null; |
| | | } |
| | | if (null != this.daterangeCreateTime && '' != this.daterangeCreateTime) { |
| | | this.queryParams["createStartTime"] = this.daterangeCreateTime[0]; |
| | | this.queryParams["createEndTime"] = this.daterangeCreateTime[1]; |
| | | } else { |
| | | this.queryParams["createStartTime"] = null; |
| | | this.queryParams["createEndTime"] = null; |
| | | } |
| | | console.log("this.queryParams", this.queryParams) |
| | | listAuditing(this.queryParams).then(response => { |
| | | this.auditingList = response.rows; |
| | | this.total = response.total; |