|
@@ -12,7 +12,7 @@
|
|
|
:operation="operation()"
|
|
|
key="pageType"
|
|
|
>
|
|
|
- <div class="cartographer_big">
|
|
|
+ <div class="cartographer_big aaaaaaaaaaaaaaa">
|
|
|
<el-dialog title="新增" width="100%" :modal="false" :visible.sync="formDialog" :before-close="handleClose">
|
|
|
<zj-page-container>
|
|
|
<zj-page-fill>
|
|
@@ -31,7 +31,7 @@
|
|
|
</zj-page-container>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
- <div class="cartographer_big">
|
|
|
+ <div class="cartographer_big aaaaaaaaaaaaaaa">
|
|
|
<el-dialog title="详情" width="100%" :modal="false" :visible.sync="formDialog2" :before-close="handleClose">
|
|
|
<zj-page-container>
|
|
|
<zj-page-fill>
|
|
@@ -53,7 +53,7 @@
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
|
|
|
- <div class="cartographer_big">
|
|
|
+ <div class="cartographer_big aaaaaaaaaaaaaaa">
|
|
|
<el-dialog title="退款申请" width="100%" :modal="false" :visible.sync="formDialog3" :before-close="handleClose">
|
|
|
<zj-page-container>
|
|
|
<zj-page-fill>
|
|
@@ -635,6 +635,19 @@ export default {
|
|
|
columnAttributes: {
|
|
|
label: '退款凭证',
|
|
|
prop: 'fileUrl'
|
|
|
+ },
|
|
|
+ render: (h, { row, column, index }) => {
|
|
|
+ return row.fileUrl ? (
|
|
|
+ <div class="redbordererr">
|
|
|
+ {row.fileUrl.split(',').map(url => (
|
|
|
+ <el-image
|
|
|
+ style="width: 100px; height: 100px"
|
|
|
+ src={this.$showImgUrl(url)}
|
|
|
+ preview-src-list={[this.$showImgUrl(url)]}
|
|
|
+ ></el-image>
|
|
|
+ ))}
|
|
|
+ </div>
|
|
|
+ ) : null
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -886,4 +899,10 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style lang="scss" scoped></style>
|
|
|
+<style lang="scss">
|
|
|
+.aaaaaaaaaaaaaaa {
|
|
|
+ .cell {
|
|
|
+ text-align: left !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|