|
@@ -31,6 +31,18 @@
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-dialog
|
|
|
+ v-model="dialog"
|
|
|
+ width="80vw"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :close-on-press-escape="false"
|
|
|
+ >
|
|
|
+ <el-carousel height="70vh" motion-blur>
|
|
|
+ <el-carousel-item v-for="item in imgs" :key="item">
|
|
|
+ <el-image style="width: 80vw; height: 70vh" :src="item.uri" fit="scale-down"></el-image>
|
|
|
+ </el-carousel-item>
|
|
|
+ </el-carousel>
|
|
|
+ </el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
@@ -52,28 +64,31 @@ import conductingBusiness from './winParts/conductingBusiness.vue'
|
|
|
import popularWill from './winParts/popularWill.vue'
|
|
|
/* 底部信息 */
|
|
|
import footIndex from '../components/windows/footIndex.vue'
|
|
|
-
|
|
|
-
|
|
|
+import { getConfig } from '@/api/config'
|
|
|
+import { get } from 'lodash-es'
|
|
|
// 获取滚动条y轴坐标
|
|
|
-const { y } = useWindowScroll()
|
|
|
-
|
|
|
-function useWindowScroll() {
|
|
|
- const y = ref(0);
|
|
|
-
|
|
|
- const handleScroll = () => {
|
|
|
- y.value = window.scrollY;
|
|
|
- };
|
|
|
-
|
|
|
- onMounted(() => {
|
|
|
- window.addEventListener('scroll', handleScroll);
|
|
|
- });
|
|
|
+const y = ref(0)
|
|
|
+const handleScroll = () => {
|
|
|
+ y.value = window.scrollY
|
|
|
+}
|
|
|
+const imgs: any = ref([])
|
|
|
+const dialog = ref(false)
|
|
|
|
|
|
- onUnmounted(() => {
|
|
|
- window.removeEventListener('scroll', handleScroll);
|
|
|
- });
|
|
|
+onMounted(async () => {
|
|
|
+ window.addEventListener('scroll', handleScroll)
|
|
|
+ const res = await getConfig()
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ const is_use = get(res, 'data.use_index_img')
|
|
|
+ if (is_use === '1') return
|
|
|
+ const imgList = get(res, 'data.index_img', [])
|
|
|
+ imgs.value = imgList
|
|
|
+ if (imgList.length > 0) dialog.value = true
|
|
|
+ }
|
|
|
+})
|
|
|
|
|
|
- return { y };
|
|
|
-}
|
|
|
+onUnmounted(() => {
|
|
|
+ window.removeEventListener('scroll', handleScroll)
|
|
|
+})
|
|
|
</script>
|
|
|
<style scoped lang="scss">
|
|
|
.main {
|