parent
9ba07046e3
commit
3beae8b718
|
@ -13,6 +13,7 @@
|
|||
"prepare": "husky install"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ant-design/icons-vue": "^7.0.1",
|
||||
"@liveqing/liveplayer-v3": "^3.7.10",
|
||||
"@types/marked": "^4.0.8",
|
||||
"@vitejs/plugin-vue-jsx": "^3.0.0",
|
||||
|
@ -37,6 +38,7 @@
|
|||
"nrm": "^1.2.5",
|
||||
"pinia": "^2.0.28",
|
||||
"rollup-plugin-copy": "^3.4.0",
|
||||
"rxjs": "^7.8.1",
|
||||
"unplugin-auto-import": "^0.12.1",
|
||||
"unplugin-vue-components": "^0.22.12",
|
||||
"v-clipboard3": "^0.1.4",
|
||||
|
|
|
@ -71,7 +71,6 @@
|
|||
</template>
|
||||
<script setup lang="ts" name="Debug">
|
||||
import { PropType } from 'vue';
|
||||
import { DeleteOutlined, PlusOutlined } from '@ant-design/icons-vue';
|
||||
import { useProductStore } from '@/store/product';
|
||||
import { useRuleEditorStore } from '@/store/ruleEditor';
|
||||
import moment from 'moment';
|
||||
|
|
|
@ -163,6 +163,7 @@
|
|||
v-if="provider !== 'snap7'"
|
||||
:name="['configuration', 'requestTimeout']"
|
||||
:rules="LeftTreeRules.requestTimeout"
|
||||
label='请求超时时间'
|
||||
>
|
||||
<j-input-number
|
||||
style="width: 100%"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
clipOrigin: [459, 92],
|
||||
clipSize: [50, 68],
|
||||
}"
|
||||
>123</el-amap-label-marker
|
||||
></el-amap-label-marker
|
||||
>
|
||||
</AmapComponent>
|
||||
</div>
|
||||
|
|
|
@ -83,6 +83,7 @@ watchEffect(() => {
|
|||
type: i?.valueType?.type || 'string',
|
||||
rename: i.id
|
||||
},
|
||||
ellipsis: true,
|
||||
});
|
||||
});
|
||||
} else {
|
||||
|
|
|
@ -81,8 +81,11 @@ const queryChartsAggList = async () => {
|
|||
from: prop.time[0],
|
||||
to: prop.time[1],
|
||||
},
|
||||
});
|
||||
}).finally(
|
||||
()=>{
|
||||
loading.value = false;
|
||||
}
|
||||
)
|
||||
if (resp.status === 200) {
|
||||
const dataList: any[] = [
|
||||
{
|
||||
|
@ -127,8 +130,12 @@ const queryChartsList = async () => {
|
|||
],
|
||||
sorts: [{ name: 'timestamp', order: 'asc' }],
|
||||
},
|
||||
);
|
||||
).finally(
|
||||
()=>{
|
||||
loading.value = false;
|
||||
}
|
||||
)
|
||||
|
||||
if (resp.status === 200) {
|
||||
const dataList: any[] = [
|
||||
{
|
||||
|
|
|
@ -65,8 +65,10 @@ const query = async () => {
|
|||
},
|
||||
sorts: { timestamp: 'asc' },
|
||||
}),
|
||||
);
|
||||
).finally(()=>{
|
||||
loading.value = false;
|
||||
}
|
||||
)
|
||||
if (resp.status === 200) {
|
||||
const list: any[] = [];
|
||||
((resp.result as any)?.data || []).forEach((item: any) => {
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
required: true,
|
||||
message: '请输入页面地址',
|
||||
},
|
||||
{ max: 128, message: '最多可输入128字符' },
|
||||
{ max: 128, message: '最多可输入128个字符' },
|
||||
{ pattern: /^\//, message: '请正确填写地址,以/开头' },
|
||||
]" :validateFirst="true" label="页面地址" name="url">
|
||||
<j-input v-model:value="form.data.url" placeholder="请输入页面地址" />
|
||||
|
|
|
@ -196,8 +196,7 @@ const table = reactive({
|
|||
],
|
||||
},
|
||||
{
|
||||
terms:[
|
||||
{
|
||||
type: 'or',
|
||||
terms:[
|
||||
{
|
||||
value:"%show\":true%",
|
||||
|
@ -206,8 +205,6 @@ const table = reactive({
|
|||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
};
|
||||
const params = {
|
||||
|
@ -239,7 +236,7 @@ const table = reactive({
|
|||
router.push(
|
||||
`/system/Menu/detail/:id?pid=${row.id}&basePath=${
|
||||
row.url || ''
|
||||
}&sortIndex=${sortIndex + 1}&isChildren=${true}`,
|
||||
}&sortIndex=${sortIndex + 1}`,
|
||||
);
|
||||
|
||||
},
|
||||
|
|
15
yarn.lock
15
yarn.lock
|
@ -54,6 +54,14 @@
|
|||
"@ant-design/colors" "^6.0.0"
|
||||
"@ant-design/icons-svg" "^4.2.1"
|
||||
|
||||
"@ant-design/icons-vue@^7.0.1":
|
||||
version "7.0.1"
|
||||
resolved "https://registry.npmjs.org/@ant-design/icons-vue/-/icons-vue-7.0.1.tgz#83de301771fadd03f3890e627314102405c31c22"
|
||||
integrity sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==
|
||||
dependencies:
|
||||
"@ant-design/colors" "^6.0.0"
|
||||
"@ant-design/icons-svg" "^4.2.1"
|
||||
|
||||
"@antfu/utils@^0.7.2":
|
||||
version "0.7.2"
|
||||
resolved "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.2.tgz"
|
||||
|
@ -5891,6 +5899,13 @@ rxjs@^7.5.7:
|
|||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
rxjs@^7.8.1:
|
||||
version "7.8.1"
|
||||
resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
|
||||
integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
|
||||
version "5.2.1"
|
||||
resolved "https://registry.jetlinks.cn/safe-buffer/-/safe-buffer-5.2.1.tgz"
|
||||
|
|
Loading…
Reference in New Issue