jiangping
2024-10-22 168c5450e3493852059da54d698d08c2269b91fc
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 }
      },