Compare commits

...

7 Commits

Author SHA1 Message Date
ihzero 233ab2f796 打包 2024-01-02 10:53:13 +08:00
ihzero b0df7d8be9 修改 2024-01-02 10:51:40 +08:00
ihzero 40e8bb3a6d 打包 2024-01-01 21:33:11 +08:00
ihzero 6930ff0a25 打包 2024-01-01 21:08:06 +08:00
ihzero 1c6d3603b8 打包 2023-12-31 15:52:34 +08:00
ihzero 70af8cdbde 打包 2023-12-31 13:35:51 +08:00
ihzero f46e5f9649 判断 2023-12-31 13:31:44 +08:00
11 changed files with 157 additions and 157 deletions

View File

@ -1,2 +1,2 @@
<!DOCTYPE html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><title></title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel="stylesheet" href="https://lcny.sk797.cn/h5/static/index.97465e7b.css"></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id="app"></div><script src="https://lcny.sk797.cn/h5/static/js/chunk-vendors.959091ef.js"></script><script src="https://lcny.sk797.cn/h5/static/js/index.edb605c0.js"></script></body></html>
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel="stylesheet" href="https://lcny.sk797.cn/h5/static/index.97465e7b.css"></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id="app"></div><script src="https://lcny.sk797.cn/h5/static/js/chunk-vendors.959091ef.js"></script><script src="https://lcny.sk797.cn/h5/static/js/index.420700e6.js"></script></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,6 +11,7 @@
<script>
import { http } from '@/api/index.js'
import LiveVideo from '@/components/live-video/index.vue'
export default {
components: {
LiveVideo,
@ -25,6 +26,7 @@ export default {
address: '',
type: '',
expires: '',
timer: null,
}
},
created() {
@ -47,11 +49,15 @@ export default {
},
//init
reinit() {
if (!this.expires) return
setTimeout(() => {
if (!this.expires || this.expires <= 0) return
this.timer = setTimeout(() => {
this.init()
}, this.expires * 1000)
},
},
//
beforeDestroy() {
this.timer && clearTimeout(this.timer)
}
}
</script>

View File

@ -231,11 +231,9 @@
}
},{
"path" : "pages/basics/profile",
"style" :
{
"style" :{
"navigationBarTitleText": "基地概况",
"enablePullDownRefresh": false
}
},{
"path" : "pages/basics/profile-detail",

View File

@ -1,6 +1,5 @@
<template>
<view>
<!-- <Appbar :show="showAppbar" :title="title"> </Appbar> -->
<view class="space-y-20rpx">
<BaseChat
:baseId="id"
@ -19,7 +18,6 @@
</view>
</template>
<script>
import Appbar from '@/components/Appbar'
import { http } from '@/api/index.js'
import BaseChat from './components/base-chat.vue'
import SBYXZT from './components/sbyxzt.vue'
@ -29,7 +27,6 @@ import JK from './components/JK.vue'
import SZJC from './components/szjc.vue'
export default {
components: {
Appbar,
BaseChat,
SBYXZT,
QXSJ,

View File

@ -1,7 +1,6 @@
<template>
<view>
<!-- <Appbar :show="showAppbar" title="基地概况"> </Appbar> -->
<u-sticky>
<u-sticky :h5NavHeight="h5NavHeightP">
<view class="bg-white">
<SearchForm
:schemas="searchFormSchema"