commit
This commit is contained in:
@@ -2,6 +2,9 @@
|
||||
<template>
|
||||
<div class="release">
|
||||
<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" >
|
||||
<div style="height: 18px;">
|
||||
<a @click="handlePreview(item)" class="table-jump">{{ item.standName }}</a>
|
||||
@@ -21,6 +24,7 @@ export default {
|
||||
return {
|
||||
putTime: '',
|
||||
standardReleaseList: [], //标准发布数据
|
||||
updateTime:""
|
||||
}
|
||||
},
|
||||
computed: {},
|
||||
@@ -31,6 +35,19 @@ export default {
|
||||
this.addDate()
|
||||
},
|
||||
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) {
|
||||
let routeUrl = this.$router.resolve({
|
||||
@@ -53,6 +70,7 @@ export default {
|
||||
this.$http.get('sarStandardsInfo/sar-standards-info/getStandInfoByList', obj, {
|
||||
_this: this
|
||||
}, res => {
|
||||
this.standardReleaseList = res.data
|
||||
let arr = res.data
|
||||
arr.forEach(item => {
|
||||
if(item.standName !== ""){
|
||||
@@ -86,3 +104,4 @@ export default {
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user