| | |
| | | :visible.sync="dialogVisible" |
| | | :modal-append-to-body="false" |
| | | :close-on-click-modal="false" |
| | | width="850px" |
| | | width="600px" |
| | | :before-close="handleClose" |
| | | append-to-body |
| | | > |
| | | <div class="columnFlex" style="margin-top: 10px"> |
| | | <img style="height: 130px;width: 150px;" src="../../../../assets/images/im.png"> |
| | | <el-image |
| | | style="width: 500px;height: 300px" |
| | | :src="url" |
| | | :preview-src-list="[url]"> |
| | | </el-image> |
| | | </div> |
| | | </el-dialog> |
| | | </template> |
| | |
| | | return { |
| | | dialogVisible: false, |
| | | dialogStatus: '', |
| | | url: '' |
| | | } |
| | | }, |
| | | created() { |
| | | }, |
| | | methods: { |
| | | openDialog (type, data) { |
| | | openDialog (data) { |
| | | this.url = data; |
| | | this.dialogVisible = true; |
| | | this.dialogStatus = type; |
| | | }, |
| | | |
| | | handleClose() { |