提交
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
<el-carousel-item v-for="(item, i) in list" :key="i">
|
<el-carousel-item v-for="(item, i) in list" :key="i">
|
||||||
<div class="dis-f jus-x al-item" v-if="item">
|
<div class="dis-f jus-x al-item" v-if="item">
|
||||||
<div class="img-box dis-f jus-x" style="width:600px" v-if="item['type'] != 'attachment'">
|
<div class="img-box dis-f jus-x" style="width:600px" v-if="item['type'] != 'attachment'">
|
||||||
<video autoplay controls :src="item.url"></video>
|
<video autoplay controls :src="item.url || item['videourl']"></video>
|
||||||
</div>
|
</div>
|
||||||
<div class="img-box dis-f jus-x" v-else>
|
<div class="img-box dis-f jus-x" v-else>
|
||||||
<img :src="item && item.url || item['imageurl'] || item['image']" class="img" alt="">
|
<img :src="item && item.url || item['imageurl'] || item['image']" class="img" alt="">
|
||||||
|
|||||||
@@ -100,12 +100,18 @@ const executeScripts = () => {
|
|||||||
left: 0;
|
left: 0;
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
z-index: 1111;
|
z-index: 1111;
|
||||||
|
color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.htmlCode * {
|
.htmlCode * {
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.htmlCode .registerNewApp {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
.htmlCode .register .box,
|
.htmlCode .register .box,
|
||||||
.htmlCode .register .box {
|
.htmlCode .register .box {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ axios.interceptors.request.use( //响应拦截
|
|||||||
showFullScreenLoading()
|
showFullScreenLoading()
|
||||||
// 开发时登录用的,可以直接替换小程序的 authorization
|
// 开发时登录用的,可以直接替换小程序的 authorization
|
||||||
// if (process.env.NODE_ENV == "development") config['headers']['authorization'] = "x2mmnl9grt51bpplj2k6ioiuummzhnw3"
|
// if (process.env.NODE_ENV == "development") config['headers']['authorization'] = "x2mmnl9grt51bpplj2k6ioiuummzhnw3"
|
||||||
if (process.env.NODE_ENV == "development") config['headers']['authorization'] = "0h870ovk2xckoqfsh8a3t3sg4sg5z7eg"
|
// if (process.env.NODE_ENV == "development") config['headers']['authorization'] = "0h870ovk2xckoqfsh8a3t3sg4sg5z7eg"
|
||||||
return config;
|
return config;
|
||||||
},
|
},
|
||||||
error => {
|
error => {
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
<div ref="slideshowList" class="slideshow-list box no-scrollbar flex1 flexacenter">
|
<div ref="slideshowList" class="slideshow-list box no-scrollbar flex1 flexacenter">
|
||||||
<div class="item" :class="{ 'pitch': index == carouselIndex }, `item${index}`"
|
<div class="item" :class="{ 'pitch': index == carouselIndex }, `item${index}`"
|
||||||
v-for="(item, index) in allCarouselsData" @click="slideshowItem(index)">
|
v-for="(item, index) in allCarouselsData" @click="slideshowItem(index)">
|
||||||
<img class="img" :src="item['thumbnail'] || item['imageurl']" />
|
<img class="img" v-lazy="item['thumbnail'] || item['imageurl']" />
|
||||||
<img class="video-icon" v-if="item['type'] != 'attachment'"
|
<img class="video-icon" v-if="item['type'] != 'attachment'"
|
||||||
src="@/assets/img/publicImage/video-icon.svg">
|
src="@/assets/img/publicImage/video-icon.svg">
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -88,6 +88,7 @@ const getData = () => {
|
|||||||
requestLoading = true
|
requestLoading = true
|
||||||
|
|
||||||
proxy.$get("/tenement/pc/api/apartment", {
|
proxy.$get("/tenement/pc/api/apartment", {
|
||||||
|
limit:10,
|
||||||
page,
|
page,
|
||||||
...pitchValue
|
...pitchValue
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|||||||
Reference in New Issue
Block a user