uni-oaview 1.0.13 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -52,13 +52,10 @@
|
|
|
52
52
|
'http://192.168.10.11:6174',
|
|
53
53
|
'http://dev-oa.ge.cn:6174',
|
|
54
54
|
'http://test-oa.ge.cn:6174',
|
|
55
|
-
'http://dev-oa.ge.cn',
|
|
56
|
-
'http://test-oa.ge.cn',
|
|
57
|
-
'http://192.168.10.11',
|
|
58
|
-
'http://192.168.11.231',
|
|
59
55
|
];
|
|
60
56
|
const show = ref(false);
|
|
61
|
-
const
|
|
57
|
+
const baseUrl = uni.getStorageSync('baseUrl');
|
|
58
|
+
const isShowDebugButton = ref(whiteUrls.some((url) => url.includes(baseUrl)) || !!uni.getStorageSync('isDebug'));
|
|
62
59
|
const list = ref(['console', 'network', 'event', 'error', 'storage', 'system']);
|
|
63
60
|
const current = ref(0);
|
|
64
61
|
const openDebug = () => {
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>我真的是服了 现在已经风湿了,防守打法打算我现在正在看电视{{ a }}</div>
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
<script lang="ts" setup>
|
|
6
|
-
import { ref } from 'vue';
|
|
7
|
-
import { getAsk } from '../../src';
|
|
8
|
-
|
|
9
|
-
console.log('hello world');
|
|
10
|
-
const a = ref(getAsk());
|
|
11
|
-
</script>
|
|
12
|
-
<style scoped lang="scss"></style>
|