修改上传图片action值

This commit is contained in:
JS-LM
2023-06-03 14:54:40 +08:00
parent 5bf4bb415b
commit d77bdce678

View File

@@ -2,7 +2,7 @@
<div class="app-container">
<div>上传图片</div>
<el-upload
action="http://localhost:8080/common/uploadOSS"
:action="actionUrl"
:headers="headers"
list-type="picture-card"
:on-preview="handlePictureCardPreview"
@@ -23,7 +23,7 @@
:rules="rules"
ref="stationRef"
>
<el-row>
<el-row :gutter="24">
<el-col :span="6">
<el-form-item label="站点名称" prop="stationName">
<el-input v-model="station.stationName"></el-input>
@@ -54,7 +54,7 @@
</el-col>
</el-row>
<el-row>
<el-row :gutter="24">
<el-col :span="6">
<el-form-item prop="matchCars" label="适配车辆类型">
<el-select v-model="station.selectMatchCars" multiple placeholder="请选择">
@@ -96,7 +96,7 @@
<el-col :span="6">
<el-form-item prop="merchantAdminName" label="管理员">
<el-input
v-model="
:value="
station.merchantAdminName === null
? '无'
: station.merchantAdminName
@@ -106,7 +106,7 @@
</el-col>
</el-row>
<el-row>
<el-row :gutter="24">
<el-col :span="6">
<el-form-item prop="stationLng" label="经度">
<el-input v-model="station.stationLng" disabled></el-input>
@@ -120,7 +120,7 @@
<el-col :span="6">
<el-form-item prop="merchantName" label="运营商">
<el-input
v-model="
:value="
station.merchantName === null ? '无' : station.merchantName
"
disabled
@@ -141,7 +141,7 @@
</el-col>
</el-row>
<el-row>
<el-row :gutter="24">
<el-col :span="6">
<el-form-item prop="construction" label="建设场所">
<el-select v-model="station.construction" placeholder="请选择">
@@ -157,8 +157,7 @@
<el-col :span="6">
<el-form-item prop="electricityPrice" label="充电费率">
<el-input
v-model="
station.electricityPrice === null ? 0 : station.electricityPrice
:value="station.electricityPrice === null ? 0 : station.electricityPrice
"
disabled
></el-input>
@@ -167,7 +166,7 @@
<el-col :span="6">
<el-form-item prop="servicePrice" label="服务费率">
<el-input
v-model="station.servicePrice === null ? 0 : station.servicePrice"
:value="station.servicePrice === null ? 0 : station.servicePrice"
disabled
></el-input>
</el-form-item>
@@ -196,6 +195,7 @@ export default {
dicts: ["station_type", "match_cars", "construction_type"],
data() {
return {
actionUrl:process.env.VUE_APP_BASE_API+'/common/uploadOSS',
dialogVisible:false,
headers: {
Authorization: "Bearer " + getToken()
@@ -299,7 +299,7 @@ export default {
};
},
created() {
},
methods: {
handleSuccess(res, file) {