ll
liukangdong
2024-10-22 85b460b57cd7e9ad935042df74f40e1bbdfa3408
h5_meeting/pages/index/config.vue
@@ -28,17 +28,20 @@
</template>
<script>
   import { baseUrl } from '@/utils/config.js'
   export default {
      data() {
         return {
            param: {
               baseUrl: 'http://192.168.5.13/gateway_interface/'
               baseUrl,
               time: 60
            }
         };
      },
      onLoad(){
         const param = uni.getStorageSync('param') || {
            baseUrl: 'http://192.168.5.13/gateway_interface/'
            baseUrl: baseUrl,
            time: 60
         }
         this.param = { ...param }
      },