征求意见名称展示
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li v-for="item in domesticDynamics" :key="item.id" class="time-title">
|
<li v-for="item in domesticDynamics" :key="item.id" class="time-title">
|
||||||
<div style="height: 18px">
|
<div style="height: 18px">
|
||||||
<a class="title" :title="item.cname" @click="standForComments(item)">{{ item.cname }}</a>
|
<a class="title" :title="item.cname" @click="standForComments(item)">{{ item.cid }}</a>
|
||||||
<span class="time">{{ item.endTime }}</span>
|
<span class="time">{{ item.endTime }}</span>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
@@ -44,12 +44,7 @@ export default {
|
|||||||
}, {
|
}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
let arr = res.data.records;
|
this.domesticDynamics = res.data.records
|
||||||
arr.forEach(item => {
|
|
||||||
if (item.cname !== "") {
|
|
||||||
this.domesticDynamics.push(item);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}, e => {
|
}, e => {
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -74,11 +74,11 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="cname"
|
prop="cid"
|
||||||
label="标准名称/政策名称"
|
label="标准名称/政策名称"
|
||||||
align="center">
|
align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<a @click="handlePreview(scope.row)" class="table-jump">{{ scope.row.cname }}</a>
|
<a @click="handlePreview(scope.row)" class="table-jump">{{ scope.row.cid }}</a>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|||||||
@@ -10,21 +10,21 @@
|
|||||||
<transition name="el-zoom-in-top">
|
<transition name="el-zoom-in-top">
|
||||||
<div v-show="heightShow" class="transition-box">
|
<div v-show="heightShow" class="transition-box">
|
||||||
<p class="transition-box-p">
|
<p class="transition-box-p">
|
||||||
<label class="transition-box-label">标准号:</label>
|
<label class="transition-box-label">标准名称:</label>
|
||||||
<span class="transition-box-span table-jump"
|
<span class="transition-box-span table-jump"
|
||||||
@click="handlePreview(itemData)"
|
@click="handlePreview(itemData)"
|
||||||
>
|
>
|
||||||
{{ this.$route.query.item.cid }}
|
{{ this.$route.query.item.cid }}
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p class="transition-box-p">
|
<!-- <p class="transition-box-p">-->
|
||||||
<label class="transition-box-label">标准名称:</label>
|
<!-- <label class="transition-box-label">标准名称:</label>-->
|
||||||
<span class="transition-box-span table-jump"
|
<!-- <span class="transition-box-span table-jump"-->
|
||||||
@click="handlePreview(itemData)"
|
<!-- @click="handlePreview(itemData)"-->
|
||||||
>
|
<!-- >-->
|
||||||
{{ this.$route.query.item.cname || '-' }}
|
<!-- {{ this.$route.query.item.cname || '-' }}-->
|
||||||
</span>
|
<!-- </span>-->
|
||||||
</p>
|
<!-- </p>-->
|
||||||
<p class="transition-box-p">
|
<p class="transition-box-p">
|
||||||
<label class="transition-box-label">附件:</label>
|
<label class="transition-box-label">附件:</label>
|
||||||
<span class="file-box" v-if="fileInfoList.length > 0">
|
<span class="file-box" v-if="fileInfoList.length > 0">
|
||||||
|
|||||||
Reference in New Issue
Block a user