|
@@ -5,24 +5,35 @@
|
|
|
<div class="listBoxLeft">
|
|
|
<letnav ref="letnav" :menuTree="menu"></letnav>
|
|
|
</div>
|
|
|
- <div class="listBoxRight" v-if="listTotal > 0">
|
|
|
- <el-card class="listBox" v-for="(item, index) in contentList" :key="index">
|
|
|
- <el-image v-if="item && item.thumbnail" :src="item.thumbnail" class="listimg" @click="newClick(item)"></el-image>
|
|
|
- <el-image v-else :src="thumbnail" class="listimg" @click="newClick(item)"></el-image>
|
|
|
- <div class="text">
|
|
|
- <div class="title" @click="newClick(item)">{{ item.title }}</div>
|
|
|
- <span class="describe">{{ item.describe }}</span>
|
|
|
- <span class="date">{{ item.date | dates }}</span>
|
|
|
+ <div class="box" v-if="!isnew">
|
|
|
+ <div class="listBoxRight" v-if="listTotal > 0">
|
|
|
+ <el-card class="listBox" v-for="(item, index) in contentList" :key="index">
|
|
|
+ <el-image v-if="item && item.thumbnail" :src="item.thumbnail" class="listimg" @click="newClick(item)"></el-image>
|
|
|
+ <el-image v-else :src="thumbnail" class="listimg" @click="newClick(item)"></el-image>
|
|
|
+ <div class="text">
|
|
|
+ <div class="title" @click="newClick(item)">{{ item.title }}</div>
|
|
|
+ <span class="describe">{{ item.describe }}</span>
|
|
|
+ <span class="date">{{ item.date | dates }}</span>
|
|
|
+ </div>
|
|
|
+ </el-card>
|
|
|
+ <pagination ref="pagination" class="pagination" :total="listTotal" @query="filterQuery"></pagination>
|
|
|
+ </div>
|
|
|
+ <el-divider class="divider" v-else>暂无数据</el-divider>
|
|
|
+ </div>
|
|
|
+ <div class="isnewbox" v-if="isnew">
|
|
|
+ <div class="titlebox" v-for="(item, index) in isnewcontentList" :key="index">
|
|
|
+ <div class="left" v-for="i in item" :key="i._id">
|
|
|
+ <img src="../assets/jt.png" class="jt">
|
|
|
+ <span class="text" @click="newClick(i)">{{ i.title }}</span>
|
|
|
</div>
|
|
|
- </el-card>
|
|
|
- <pagination ref="pagination" class="pagination" :total="listTotal" @query="filterQuery"></pagination>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <el-divider class="divider" v-else>暂无数据</el-divider>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import _ from 'lodash';
|
|
|
import moment from 'moment';
|
|
|
import letnav from '../components/leftmenu/index.vue';
|
|
|
import pagination from '../components/pagination';
|
|
@@ -36,7 +47,10 @@ export default {
|
|
|
breadcrumb
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(['contentList', 'listTotal', 'menusall'])
|
|
|
+ ...mapState(['contentList', 'listTotal', 'menusall']),
|
|
|
+ isnewcontentList() {
|
|
|
+ return _.chunk(this.contentList, 2);
|
|
|
+ }
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -44,7 +58,8 @@ export default {
|
|
|
pageSize: 10,
|
|
|
parentCode: null,
|
|
|
menu: {},
|
|
|
- thumbnail: require('../assets/newimg.jpg')
|
|
|
+ thumbnail: require('../assets/newimg.jpg'),
|
|
|
+ isnew: false
|
|
|
};
|
|
|
},
|
|
|
async mounted() {
|
|
@@ -52,15 +67,19 @@ export default {
|
|
|
await this.menusQueryAll();
|
|
|
// 当前菜单参数
|
|
|
this.code = this.$route.params.code;
|
|
|
+ // 顶级菜单参数
|
|
|
+ this.parentCode = this.$route.query.parentCode;
|
|
|
const topahes = await this.topage();
|
|
|
if (topahes) {
|
|
|
- // 顶级菜单参数
|
|
|
- this.parentCode = this.$route.query.parentCode;
|
|
|
// 获取一例菜单
|
|
|
this.menu = this.$setChildrenSession({ menus: this.menusall, iscode: this.parentCode });
|
|
|
- console.log(this.menu);
|
|
|
// 控制左侧菜单当前选项
|
|
|
this.$refs.letnav.setIndex();
|
|
|
+ if (this.code == '033' || this.code == '0441' || this.code == '0442' || this.code == '0443') {
|
|
|
+ this.isnew = true;
|
|
|
+ await this.filterQuery({ filter: {}, paging: { page: 0, size: 100 } });
|
|
|
+ return;
|
|
|
+ }
|
|
|
await this.filterQuery();
|
|
|
}
|
|
|
},
|
|
@@ -84,7 +103,7 @@ export default {
|
|
|
topage() {
|
|
|
const item = this.menusall.find(e => e.code == this.code);
|
|
|
if (item?.type == '2') {
|
|
|
- this.$router.push(`/pages/${item.code}`);
|
|
|
+ this.$router.push(`/pages/${item.code}?parentCode=${this.parentCode}`);
|
|
|
return false;
|
|
|
}
|
|
|
return true;
|
|
@@ -103,7 +122,7 @@ export default {
|
|
|
margin: 5% auto;
|
|
|
}
|
|
|
.list {
|
|
|
- width: 70%;
|
|
|
+ width: 60%;
|
|
|
margin: 0 auto;
|
|
|
margin-bottom: 5%;
|
|
|
.listHome {
|
|
@@ -114,9 +133,12 @@ export default {
|
|
|
margin-top: 3%;
|
|
|
margin-right: 5%;
|
|
|
}
|
|
|
- .listBoxRight {
|
|
|
+ .box, .isnewbox {
|
|
|
width: 75%;
|
|
|
margin-top: 3%;
|
|
|
+ }
|
|
|
+ .listBoxRight {
|
|
|
+ width: 100%;
|
|
|
.listBox {
|
|
|
width: 100%;
|
|
|
margin: 0 auto;
|
|
@@ -167,3 +189,22 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</style>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.titlebox {
|
|
|
+ display: flex;
|
|
|
+ width: 100%;
|
|
|
+ border-bottom: 1px dashed #999;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ .left {
|
|
|
+ width: 50%;
|
|
|
+ line-height: 38px;
|
|
|
+ .text {
|
|
|
+ margin-left: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .left span:hover {
|
|
|
+ color: #018dff ;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|