预警发布日期查询与回显

This commit is contained in:
zhaokaiyao@91isoft.com
2022-01-11 22:26:14 +08:00
parent a69bc18f50
commit 1d773d983b
+4 -4
View File
@@ -162,9 +162,9 @@
<a @click="handlePreview(scope.row)">{{ scope.row.itemsName }}</a>
</template>
</el-table-column>
<el-table-column prop="putTime" label="发布日期" width="120" align="center">
<el-table-column prop="issueTime" label="发布日期" width="120" align="center">
<template slot-scope="scope">
<span>{{ scope.row.putTime ? scope.row.putTime.substring(0, 10) : '' }}</span>
<span>{{ scope.row.issueTime ? scope.row.issueTime.substring(0, 10) : '' }}</span>
</template>
</el-table-column>
<el-table-column prop="ssrq" label="实施日期" width="120" align="center">
@@ -473,8 +473,8 @@ export default {
//标准名称
standName: this.dynamic.standName,
//发布日期
startPutTime: this.dynamic.putTime[0],
endPutTime: this.dynamic.putTime[1],
startIssueTime: this.dynamic.putTime[0],
endIssueTime: this.dynamic.putTime[1],
//实施日期
startSSRQ: this.dynamic.SSRQ[0],
endSSRQ: this.dynamic.SSRQ[1],