This commit is contained in:
zhutianqi
2021-09-16 10:58:14 +08:00
parent c1e16233c4
commit 005f7dbf2d
@@ -2,6 +2,9 @@
<template> <template>
<div class="release"> <div class="release">
<ul> <ul>
<li v-for="item in standardReleaseList" :key="item.id" class="time-title" v-if="updateTime>=item.issueTime">
<a @click="handlePreview(item)" class="table-jump">{{ item.standName }}</a>
<span class="time">{{item.issueTime }}</span>
<li v-for="item in standardReleaseList" :key="item.id" class="time-title" > <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >
<div style="height: 18px;"> <div style="height: 18px;">
<a @click="handlePreview(item)" class="table-jump">{{ item.standName }}</a> <a @click="handlePreview(item)" class="table-jump">{{ item.standName }}</a>
@@ -21,6 +24,7 @@ export default {
return { return {
putTime: '', putTime: '',
standardReleaseList: [], //标准发布数据 standardReleaseList: [], //标准发布数据
updateTime:""
} }
}, },
computed: {}, computed: {},
@@ -31,6 +35,19 @@ export default {
this.addDate() this.addDate()
}, },
methods: { methods: {
//获取当前年月日
addDate(){
const nowDate = new Date();
const date = {
year: nowDate.getFullYear(),
month: nowDate.getMonth() + 1,
date: nowDate.getDate(),
}
const newmonth = date.month>10?date.month:'0'+date.month
const day = date.date>10?date.date:'0'+date.date
this.updateTime = date.year + '-' + newmonth + '-' + day
console.log("当前时间"+this.updateTime)
},
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
let routeUrl = this.$router.resolve({ let routeUrl = this.$router.resolve({
@@ -53,6 +70,7 @@ export default {
this.$http.get('sarStandardsInfo/sar-standards-info/getStandInfoByList', obj, { this.$http.get('sarStandardsInfo/sar-standards-info/getStandInfoByList', obj, {
_this: this _this: this
}, res => { }, res => {
this.standardReleaseList = res.data
let arr = res.data let arr = res.data
arr.forEach(item => { arr.forEach(item => {
if(item.standName !== ""){ if(item.standName !== ""){
@@ -86,3 +104,4 @@ export default {
} }
} }
</style> </style>