|
@@ -30,7 +30,32 @@
|
|
|
:filter-node-method="filterNode"
|
|
|
@node-click="checkNode"
|
|
|
ref="tree"
|
|
|
- >
|
|
|
+ ><span class="custom-tree-node" slot-scope="{ node }">
|
|
|
+ <span>
|
|
|
+ <span style="color: #009cff" class="iconfont icon-wenjianjia"></span>
|
|
|
+ <!-- <span
|
|
|
+ v-if="
|
|
|
+ node.data.hasOwnProperty('children') &&
|
|
|
+ node.data.children.length > 0
|
|
|
+ "
|
|
|
+ style="color: #009cff"
|
|
|
+ class="iconfont icon-wenjianjia"
|
|
|
+ ></span> -->
|
|
|
+ <!-- <span
|
|
|
+ v-else
|
|
|
+ style="color: #fdb441"
|
|
|
+ class="iconfont icon-wenjian"
|
|
|
+ ></span> -->
|
|
|
+ <span
|
|
|
+ :style="
|
|
|
+ node.data.hasOwnProperty('parent')
|
|
|
+ ? 'font-size:14px;padding-left:5px'
|
|
|
+ : 'font-size:12px;padding-left:5px'
|
|
|
+ "
|
|
|
+ >{{ node.data.title }}</span
|
|
|
+ >
|
|
|
+ </span>
|
|
|
+ </span>
|
|
|
</el-tree>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -91,7 +116,7 @@
|
|
|
prop="createTime"
|
|
|
show-overflow-tooltip
|
|
|
label="发布时间"
|
|
|
- width="150"
|
|
|
+ width="140"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column prop="stsDesc" label="状态"> </el-table-column> -->
|
|
@@ -264,7 +289,7 @@
|
|
|
<h3 style="text-align: center; margin: 10px 0">
|
|
|
{{ infolist.title }}
|
|
|
</h3>
|
|
|
- <div style="font-size: 10px; color: grey; margin: 10px 0">
|
|
|
+ <div style="font-size: 12px; color: grey; margin: 10px 0">
|
|
|
发布时间:{{ infolist.createTime || "暂无" }} 发布人:{{
|
|
|
infolist.handler || "暂无"
|
|
|
}}
|
|
@@ -798,9 +823,9 @@ export default {
|
|
|
<style scoped lang="scss">
|
|
|
@import "../../../assets/style";
|
|
|
|
|
|
-.iconfont {
|
|
|
- font-size: 42px;
|
|
|
-}
|
|
|
+// .iconfont {
|
|
|
+// font-size: 42px;
|
|
|
+// }
|
|
|
|
|
|
.icon-excel {
|
|
|
color: #67db63;
|