65f968de by 焦小希

修改双花括号一闪而过的bug 修改侧边栏图片未出现的bug

1 parent d6a8aa8b
......@@ -255,9 +255,9 @@
margin-right: 6px;
}
.secondMenuItem-image.point-image {
width: 4px;
height: 4px;
margin-right: 11px;
width: 22px;
height:22px;
margin-right: 8px;
}
.el-submenu .el-submenu__title {
......
......@@ -307,7 +307,7 @@ function leftMenuFormat (data) {
*/
function listByRoleIdSucceFunc(data, object, navigator, divId, nav, text) {
//判断路由 2020年6月8日 18:31:37 vers
/*if(navigator==='规划成果审查'){
if(navigator==='规划成果审查'){
var activeIconUrlList = [
'image/index/menus/reviewmanage/icon_dbsx_select.svg',
'image/index/menus/reviewmanage/icon_ybsx_select.svg',
......@@ -340,7 +340,7 @@ function listByRoleIdSucceFunc(data, object, navigator, divId, nav, text) {
data[i].iconActive = activeIconUrlList[j]
}
}
}*/
}
// 扁平数组数据转树形数据
data = leftMenuFormat(data);
......
......@@ -94,6 +94,9 @@
border-radius: 2px;
outline: 0;
}
[v-cloak]{
display: none;
}
</style>
</head>
<body>
......@@ -182,7 +185,7 @@
width="373"
>
<template slot-scope="scope">
<span>{{
<span v-cloak>{{
scope.row.CREATETIME | dataFormat
}}</span>
</template>
......@@ -194,7 +197,7 @@
width="403"
>
<template slot-scope="scope">
<span>{{
<span v-cloak>{{
scope.row.RECEIVETIME | dataFormat
}}</span>
</template>
......@@ -259,9 +262,11 @@
align="center"
width="373"
>
<span>{{
<template slot-scope="scope">
<span v-cloak>{{
scope.row.CREATETIME | dataFormat
}}</span>
</template>
</el-table-column>
<el-table-column
prop="RECEIVETIME"
......@@ -269,9 +274,11 @@
align="center"
width="403"
>
<span>{{
<template slot-scope="scope">
<span v-cloak>{{
scope.row.RECEIVETIME | dataFormat
}}</span>
</template>
</el-table-column>
</el-table>
<el-table
......@@ -333,9 +340,11 @@
align="center"
width="373"
>
<span>{{
<template slot-scope="scope">
<span v-cloak>{{
scope.row.CREATETIME | dataFormat
}}</span>
</template>
</el-table-column>
<el-table-column
prop="RECEIVETIME"
......@@ -343,9 +352,11 @@
align="center"
width="403"
>
<span>{{
<template slot-scope="scope">
<span v-cloak>{{
scope.row.RECEIVETIME | dataFormat
}}</span>
</template>
</el-table-column>
</el-table>
<el-table
......@@ -407,9 +418,11 @@
align="center"
width="373"
>
<span>{{
<template slot-scope="scope">
<span v-cloak>{{
scope.row.CREATETIME | dataFormat
}}</span>
</template>
</el-table-column>
<el-table-column
prop="RECEIVETIME"
......@@ -417,9 +430,11 @@
align="center"
width="403"
>
<span>{{
<template slot-scope="scope">
<span v-cloak>{{
scope.row.RECEIVETIME | dataFormat
}}</span>
</template>
</el-table-column>
</el-table>
<!-- 分页区域-->
......