|
|
@@ -73,6 +73,7 @@ import tool from '@/utils/tool'
|
|
|
import LeoFilter from '@/components/Filter'
|
|
|
import LeoUploader from '@/components/Uploader'
|
|
|
import Pagination from '@/components/Pagination'
|
|
|
+import {SERVER_API_HTTP_TYPE,SERVER_API_DOMAIN} from '@/utils/config'
|
|
|
export default {
|
|
|
name: 'recharge',
|
|
|
components: {LeoFilter, LeoUploader, Pagination},
|
|
|
@@ -145,7 +146,7 @@ export default {
|
|
|
this.$router.push({path: `/finance/recharge-add`})
|
|
|
},
|
|
|
handlePictureCardPreview (file) {
|
|
|
- this.dialogImageUrl = file.url;
|
|
|
+ this.dialogImageUrl = SERVER_API_HTTP_TYPE + SERVER_API_DOMAIN + '/uploads/' + file.url;
|
|
|
this.dialogVisible = true;
|
|
|
this.file = file;
|
|
|
// console.log(file);
|
|
|
@@ -200,7 +201,7 @@ export default {
|
|
|
this.dialogInvoiceLoading = false
|
|
|
let invoiceUrl = response.list;
|
|
|
// console.log(row)
|
|
|
- this.urlimg = row.BANK_PROVE
|
|
|
+ this.urlimg = SERVER_API_HTTP_TYPE + SERVER_API_DOMAIN + '/uploads/' + row.BANK_PROVE
|
|
|
this.auditId = row.ID
|
|
|
})
|
|
|
},
|