|
@@ -265,7 +265,7 @@
|
|
<div class="recharge_css">
|
|
<div class="recharge_css">
|
|
<div class="title_css">上传截图 :</div>
|
|
<div class="title_css">上传截图 :</div>
|
|
<div class="upLoad">
|
|
<div class="upLoad">
|
|
- <el-upload class="avatar-uploader" action="https://apitest.changyuntong56.com/appendix/api/upload" :show-file-list="false"
|
|
|
|
|
|
+ <el-upload class="avatar-uploader" :action="uploadPath" :show-file-list="false"
|
|
:on-success="handleAvatarSuccess">
|
|
:on-success="handleAvatarSuccess">
|
|
<img v-if="imageUrl" :src="imageUrl" class="avatar" />
|
|
<img v-if="imageUrl" :src="imageUrl" class="avatar" />
|
|
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
@@ -329,6 +329,10 @@ import {
|
|
theRecharge,
|
|
theRecharge,
|
|
forbidden
|
|
forbidden
|
|
} from '@/api/cargoOwnerManagement';
|
|
} from '@/api/cargoOwnerManagement';
|
|
|
|
+
|
|
|
|
+ import {
|
|
|
|
+ uploadPath
|
|
|
|
+ } from '@/api/officialWebsiteManagement'
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
'el-image-viewer': () =>
|
|
'el-image-viewer': () =>
|
|
@@ -336,6 +340,7 @@ export default {
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ uploadPath,
|
|
billList: [],
|
|
billList: [],
|
|
tableData: [],
|
|
tableData: [],
|
|
//分页
|
|
//分页
|