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