Commit 05a74f02 authored by xinzhedeai's avatar xinzhedeai

fix:商户样式调整bug处理

parent b13eff21
/** axios封装 /** axios封装
* 请求拦截、相应拦截、错误统一处理 * 请求拦截、相应拦截、错误统一处理
*/ */
const BASE_URL = 'http://192.168.2.37:8080'
// 环境的切换 // 环境的切换
axios.defaults.baseURL = 'http://192.168.2.37:8080' axios.defaults.baseURL = BASE_URL
axios.defaults.timeout = 50000 axios.defaults.timeout = 50000
// post请求头 // post请求头
// axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8' // axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8'
......
...@@ -213,3 +213,8 @@ select:disabled { ...@@ -213,3 +213,8 @@ select:disabled {
font-size: 0.28rem; font-size: 0.28rem;
content: '*'; content: '*';
} }
select:disabled {
color: #333 !important;
opacity: 1;
}
\ No newline at end of file
...@@ -219,7 +219,7 @@ ...@@ -219,7 +219,7 @@
</div> </div>
<div> <div>
<h5 class="imager-item-title"> <h5 class="imager-item-title">
<span>商家平面图</span> <span class="form-label">商家平面图</span>
<span></span> <span></span>
</h5> </h5>
<div v-if="flag=='XG'"> <div v-if="flag=='XG'">
...@@ -233,7 +233,7 @@ ...@@ -233,7 +233,7 @@
<div v-if="flag=='XQ'"> <div v-if="flag=='XQ'">
<img <img
v-for="(imgItem, subIndex) in formData.floorPlanPhotos" v-for="(imgItem, subIndex) in formData.floorPlanPhotos"
:src="imgItem" :src="previewUrl + imgItem"
alt="" alt=""
style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem" style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem"
@click="showImage(formData.floorPlanPhotos,subIndex)" @click="showImage(formData.floorPlanPhotos,subIndex)"
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
</div> </div>
<div> <div>
<h5 class="imager-item-title"> <h5 class="imager-item-title">
<span>营业执照</span> <span class="form-label">营业执照</span>
<span></span> <span></span>
</h5> </h5>
<div v-if="flag=='XG'"> <div v-if="flag=='XG'">
...@@ -256,7 +256,7 @@ ...@@ -256,7 +256,7 @@
<div v-if="flag=='XQ'"> <div v-if="flag=='XQ'">
<img <img
v-for="(imgItem, subIndex) in formData.businessLicensePhotos" v-for="(imgItem, subIndex) in formData.businessLicensePhotos"
:src="imgItem" :src="previewUrl + imgItem"
alt="" alt=""
style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem" style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem"
@click="showImage(formData.businessLicensePhotos,subIndex)" @click="showImage(formData.businessLicensePhotos,subIndex)"
...@@ -266,7 +266,7 @@ ...@@ -266,7 +266,7 @@
<div> <div>
<h5 class="imager-item-title"> <h5 class="imager-item-title">
<span>门头图</span> <span class="form-label">门头图</span>
<span></span> <span></span>
</h5> </h5>
<div v-if="flag=='XG'"> <div v-if="flag=='XG'">
...@@ -280,7 +280,7 @@ ...@@ -280,7 +280,7 @@
<div v-if="flag=='XQ'"> <div v-if="flag=='XQ'">
<img <img
v-for="(imgItem, subIndex) in formData.storefrontPhotos" v-for="(imgItem, subIndex) in formData.storefrontPhotos"
:src="imgItem" :src="previewUrl + imgItem"
alt="" alt=""
style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem" style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem"
@click="showImage(formData.storefrontPhotos,subIndex)" @click="showImage(formData.storefrontPhotos,subIndex)"
...@@ -301,7 +301,7 @@ ...@@ -301,7 +301,7 @@
class="imager-item-title" class="imager-item-title"
style="border: none" style="border: none"
> >
<span>安全二维码</span> <span class="form-label">安全二维码</span>
<span></span> <span></span>
</h5> </h5>
<div> <div>
......
...@@ -6,6 +6,7 @@ window.addEventListener('load', function () { ...@@ -6,6 +6,7 @@ window.addEventListener('load', function () {
el: '#app', el: '#app',
data() { data() {
return { return {
previewUrl: BASE_URL,
loading: false, loading: false,
finished: false, finished: false,
page: 0, page: 0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment