Showing
1 changed file
with
16 additions
and
3 deletions
| ... | @@ -165,9 +165,21 @@ | ... | @@ -165,9 +165,21 @@ |
| 165 | </div> | 165 | </div> |
| 166 | </div> | 166 | </div> |
| 167 | </div> | 167 | </div> |
| 168 | - <el-row | 168 | + <el-row v-if="state.detailModel.control !== 'cc'" style="width: 100%; background-color: #f0f1f4; padding-left: 10px;"> |
| 169 | - style="width: 100%; background-color: #f0f1f4; padding-left: 10px;" | 169 | + <el-col :span="12" style="display: flex; align-items: center;"> |
| 170 | + 字段 | ||
| 171 | + <el-tooltip | ||
| 172 | + :content="state.attr_node_desc" | ||
| 173 | + placement="top" | ||
| 174 | + offset="10" | ||
| 170 | > | 175 | > |
| 176 | + <el-icon style="font-size: 1rem; margin-left: 5px;"><InfoFilled color="#b5b8be" /></el-icon> | ||
| 177 | + </el-tooltip> | ||
| 178 | + </el-col> | ||
| 179 | + <el-col :span="6">可见</el-col> | ||
| 180 | + <el-col :span="6">可编辑</el-col> | ||
| 181 | + </el-row> | ||
| 182 | + <el-row v-else style="width: 100%; background-color: #f0f1f4; padding-left: 10px;"> | ||
| 171 | <el-col :span="12" style="display: flex; align-items: center;"> | 183 | <el-col :span="12" style="display: flex; align-items: center;"> |
| 172 | 字段 | 184 | 字段 |
| 173 | <el-tooltip | 185 | <el-tooltip |
| ... | @@ -179,7 +191,6 @@ | ... | @@ -179,7 +191,6 @@ |
| 179 | </el-tooltip> | 191 | </el-tooltip> |
| 180 | </el-col> | 192 | </el-col> |
| 181 | <el-col :span="6">可见</el-col> | 193 | <el-col :span="6">可见</el-col> |
| 182 | - <el-col v-if="state.detailModel.control !== 'cc'" :span="6">可编辑</el-col> | ||
| 183 | </el-row> | 194 | </el-row> |
| 184 | <el-row v-if="!state.search_auth_value" style="width: 100%; padding-left: 10px;"> | 195 | <el-row v-if="!state.search_auth_value" style="width: 100%; padding-left: 10px;"> |
| 185 | <el-col :span="12" style="color: #009688">全选</el-col> | 196 | <el-col :span="12" style="color: #009688">全选</el-col> |
| ... | @@ -1688,6 +1699,8 @@ export default { | ... | @@ -1688,6 +1699,8 @@ export default { |
| 1688 | model.data = model.data ? model.data : {}; | 1699 | model.data = model.data ? model.data : {}; |
| 1689 | 1700 | ||
| 1690 | state.detailModel = model; | 1701 | state.detailModel = model; |
| 1702 | + console.warn(state.detailModel.control); | ||
| 1703 | + | ||
| 1691 | 1704 | ||
| 1692 | state.search_auth_value = ''; | 1705 | state.search_auth_value = ''; |
| 1693 | // 清空全选状态 | 1706 | // 清空全选状态 | ... | ... |
-
Please register or login to post a comment