Commit ae7e3fdf3c64fd173c792b09e6532877fc6c0e62
1 parent
7b66a60d
修复bug
Showing
3 changed files
with
6 additions
and
2 deletions
trash-ui/src/views/casefile/violationCaseFile/violationCaseFileInfo.vue
| ... | ... | @@ -111,8 +111,10 @@ |
| 111 | 111 | type="text" |
| 112 | 112 | icon="el-icon-view" |
| 113 | 113 | @click="openImage(scope.row.replyImg)" |
| 114 | + v-if="scope.row.replyImg!=null" | |
| 114 | 115 | v-hasPermi="['casefile:violationWarningInformation:view']" |
| 115 | 116 | >查看</el-button> |
| 117 | + <span v-if="scope.row.replyImg==null">暂无</span> | |
| 116 | 118 | </template> |
| 117 | 119 | </el-table-column> |
| 118 | 120 | </el-table> | ... | ... |
trash-ui/src/views/casefile/violationWarningInformation/violationWarningInformationInfo.vue
| ... | ... | @@ -110,8 +110,10 @@ |
| 110 | 110 | type="text" |
| 111 | 111 | icon="el-icon-view" |
| 112 | 112 | @click="openImage(scope.row.replyImg)" |
| 113 | + v-if="scope.row.replyImg!=null" | |
| 113 | 114 | v-hasPermi="['casefile:violationWarningInformation:edit']" |
| 114 | 115 | >查看</el-button> |
| 116 | + <span v-if="scope.row.replyImg==null">暂无</span> | |
| 115 | 117 | </template> |
| 116 | 118 | </el-table-column> |
| 117 | 119 | </el-table> | ... | ... |
trash-ui/src/views/h5/violationCaseFile/index.vue
| ... | ... | @@ -228,9 +228,9 @@ |
| 228 | 228 | </div> |
| 229 | 229 | </template> |
| 230 | 230 | |
| 231 | -<script src="../../../api/vio_casefile"> | |
| 231 | +<script src="../../../api/vio_casefile"/> | |
| 232 | 232 | <style scope> |
| 233 | 233 | .el-select-dropdown__item{ |
| 234 | 234 | width:300px; |
| 235 | 235 | } |
| 236 | -</style> | |
| 237 | 236 | \ No newline at end of file |
| 237 | +</style> | ... | ... |