33 lines
1.8 KiB
Vue
33 lines
1.8 KiB
Vue
<template>
|
||
<div id="app">
|
||
<router-view></router-view>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: "App",
|
||
data() {
|
||
return {};
|
||
},
|
||
methods: {},
|
||
components: {},
|
||
created() {
|
||
console.log("\r\n \"ippz_wllx\": \"静态IP\",\r\n \"ippz_ip\": \"192.168.36.4\",\r\n \"ippz_zwym\": \"255.255.255.192\",\r\n \"ippz_wg\": \"192.168.32.1\",\r\n \"ippz_dns\": \"223.5.5.5\",\r\n \"ippz_dns_by\": \"114.114.114.114\",\r\n\r\n\r\n \"wgpz_wgmc\": \"有线区网关2\",\r\n \"wgpz_wgid\": \"LAN-BOX2\",\r\n\r\n \"sbpz_sbmc\": \"有线区精雕2\",\r\n \"sbpz_kzqxy\": \"Modbus TCP\",\r\n \"sbpz_ip\": \"192.168.36.3\",\r\n \"sbpz_port\": \"502\",\r\n \"sbpz_czdz\": \"2\",\r\n \"sbpz_lxzq\": \"10\",\r\n \"sbpz_qyhmcj\": \"0\",\r\n \"sbpz_qyplcj\": \"1\",\r\n \"sbpz_zdplcjs\": \"64\",\r\n \"sbpz_cjcgsj\": \"10000\",\r\n \"sbpz_zqsbonchange\": \"0\",\r\n \"sbpz_txsjjg\": \"3\",\r\n \"sbpz_xqjcqxr\": \"05\",\r\n \"sbpz_bcjcqxr\": \"06\",\r\n\r\n\r\n\r\n \"cjdpz_tagid\": \"MachinePamHID917\",\r\n \"cjdpz_mc\": \"主轴转速\",\r\n \"cjdpz_sjq\": \"4X (Holding Register)\",\r\n \"cjdpz_jcqdz\": \"8210\",\r\n \"cjdpz_cjsjlx\": \"INT(16位有符号整数)\",\r\n \"cjdpz_dxsx\": \"只读\",\r\n \"cjdpz_scms\": \"Periodic\",\r\n\r\n\r\n \"mqtt_ip\": \"124.70.210.118\",\r\n \"mqtt_wgsn\": \"2000808011\",\r\n \"mqtt_port\": \"1883\",\r\n \"mqtt_keepalive\": \"60\",\r\n \"mqtt_tls\": \"0\",\r\n \"mqtt_clearsession\": \"0\",\r\n \"mqtt_sssjfbzt\": \"dbzn/gateway/iotlite/2000808011\",\r\n \"mqtt_qos\": \"1\",\r\n\r\n \"mqtt_cjd_sbmc\": \"主轴转速\",\r\n \"mqtt_cjd_tagid\": \"MachinePamHID917\"\r\n\r\n")
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style>
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
#app {
|
||
width: 100%;
|
||
height: 100vh;
|
||
background-color: #2b2d38;
|
||
}
|
||
</style>
|