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