Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
thick-casting
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
thick-casting
Commits
5dd35889
Commit
5dd35889
authored
Mar 05, 2025
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加 vue的客户端websocket测试项目
parent
00d2bf03
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
5885 additions
and
0 deletions
+5885
-0
.gitignore
wscf-test-client-vue/.gitignore
+30
-0
extensions.json
wscf-test-client-vue/.vscode/extensions.json
+3
-0
README.md
wscf-test-client-vue/README.md
+29
-0
index.html
wscf-test-client-vue/index.html
+13
-0
jsconfig.json
wscf-test-client-vue/jsconfig.json
+8
-0
package-lock.json
wscf-test-client-vue/package-lock.json
+3993
-0
package.json
wscf-test-client-vue/package.json
+22
-0
favicon.ico
wscf-test-client-vue/public/favicon.ico
+0
-0
App.vue
wscf-test-client-vue/src/App.vue
+33
-0
base.css
wscf-test-client-vue/src/assets/base.css
+86
-0
logo.svg
wscf-test-client-vue/src/assets/logo.svg
+1
-0
main.css
wscf-test-client-vue/src/assets/main.css
+35
-0
TestFix.vue
wscf-test-client-vue/src/components/TestFix.vue
+551
-0
TestThkGauge.vue
wscf-test-client-vue/src/components/TestThkGauge.vue
+65
-0
IconCommunity.vue
wscf-test-client-vue/src/components/icons/IconCommunity.vue
+7
-0
IconDocumentation.vue
...est-client-vue/src/components/icons/IconDocumentation.vue
+7
-0
IconEcosystem.vue
wscf-test-client-vue/src/components/icons/IconEcosystem.vue
+7
-0
IconSupport.vue
wscf-test-client-vue/src/components/icons/IconSupport.vue
+7
-0
IconTooling.vue
wscf-test-client-vue/src/components/icons/IconTooling.vue
+19
-0
main.js
wscf-test-client-vue/src/main.js
+12
-0
FixServiceClient.js
...est-client-vue/src/serviceClients/thk/FixServiceClient.js
+37
-0
Misc.js
wscf-test-client-vue/src/serviceClients/thk/Misc.js
+47
-0
ThkGaugeServiceClient.js
...lient-vue/src/serviceClients/thk/ThkGaugeServiceClient.js
+118
-0
COMMON.js
wscf-test-client-vue/src/wscf-client/COMMON.js
+24
-0
ReflectSeviceClientAssistant.js
...lient-vue/src/wscf-client/ReflectSeviceClientAssistant.js
+255
-0
Reflect_SeviceClient.js
wscf-test-client-vue/src/wscf-client/Reflect_SeviceClient.js
+134
-0
SubPropertyNode.js
wscf-test-client-vue/src/wscf-client/SubPropertyNode.js
+71
-0
WebSocketClient.js
wscf-test-client-vue/src/wscf-client/WebSocketClient.js
+240
-0
vite.config.js
wscf-test-client-vue/vite.config.js
+16
-0
流延模块名称.txt
流延模块名称.txt
+15
-0
No files found.
wscf-test-client-vue/.gitignore
0 → 100644
View file @
5dd35889
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
/cypress/videos/
/cypress/screenshots/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.tsbuildinfo
wscf-test-client-vue/.vscode/extensions.json
0 → 100644
View file @
5dd35889
{
"recommendations"
:
[
"Vue.volar"
]
}
wscf-test-client-vue/README.md
0 → 100644
View file @
5dd35889
# wscf-test-client-vue
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[
VSCode
](
https://code.visualstudio.com/
)
+
[
Volar
](
https://marketplace.visualstudio.com/items?itemName=Vue.volar
)
(
and
disable Vetur).
## Customize configuration
See
[
Vite Configuration Reference
](
https://vite.dev/config/
)
.
## Project Setup
```
sh
npm
install
```
### Compile and Hot-Reload for Development
```
sh
npm run dev
```
### Compile and Minify for Production
```
sh
npm run build
```
wscf-test-client-vue/index.html
0 → 100644
View file @
5dd35889
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<link
rel=
"icon"
href=
"/favicon.ico"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Vite App
</title>
</head>
<body>
<div
id=
"app"
></div>
<script
type=
"module"
src=
"/src/main.js"
></script>
</body>
</html>
wscf-test-client-vue/jsconfig.json
0 → 100644
View file @
5dd35889
{
"compilerOptions"
:
{
"paths"
:
{
"@/*"
:
[
"./src/*"
]
}
},
"exclude"
:
[
"node_modules"
,
"dist"
]
}
wscf-test-client-vue/package-lock.json
0 → 100644
View file @
5dd35889
This source diff could not be displayed because it is too large. You can
view the blob
instead.
wscf-test-client-vue/package.json
0 → 100644
View file @
5dd35889
{
"name"
:
"wscf-test-client-vue"
,
"version"
:
"0.0.0"
,
"private"
:
true
,
"type"
:
"module"
,
"scripts"
:
{
"dev"
:
"vite"
,
"build"
:
"vite build"
,
"preview"
:
"vite preview"
},
"dependencies"
:
{
"echarts"
:
"^5.5.1"
,
"EventEmitter"
:
"^1.0.0"
,
"uuid"
:
"^10.0.0"
,
"vue"
:
"^3.5.12"
,
"vue-router"
:
"^4.4.5"
},
"devDependencies"
:
{
"@vitejs/plugin-vue"
:
"^5.1.4"
,
"vite"
:
"^5.4.8"
}
}
wscf-test-client-vue/public/favicon.ico
0 → 100644
View file @
5dd35889
4.19 KB
wscf-test-client-vue/src/App.vue
0 → 100644
View file @
5dd35889
<
script
setup
>
import
TestFix
from
'./components/TestFix.vue'
;
import
TestThkGauge
from
'./components/TestThkGauge.vue'
;
</
script
>
<
template
>
<h1>
Hello App!
</h1>
<!--
<p>
<strong>
Current route path:
</strong>
{{
$route
.
fullPath
}}
</p>
-->
<!--
<nav>
<RouterLink
to=
"/"
>
HOME
</RouterLink>
<RouterLink
to=
"/gage"
>
TDGage
</RouterLink>
<RouterLink
to=
"/profile"
>
Profile
</RouterLink>
<RouterLink
to=
"/initparam"
>
Initparam
</RouterLink>
<RouterLink
to=
"/blowingDetect"
>
BlowingDetect
</RouterLink>
<RouterLink
to=
"/blowingScan"
>
BlowingScan
</RouterLink>
</nav>
<main>
<RouterView
/>
</main>
-->
<!--
<TestFix
/>
-->
<TestThkGauge
/>
</
template
>
<
style
scoped
>
.logo
{
display
:
block
;
margin
:
0
auto
2rem
;
}
</
style
>
wscf-test-client-vue/src/assets/base.css
0 → 100644
View file @
5dd35889
/* color palette from <https://github.com/vuejs/theme> */
:root
{
--vt-c-white
:
#ffffff
;
--vt-c-white-soft
:
#f8f8f8
;
--vt-c-white-mute
:
#f2f2f2
;
--vt-c-black
:
#181818
;
--vt-c-black-soft
:
#222222
;
--vt-c-black-mute
:
#282828
;
--vt-c-indigo
:
#2c3e50
;
--vt-c-divider-light-1
:
rgba
(
60
,
60
,
60
,
0.29
);
--vt-c-divider-light-2
:
rgba
(
60
,
60
,
60
,
0.12
);
--vt-c-divider-dark-1
:
rgba
(
84
,
84
,
84
,
0.65
);
--vt-c-divider-dark-2
:
rgba
(
84
,
84
,
84
,
0.48
);
--vt-c-text-light-1
:
var
(
--vt-c-indigo
);
--vt-c-text-light-2
:
rgba
(
60
,
60
,
60
,
0.66
);
--vt-c-text-dark-1
:
var
(
--vt-c-white
);
--vt-c-text-dark-2
:
rgba
(
235
,
235
,
235
,
0.64
);
}
/* semantic color variables for this project */
:root
{
--color-background
:
var
(
--vt-c-white
);
--color-background-soft
:
var
(
--vt-c-white-soft
);
--color-background-mute
:
var
(
--vt-c-white-mute
);
--color-border
:
var
(
--vt-c-divider-light-2
);
--color-border-hover
:
var
(
--vt-c-divider-light-1
);
--color-heading
:
var
(
--vt-c-text-light-1
);
--color-text
:
var
(
--vt-c-text-light-1
);
--section-gap
:
160px
;
}
@media
(
prefers-color-scheme
:
dark
)
{
:root
{
--color-background
:
var
(
--vt-c-black
);
--color-background-soft
:
var
(
--vt-c-black-soft
);
--color-background-mute
:
var
(
--vt-c-black-mute
);
--color-border
:
var
(
--vt-c-divider-dark-2
);
--color-border-hover
:
var
(
--vt-c-divider-dark-1
);
--color-heading
:
var
(
--vt-c-text-dark-1
);
--color-text
:
var
(
--vt-c-text-dark-2
);
}
}
*,
*
::before
,
*
::after
{
box-sizing
:
border-box
;
margin
:
0
;
font-weight
:
normal
;
}
body
{
min-height
:
100vh
;
color
:
var
(
--color-text
);
background
:
var
(
--color-background
);
transition
:
color
0.5s
,
background-color
0.5s
;
line-height
:
1.6
;
font-family
:
Inter
,
-apple-system
,
BlinkMacSystemFont
,
'Segoe UI'
,
Roboto
,
Oxygen
,
Ubuntu
,
Cantarell
,
'Fira Sans'
,
'Droid Sans'
,
'Helvetica Neue'
,
sans-serif
;
font-size
:
15px
;
text-rendering
:
optimizeLegibility
;
-webkit-font-smoothing
:
antialiased
;
-moz-osx-font-smoothing
:
grayscale
;
}
wscf-test-client-vue/src/assets/logo.svg
0 → 100644
View file @
5dd35889
<svg
xmlns=
"http://www.w3.org/2000/svg"
viewBox=
"0 0 261.76 226.69"
><path
d=
"M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z"
fill=
"#41b883"
/><path
d=
"M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z"
fill=
"#34495e"
/></svg>
wscf-test-client-vue/src/assets/main.css
0 → 100644
View file @
5dd35889
@import
'./base.css'
;
#app
{
max-width
:
1280px
;
margin
:
0
auto
;
padding
:
2rem
;
font-weight
:
normal
;
}
a
,
.green
{
text-decoration
:
none
;
color
:
hsla
(
160
,
100%
,
37%
,
1
);
transition
:
0.4s
;
padding
:
3px
;
}
@media
(
hover
:
hover
)
{
a
:
hover
{
background-color
:
hsla
(
160
,
100%
,
37%
,
0.2
);
}
}
@media
(
min-width
:
1024px
)
{
body
{
display
:
flex
;
place-items
:
center
;
}
#app
{
display
:
grid
;
grid-template-columns
:
1
fr
1
fr
;
padding
:
0
2rem
;
}
}
wscf-test-client-vue/src/components/TestFix.vue
0 → 100644
View file @
5dd35889
This diff is collapsed.
Click to expand it.
wscf-test-client-vue/src/components/TestThkGauge.vue
0 → 100644
View file @
5dd35889
<
script
setup
>
import
{
ref
}
from
"vue"
;
import
{
TDGageServiceClient
}
from
"@/serviceClients/thk/ThkGaugeServiceClient"
;
const
gage
=
new
TDGageServiceClient
();
gage
.
Init
(
"api/ThkGauge"
,
"127.0.0.1:5540"
);
const
targetpos
=
ref
(
0
);
async
function
scan
(){
await
gage
.
Scan
();
}
async
function
org
(){
await
gage
.
Home
();
}
async
function
forw
(){
await
gage
.
Forward
();
}
async
function
backw
(){
await
gage
.
Backward
();
}
async
function
stop
(){
await
gage
.
Stop
();
}
async
function
runto
(){
await
gage
.
Runto
(
targetpos
.
value
);
}
function
disconnect
(){
gage
.
Dispose
();
}
function
connect
(){
gage
.
ReConnect
();
}
</
script
>
<
template
>
<div
>
<h1>
Test TDGageServiceClient
</h1>
<div
style=
"display: flex; flex-direction: row;"
>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"connect()"
>
CONNECT
</button>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"disconnect()"
>
DISCONNECT
</button>
</div>
<p
style=
"margin: 3px;"
>
TDGageServiceClient.Data =
{{
gage
.
Data
}}
</p>
<div
style=
"display: flex; flex-direction: row; margin: 3px;"
v-for=
"(value, key) in gage.Data.DynArea"
>
<label
style=
"width: 150px;"
>
{{
key
}}
</label>
<span
style=
"margin-left: 20px; padding-left: 5px; padding-right: 5px;"
>
{{
gage
.
Data
.
DynArea
[
key
]
}}
</span>
</div>
<div
style=
"display: flex; flex-direction: row;"
>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"scan()"
>
SCAN
</button>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"org()"
>
ORG
</button>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"forw()"
>
FORW
</button>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"backw()"
>
BACKW
</button>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"stop()"
>
STOP
</button>
</div>
<div
style=
"display: flex; flex-direction: row;"
>
<button
style=
"padding: 5px 20px; margin: 5px;"
@
click=
"runto()"
>
RUNTO
</button>
<input
type=
"text"
v-model=
"targetpos"
>
</div>
</div>
</
template
>
<
style
scoped
>
</
style
>
wscf-test-client-vue/src/components/icons/IconCommunity.vue
0 → 100644
View file @
5dd35889
<
template
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"20"
height=
"20"
fill=
"currentColor"
>
<path
d=
"M15 4a1 1 0 1 0 0 2V4zm0 11v-1a1 1 0 0 0-1 1h1zm0 4l-.707.707A1 1 0 0 0 16 19h-1zm-4-4l.707-.707A1 1 0 0 0 11 14v1zm-4.707-1.293a1 1 0 0 0-1.414 1.414l1.414-1.414zm-.707.707l-.707-.707.707.707zM9 11v-1a1 1 0 0 0-.707.293L9 11zm-4 0h1a1 1 0 0 0-1-1v1zm0 4H4a1 1 0 0 0 1.707.707L5 15zm10-9h2V4h-2v2zm2 0a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2zm1 1v6h2V7h-2zm0 6a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2zm-1 1h-2v2h2v-2zm-3 1v4h2v-4h-2zm1.707 3.293l-4-4-1.414 1.414 4 4 1.414-1.414zM11 14H7v2h4v-2zm-4 0c-.276 0-.525-.111-.707-.293l-1.414 1.414C5.42 15.663 6.172 16 7 16v-2zm-.707 1.121l3.414-3.414-1.414-1.414-3.414 3.414 1.414 1.414zM9 12h4v-2H9v2zm4 0a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2zm3-3V3h-2v6h2zm0-6a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2zm-3-3H3v2h10V0zM3 0a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V0zM0 3v6h2V3H0zm0 6a3 3 0 0 0 3 3v-2a1 1 0 0 1-1-1H0zm3 3h2v-2H3v2zm1-1v4h2v-4H4zm1.707 4.707l.586-.586-1.414-1.414-.586.586 1.414 1.414z"
/>
</svg>
</
template
>
wscf-test-client-vue/src/components/icons/IconDocumentation.vue
0 → 100644
View file @
5dd35889
<
template
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"20"
height=
"17"
fill=
"currentColor"
>
<path
d=
"M11 2.253a1 1 0 1 0-2 0h2zm-2 13a1 1 0 1 0 2 0H9zm.447-12.167a1 1 0 1 0 1.107-1.666L9.447 3.086zM1 2.253L.447 1.42A1 1 0 0 0 0 2.253h1zm0 13H0a1 1 0 0 0 1.553.833L1 15.253zm8.447.833a1 1 0 1 0 1.107-1.666l-1.107 1.666zm0-14.666a1 1 0 1 0 1.107 1.666L9.447 1.42zM19 2.253h1a1 1 0 0 0-.447-.833L19 2.253zm0 13l-.553.833A1 1 0 0 0 20 15.253h-1zm-9.553-.833a1 1 0 1 0 1.107 1.666L9.447 14.42zM9 2.253v13h2v-13H9zm1.553-.833C9.203.523 7.42 0 5.5 0v2c1.572 0 2.961.431 3.947 1.086l1.107-1.666zM5.5 0C3.58 0 1.797.523.447 1.42l1.107 1.666C2.539 2.431 3.928 2 5.5 2V0zM0 2.253v13h2v-13H0zm1.553 13.833C2.539 15.431 3.928 15 5.5 15v-2c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM5.5 15c1.572 0 2.961.431 3.947 1.086l1.107-1.666C9.203 13.523 7.42 13 5.5 13v2zm5.053-11.914C11.539 2.431 12.928 2 14.5 2V0c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM14.5 2c1.573 0 2.961.431 3.947 1.086l1.107-1.666C18.203.523 16.421 0 14.5 0v2zm3.5.253v13h2v-13h-2zm1.553 12.167C18.203 13.523 16.421 13 14.5 13v2c1.573 0 2.961.431 3.947 1.086l1.107-1.666zM14.5 13c-1.92 0-3.703.523-5.053 1.42l1.107 1.666C11.539 15.431 12.928 15 14.5 15v-2z"
/>
</svg>
</
template
>
wscf-test-client-vue/src/components/icons/IconEcosystem.vue
0 → 100644
View file @
5dd35889
<
template
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"18"
height=
"20"
fill=
"currentColor"
>
<path
d=
"M11.447 8.894a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm0 1.789a1 1 0 1 0 .894-1.789l-.894 1.789zM7.447 7.106a1 1 0 1 0-.894 1.789l.894-1.789zM10 9a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0H8zm9.447-5.606a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm2 .789a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zM18 5a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0h-2zm-5.447-4.606a1 1 0 1 0 .894-1.789l-.894 1.789zM9 1l.447-.894a1 1 0 0 0-.894 0L9 1zm-2.447.106a1 1 0 1 0 .894 1.789l-.894-1.789zm-6 3a1 1 0 1 0 .894 1.789L.553 4.106zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zm-2-.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 2.789a1 1 0 1 0 .894-1.789l-.894 1.789zM2 5a1 1 0 1 0-2 0h2zM0 7.5a1 1 0 1 0 2 0H0zm8.553 12.394a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 1a1 1 0 1 0 .894 1.789l-.894-1.789zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zM8 19a1 1 0 1 0 2 0H8zm2-2.5a1 1 0 1 0-2 0h2zm-7.447.394a1 1 0 1 0 .894-1.789l-.894 1.789zM1 15H0a1 1 0 0 0 .553.894L1 15zm1-2.5a1 1 0 1 0-2 0h2zm12.553 2.606a1 1 0 1 0 .894 1.789l-.894-1.789zM17 15l.447.894A1 1 0 0 0 18 15h-1zm1-2.5a1 1 0 1 0-2 0h2zm-7.447-5.394l-2 1 .894 1.789 2-1-.894-1.789zm-1.106 1l-2-1-.894 1.789 2 1 .894-1.789zM8 9v2.5h2V9H8zm8.553-4.894l-2 1 .894 1.789 2-1-.894-1.789zm.894 0l-2-1-.894 1.789 2 1 .894-1.789zM16 5v2.5h2V5h-2zm-4.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zm-2.894-1l-2 1 .894 1.789 2-1L8.553.106zM1.447 5.894l2-1-.894-1.789-2 1 .894 1.789zm-.894 0l2 1 .894-1.789-2-1-.894 1.789zM0 5v2.5h2V5H0zm9.447 13.106l-2-1-.894 1.789 2 1 .894-1.789zm0 1.789l2-1-.894-1.789-2 1 .894 1.789zM10 19v-2.5H8V19h2zm-6.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zM2 15v-2.5H0V15h2zm13.447 1.894l2-1-.894-1.789-2 1 .894 1.789zM18 15v-2.5h-2V15h2z"
/>
</svg>
</
template
>
wscf-test-client-vue/src/components/icons/IconSupport.vue
0 → 100644
View file @
5dd35889
<
template
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"20"
height=
"20"
fill=
"currentColor"
>
<path
d=
"M10 3.22l-.61-.6a5.5 5.5 0 0 0-7.666.105 5.5 5.5 0 0 0-.114 7.665L10 18.78l8.39-8.4a5.5 5.5 0 0 0-.114-7.665 5.5 5.5 0 0 0-7.666-.105l-.61.61z"
/>
</svg>
</
template
>
wscf-test-client-vue/src/components/icons/IconTooling.vue
0 → 100644
View file @
5dd35889
<!-- This icon is from <https://github.com/Templarian/MaterialDesign>, distributed under Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) license-->
<
template
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
aria-hidden=
"true"
role=
"img"
class=
"iconify iconify--mdi"
width=
"24"
height=
"24"
preserveAspectRatio=
"xMidYMid meet"
viewBox=
"0 0 24 24"
>
<path
d=
"M20 18v-4h-3v1h-2v-1H9v1H7v-1H4v4h16M6.33 8l-1.74 4H7v-1h2v1h6v-1h2v1h2.41l-1.74-4H6.33M9 5v1h6V5H9m12.84 7.61c.1.22.16.48.16.8V18c0 .53-.21 1-.6 1.41c-.4.4-.85.59-1.4.59H4c-.55 0-1-.19-1.4-.59C2.21 19 2 18.53 2 18v-4.59c0-.32.06-.58.16-.8L4.5 7.22C4.84 6.41 5.45 6 6.33 6H7V5c0-.55.18-1 .57-1.41C7.96 3.2 8.44 3 9 3h6c.56 0 1.04.2 1.43.59c.39.41.57.86.57 1.41v1h.67c.88 0 1.49.41 1.83 1.22l2.34 5.39z"
fill=
"currentColor"
></path>
</svg>
</
template
>
wscf-test-client-vue/src/main.js
0 → 100644
View file @
5dd35889
import
'./assets/main.css'
import
{
createApp
}
from
'vue'
import
App
from
'./App.vue'
const
app
=
createApp
(
App
);
app
.
mount
(
'#app'
);
wscf-test-client-vue/src/serviceClients/thk/FixServiceClient.js
0 → 100644
View file @
5dd35889
import
{
reactive
}
from
"vue"
;
import
Reflect_SeviceClient
from
"@/wscf-client/Reflect_SeviceClient"
;
/**
*/
class
FixServiceClient
extends
Reflect_SeviceClient
{
constructor
(){
super
();
this
.
Data
=
reactive
({
/**
* 定点数据更新时间
* @type {DateTime}
*/
UpdateTime
:
""
,
});
}
/**
* 获取定点图数据
* @returns {{
* ADs:int[],//数据, AD数据
* thicks:double[],//数据, 厚度数据
* ts:TimeSpan,//单数据时间间隔
* time:DateTime//开始时间点
* }}
*/
async
GetFixDatas
(){
return
await
this
.
SyncCall
(
'GetFixDatas'
);
}
}
export
{
FixServiceClient
};
\ No newline at end of file
wscf-test-client-vue/src/serviceClients/thk/Misc.js
0 → 100644
View file @
5dd35889
/**
* 方向定义
* @readonly
* @enum {0|1|2}
*/
const
DIRECTION
=
{
/**
* 停止
* @type {2}
*/
FIX
:
2
,
/**
* 正行
* @type {1}
*/
FORWARD
:
1
,
/**
* 反行
* @type {0}
*/
BACKWARD
:
0
};
/**
* 电机类型
* @readonly
* @enum {0|1|2}
*/
const
MOTORTYPE
=
{
/**
* 没有
* @type {0}
* */
NULL
:
0
,
/**
* 变频器
* @type {1}
* */
VF0
:
1
,
/**
* 伺服电器
* @type {2}
*/
SERVO
:
2
};
export
{
DIRECTION
,
MOTORTYPE
};
\ No newline at end of file
wscf-test-client-vue/src/serviceClients/thk/ThkGaugeServiceClient.js
0 → 100644
View file @
5dd35889
import
{
reactive
}
from
"vue"
;
import
Reflect_SeviceClient
from
"@/wscf-client/Reflect_SeviceClient"
;
/**
* 系统状态
* @readonly
* @enum {0|1|2|3|4|5|7|10|11|12}
*/
const
CTRL_STATE
=
{
/** 定点 @type {0} */
FIX
:
0
,
/** 归零 @type {1} */
ORG
:
1
,
/** 扫描 @type {2} */
SCAN
:
2
,
/** 前进 @type {3} */
FORW
:
3
,
/** 后退 @type {4} */
BACKW
:
4
,
/** 停止 @type {5} */
STOP
:
5
,
/** 机架修正 @type {7} */
CORR
:
7
,
/** 运行至 @type {10} */
RUNNING
:
10
,
/** 连接断开 @type {11} */
DISCONNECTED
:
11
,
/** 获取机架信息 @type {12} */
GAGEINFO
:
12
};
/**
*/
class
TDGageServiceClient
extends
Reflect_SeviceClient
{
constructor
(){
super
();
this
.
Data
=
reactive
({
DynArea
:{
Thk
:
100.23
,
Position
:
0
,
PosMm
:
0
,
AD
:
12345
,
ADMax
:
65535
,
Position2
:
0
,
DataValid
:
false
,
Width
:
0
,
FilmVelocity
:
0
,
FilmPosition
:
0
,
Velocity
:
0
,
/**
* @type {CTRL_STATE}
*/
ControllerState
:
CTRL_STATE
.
FIX
,
AutoScanCounter
:
5
,
IsTest
:
false
,
IStatus
:
0xffff
,
OStatus
:
0xffff
,
IsIOShowNo
:
false
,
Hrs
:
3
,
FLYADIsConnect
:
false
,
SecuteLock
:
false
}
});
}
/**
* @description 扫描
*/
async
Scan
(){
return
await
this
.
SyncCall
(
'Scan'
);
}
/**
* @description 停止
*/
async
Stop
()
{
return
await
this
.
SyncCall
(
'Stop'
);
}
/**
* @description 归零
*/
async
Home
()
{
return
await
this
.
SyncCall
(
'Home'
);
}
/**
* @description 前进
*/
async
Forward
()
{
return
await
this
.
SyncCall
(
'Forward'
);
}
/**
* @description 后退
*/
async
Backward
()
{
return
await
this
.
SyncCall
(
'Backward'
);
}
/**
* @description 运行到targetPos
*/
async
Runto
(
targetPos
)
{
this
.
SyncCall
(
'Runto'
,
targetPos
);
}
}
export
{
TDGageServiceClient
,
CTRL_STATE
};
\ No newline at end of file
wscf-test-client-vue/src/wscf-client/COMMON.js
0 → 100644
View file @
5dd35889
/**
*
* @param {string} nodePath
*/
function
FindNode
(
nodePath
){
var
regex
=
/
\[(\d
+
)\]
/
;
var
eval_str
=
""
;
var
paths
=
nodePath
.
split
(
'.'
);
for
(
let
i
=
0
;
i
<
paths
.
length
;
i
++
){
var
path
=
paths
[
i
];
var
matchs
=
path
.
match
(
regex
);
if
(
matchs
){
//能匹配上,是数组 matchs[1] 是数组序号
eval_str
+=
matchs
[
0
];
}
else
{
//是对象
eval_str
+=
`.
${
path
}
`
;
}
}
return
eval_str
;
}
export
{
FindNode
};
\ No newline at end of file
wscf-test-client-vue/src/wscf-client/ReflectSeviceClientAssistant.js
0 → 100644
View file @
5dd35889
import
{
v4
as
uuid
}
from
"uuid"
;
import
{
FindNode
}
from
"./COMMON"
;
export
default
class
ReflectSeviceClientAssistant
{
constructor
(){
//#region public
//#endregion
//#region private
/**
* @description 发送数据
* @type (data:string)=>void
*/
this
.
_send
=
null
;
/**
* @description 代理对象
* @type Reflect_SeviceClient
*/
this
.
_obj
=
null
;
/**
* @description 缓存 发出 CALL_GetAllProperties指令,到收到回复 之间时段的 全部推送
* @type Array<{name:string,data:object}>
*/
this
.
_pushInfoList
=
[];
/**
* @description method 的回调函数
* @type Array<{
* guid:string,
* asyncDelegate:(context:object,retData:object)=>void,
* asyncContext:object}>();
*/
this
.
_anyMethodInvokes
=
[];
//#endregion
}
//#region public
/**
*
* @param {*} obj
*/
Init
(
obj
,
send
)
{
this
.
_obj
=
obj
;
this
.
_send
=
send
;
}
/**
* @description 第1次连接成功
*/
OnOpen
(){
console
.
log
(
`OnOpen`
);
//获取全部属性
this
.
GetValue
(
null
,(
context
,
retData
)
=>
{
console
.
log
(
`获取全部属性
${
retData
}
`
);
//同步完成
this
.
_obj
.
IsSynced
.
value
=
true
;
//处理全部event
this
.
_dealPushInfoList
();
},
null
);
}
OnClose
(){
console
.
log
(
`OnClose`
);
this
.
_obj
.
IsSynced
.
value
=
false
;
}
OnMessage
(
data
){
var
pkgData
=
JSON
.
parse
(
data
);
console
.
log
(
`OnMessage
${
pkgData
}
`
);
//可能是 Event, 也可能是 Method
if
(
!
pkgData
.
guid
){
//EVENT
if
(
!
this
.
_obj
.
IsSynced
.
value
){
//还没同步完成,先缓存
this
.
_pushInfoList
.
push
({
name
:
pkgData
.
name
,
data
:
pkgData
.
data
});
return
;
}
else
{
this
.
_receive_EVENT
(
pkgData
.
name
,
pkgData
.
data
);
}
}
else
{
//METHOD
var
idx
=
this
.
_anyMethodInvokes
.
findIndex
(
ami
=>
ami
.
guid
==
pkgData
.
guid
);
if
(
idx
==-
1
){
//没有这个GUID
//异常!!!应该有对应的回调
throw
new
Error
(
`
${
pkgData
.
name
}
异常!!!应该有回调`
);
}
var
anyMethodInvoke
=
this
.
_anyMethodInvokes
[
idx
];
this
.
_receive_CALL_MethodInvoke
(
pkgData
.
name
,
pkgData
.
data
,
anyMethodInvoke
.
asyncDelegate
,
anyMethodInvoke
.
asyncContext
);
//删除
this
.
_anyMethodInvokes
.
splice
(
idx
,
1
);
}
}
GetValue
(
nodePath
,
asyncDelegate
,
asyncContext
){
var
parameters
=
nodePath
;
this
.
_send_CALL_MethodInvoke
(
"GetValue"
,
parameters
,
(
context
,
retData
)
=>
{
this
.
_receive_EVENT_PropertyChanged
(
retData
);
if
(
context
.
asyncDelegate
!=
null
){
context
.
asyncDelegate
(
context
.
asyncContext
,
retData
);
}
},
{
asyncDelegate
,
asyncContext
});
}
SetValue
(
value
,
nodePath
,
asyncDelegate
,
asyncContext
){
var
parameters
=
{
data
:
value
};
if
(
nodePath
!=
null
){
parameters
.
name
=
nodePath
;
}
console
.
log
(
JSON
.
stringify
(
parameters
));
this
.
_send_CALL_MethodInvoke
(
"SetValue"
,
parameters
,
asyncDelegate
,
asyncContext
);
}
Call
(
methodName
,
parameters
,
asyncDelegate
,
asyncContext
){
this
.
_send_CALL_MethodInvoke
(
methodName
,
parameters
,
asyncDelegate
,
asyncContext
);
}
//#endregion
//#region private
/**
* @description 处理全部 缓存的推送数据
*/
_dealPushInfoList
(){
for
(
let
i
=
0
;
i
<
this
.
_pushInfoList
.
length
;
i
++
){
var
pushInfoData
=
this
.
_pushInfoList
[
i
];
this
.
_receive_EVENT
(
pushInfoData
.
name
,
pushInfoData
.
data
);
}
this
.
_pushInfoList
=
[];
}
/**
* @description 处理 从服务器 回复的 PUSH_PropertyChanged
* @param {{name:string,data:object}} data
*/
_receive_EVENT_PropertyChanged
(
data
){
console
.
log
(
`属性改变
${
data
}
`
);
this
.
_obj
.
IsInPushValue
=
true
;
//需要更新的 属性对象节点
var
nodePath
=
data
.
name
;
//数据
var
obj
=
data
.
data
;
if
(
nodePath
==
null
||
nodePath
==
'.'
){
//根
for
(
let
key
in
obj
){
var
value
=
obj
[
key
];
//this._obj.Data 是VUE 的 reactive()
this
.
_obj
.
Data
[
key
]
=
value
;
}
}
else
{
var
path_str
=
FindNode
(
nodePath
);
for
(
let
key
in
obj
){
var
value
=
obj
[
key
];
var
eval_str2
=
`this._obj.Data
${
path_str
}
.
${
key
}
=value`
;
console
.
log
(
eval_str2
);
eval
(
eval_str2
);
}
}
this
.
_obj
.
IsInPushValue
=
false
;
}
/**
* @description 处理 从服务器 回复的 EVENT
* @param {string} eventName
* @param {object} retData
*/
_receive_EVENT
(
eventName
,
retData
){
console
.
log
(
`事件触发
${
eventName
}
${
retData
}
`
);
if
(
eventName
==
"PropertyChanged"
){
this
.
_receive_EVENT_PropertyChanged
(
retData
);
}
else
{
this
.
_obj
.
EventEmitter
.
emit
(
eventName
,
retData
);
}
}
/**
* @description 处理 从服务器 回复的 CALL_MethodInvoke
* @param {string} methodName
* @param {object} retData
* @param {(context:object,retData:object)=>void} asyncDelegate
* @param {object} asyncContext
*/
_receive_CALL_MethodInvoke
(
methodName
,
retData
,
asyncDelegate
,
asyncContext
){
console
.
log
(
`函数触发
${
methodName
}
${
retData
}
`
);
if
(
asyncDelegate
!=
null
)
asyncDelegate
(
asyncContext
,
retData
);
}
/**
* @description 发送 CALL_MethodInvoke 请求到服务
* @param {string} methodName
* @param {object} methodParams
* @param {(context:object,retData:object)=>void} asyncDelegate
* @param {object} asyncContext
*/
_send_CALL_MethodInvoke
(
methodName
,
methodParams
,
asyncDelegate
,
asyncContext
){
var
pkgData
=
{
guid
:
uuid
(),
name
:
methodName
};
if
(
methodParams
!=
null
)
pkgData
.
data
=
methodParams
;
this
.
_anyMethodInvokes
.
push
(
{
guid
:
pkgData
.
guid
,
asyncDelegate
:
asyncDelegate
,
asyncContext
:
asyncContext
});
var
json
=
JSON
.
stringify
(
pkgData
);
console
.
log
(
`send_CALL
${
json
}
`
);
this
.
_send
(
json
);
}
//#endregion
}
\ No newline at end of file
wscf-test-client-vue/src/wscf-client/Reflect_SeviceClient.js
0 → 100644
View file @
5dd35889
import
{
ref
,
reactive
}
from
"vue"
;
import
WebSocketClient
from
"./WebSocketClient"
;
import
ReflectSeviceClientAssistant
from
"./ReflectSeviceClientAssistant"
;
import
EventEmitter
from
"EventEmitter"
;
/** abstract */
export
default
class
Reflect_SeviceClient
extends
WebSocketClient
{
constructor
(){
super
();
//-----------------------------------------------------------------
// public
/**
* @description 已经同步完成;已经收到了 CALL_GetAllProperties, 全部属性都与服务器一致;
* @type bool
*/
this
.
IsSynced
=
ref
(
false
);
/**
* @description 当前 INotifyPropertyChanged 对象 引发了 PropertyChanged, 是由于 接收到数据导致的
* @type bool
*/
this
.
IsInPushValue
=
false
;
this
.
Data
=
reactive
({});
this
.
EventEmitter
=
new
EventEmitter
();
//-----------------------------------------------------------------
// private
/**
* @description
* @type ReflectSeviceClientAssistant
*/
this
.
_assistant
=
new
ReflectSeviceClientAssistant
();
}
//#region public
Init
(
serverName
,
addr
){
super
.
Init
(
serverName
,
addr
);
this
.
_assistant
.
Init
(
this
,
(
data
)
=>
this
.
send
(
data
));
}
/**
* @description 获取属性
* @param {string} nodePath 节点
* @param {(asyncContext:object,retData:object)=>void} asyncDelegate 回调
* @param {object} asyncContext 上下文
*/
GetValue
(
nodePath
=
null
,
asyncDelegate
=
null
,
asyncContext
=
null
){
this
.
_assistant
.
GetValue
(
nodePath
,
asyncDelegate
,
asyncContext
);
}
/**
* @description 获取属性 同步版
* @param {string} nodePath 节点
*/
async
SyncGetValue
(
nodePath
=
null
){
return
await
new
Promise
((
resolve
)
=>
{
this
.
GetValue
(
nodePath
,
(
context
,
retData
)
=>
{
context
(
retData
);
},
resolve
);
});
}
/**
* @description 设置属性
* @param {object} value 属性值
* @param {string} nodePath 节点
* @param {(asyncContext:object,retData:object)=>void} asyncDelegate 回调
* @param {object} asyncContext 上下文
*/
SetValue
(
value
,
nodePath
=
null
,
asyncDelegate
=
null
,
asyncContext
=
null
){
this
.
_assistant
.
SetValue
(
value
,
nodePath
,
asyncDelegate
,
asyncContext
);
}
/**
* @description 设置属性 同步版
* @param {object} value 属性值
* @param {string} nodePath 节点
*/
async
SyncSetValue
(
value
,
nodePath
=
null
){
return
await
new
Promise
((
resolve
)
=>
{
this
.
SetValue
(
value
,
nodePath
,
(
context
,
retData
)
=>
{
context
(
retData
);
},
resolve
);
});
}
/**
* @description 远程方法调用
* @param {string} methodName 方法名
* @param {object} parameters 参数
* @param {(asyncContext:object,retData:object)=>void} asyncDelegate 回调
* @param {object} asyncContext 上下文
*/
Call
(
methodName
,
parameters
=
null
,
asyncDelegate
=
null
,
asyncContext
=
null
){
this
.
_assistant
.
Call
(
methodName
,
parameters
,
asyncDelegate
,
asyncContext
);
}
/**
* @description 远程方法调用 同步版
* @param {string} methodName 方法名
* @param {object} parameters 参数
*/
async
SyncCall
(
methodName
,
parameters
=
null
){
return
await
new
Promise
((
resolve
)
=>
{
this
.
Call
(
methodName
,
parameters
,
(
context
,
retData
)
=>
{
context
(
retData
);
},
resolve
);
});
}
//#endregion
//#region protected override
onOpen
(){
this
.
_assistant
.
OnOpen
();
}
onMessage
(
data
){
this
.
_assistant
.
OnMessage
(
data
);
}
onClose
(){
this
.
_assistant
.
OnClose
();
}
//#endregion
//#region protected
//#endregion
}
\ No newline at end of file
wscf-test-client-vue/src/wscf-client/SubPropertyNode.js
0 → 100644
View file @
5dd35889
/**
* 子属性节点,用于注册 INotifyPropertyChanged
*/
export
default
class
SubPropertyNode
{
constructor
(){
//#region public
/**
* @description 下级节点
* @type Array<SubPropertyNode>
*/
this
.
Children
=
[];
/**
* @description 下级节点
* @type SubPropertyNode
*/
this
.
Parent
=
null
;
/**
* @description 节点名称
* 正常情况,就是属性的Name;
* 但,当为数组时, 它的下级就是数组的元素。 元素不是数组的属性。 元素的name为 $"[{序号}]"
* @type string
*/
this
.
Name
=
""
;
/**
* @description 节点对象
* @type object
*/
this
.
Obj
=
null
;
/**
* @description 对象的模板接口。默认就是 Obj.GetType()
* @type prototype
*/
this
.
InterfaceType
=
null
;
/**
* @description 是数组
* @type bool
*/
this
.
IsArray
=
false
;
/**
* @description
* @type PropertyChangedEventHandler
*/
this
.
PropertyChanged
=
_PropertyChanged
;
/**
* @description
* @type SubPropertyChangedEventHandler
*/
this
.
SubPropertyChanged
=
null
;
//#endregion
}
_PropertyChanged
(
sender
,
e
)
{
//处理[PropertyPush]重新注册问题
COMMON
.
PropertyChanged_reInitPropertyPush
(
this
,
e
);
SubPropertyChanged
?.
Invoke
(
this
,
e
);
}
}
\ No newline at end of file
wscf-test-client-vue/src/wscf-client/WebSocketClient.js
0 → 100644
View file @
5dd35889
import
{
ref
}
from
"vue"
;
/** abstract */
export
default
class
WebSocketClient
{
constructor
()
{
//-----------------------------------------------------------------
// public
/**
* @description 连接中
* @type Ref<bool>
*/
this
.
IsConnected
=
ref
(
false
);
/**
* @description 重连剩余秒数
* @type Ref<number>
*/
this
.
RetrySurplusSec
=
ref
(
0
);
/**
* @description 服务名称 ws://{Addr}/{ServiceName}
* @type Ref<string>
*/
this
.
ServiceName
=
ref
(
""
);
/**
* @description 服务地址 ws://{Addr}/{ServiceName}
* @type Ref<string>
*/
this
.
Addr
=
ref
(
"localhost:5540"
);
/**
* @description URL ws://{Addr}/{ServiceName}
* @type Ref<string>
*/
this
.
URL
=
()
=>
`ws://
${
this
.
Addr
.
value
}
/
${
this
.
ServiceName
.
value
}
`
//-----------------------------------------------------------------
// protected
/**
* @description WebSocket实例
* @type WebSocket
*/
this
.
ws
=
null
;
//-----------------------------------------------------------------
// private
/** 连接重试计时 */
this
.
_retryStopwatch
=
new
Date
();
/** 重连定时器 */
this
.
_retryTimer
=
0
;
}
//-----------------------------------------------------------------
// public
/**
* @description 初始化 然后直接连接
* @param {string} serviceName 服务名称
* @param {string} addr 服务地址
*/
Init
(
serviceName
,
addr
){
this
.
ServiceName
.
value
=
serviceName
;
this
.
Addr
.
value
=
addr
;
this
.
_connect
();
}
/**
* @description 重连
* @param {string} addr
*/
ReConnect
(
addr
=
null
)
{
if
(
addr
!=
null
&&
addr
!=
''
)
this
.
Addr
.
value
=
addr
;
if
(
this
.
_retryTimer
){
this
.
_stopRetry
();
}
if
(
this
.
ws
)
this
.
_close
();
this
.
_connect
();
}
/**
* @description 释放资源
*/
Dispose
()
{
if
(
this
.
_retryTimer
){
this
.
_stopRetry
();
}
if
(
this
.
ws
)
this
.
_close
();
}
//-----------------------------------------------------------------
// protected
/**
* @description 发送数据
* @param {string} data
*/
send
(
data
)
{
if
(
this
.
ws
.
readyState
!=
WebSocket
.
OPEN
)
{
console
.
error
(
`this.ws.readyState (
${
this
.
ws
.
readyState
}
) != WebSocket.OPEN`
);
return
;
}
this
.
ws
.
send
(
data
);
}
//-----------------------------------------------------------------
// protected abstract
/**
* @description 消息事件,需要重载
* @protected abstract
* @param {string} msg
*/
onMessage
(
msg
){
//throw new Error('you should override "onMessage"');
console
.
error
(
'you should override "onMessage"'
);
}
/**
* @description 连接成功事件,需要重载
* @protected abstract
*/
onOpen
(){
//throw new Error('you should override "onOpen"');
console
.
error
(
'you should override "onOpen"'
);
}
/**
* @description 连接断开事件,需要重载
* @protected abstract
*/
onClose
(){
//throw new Error('you should override "onClose"');
console
.
error
(
'you should override "onClose"'
);
}
//-----------------------------------------------------------------
// private
_connect
()
{
//WebSocket 在 new 时已经异步connect, 失败会调用onclose事件,需要重新new
console
.
log
(
`this.ws = new WebSocket(
${
this
.
URL
()}
)`
);
this
.
ws
=
new
WebSocket
(
this
.
URL
());
this
.
ws
.
onmessage
=
(
ev
)
=>
{
console
.
log
(
`onmessage(
${
ev
}
)`
);
console
.
log
(
`ev.data=
${
ev
.
data
}
`
);
this
.
onMessage
(
ev
.
data
);
};
this
.
ws
.
onclose
=
(
ev
)
=>
{
console
.
log
(
`onclose(
${
ev
}
)`
);
//连接断开,重连
this
.
_retry
();
if
(
this
.
IsConnected
.
value
){
this
.
IsConnected
.
value
=
false
;
this
.
onClose
();
}
}
this
.
ws
.
onerror
=
(
ev
)
=>
{
console
.
log
(
`onerror(
${
ev
}
)`
);
//连接断开,重连
// this._retry();
// if(this.IsConnected.value){
// this.IsConnected.value = false;
// this.onClose();
// }
}
this
.
ws
.
onopen
=
(
ev
)
=>
{
console
.
log
(
`onopen(
${
ev
}
)`
);
this
.
IsConnected
.
value
=
true
;
this
.
onOpen
();
}
}
_close
()
{
this
.
ws
.
close
();
this
.
ws
.
onmessage
=
null
;
this
.
ws
.
onclose
=
null
;
this
.
ws
.
onerror
=
null
;
this
.
ws
.
onopen
=
null
;
this
.
ws
=
null
;
}
_retry
(){
this
.
_retry_stopwatch
=
new
Date
();
this
.
_updateRetryStatus
();
if
(
this
.
_retryTimer
)
this
.
_stopRetry
();
this
.
_startRetry
();
}
_stopRetry
(){
clearInterval
(
this
.
_retryTimer
);
this
.
_retryTimer
=
0
;
}
_startRetry
(){
if
(
this
.
_retryTimer
)
return
;
this
.
_retryTimer
=
setInterval
(()
=>
{
if
(
this
.
_updateRetryStatus
())
{
console
.
log
(
`重连`
);
this
.
_stopRetry
();
this
.
_connect
();
}
},
2000
);
}
/**
* 更新 RetrySurplusSec 值
* @returns 需要触发connect = true
*/
_updateRetryStatus
(){
var
now
=
new
Date
();
var
elapsed_ms
=
now
.
getTime
()
-
this
.
_retry_stopwatch
.
getTime
();
elapsed_ms
=
5000
-
elapsed_ms
;
this
.
RetrySurplusSec
.
value
=
Math
.
floor
(((
elapsed_ms
>
0
)
?
elapsed_ms
:
0
)
/
1000
);
return
(
this
.
RetrySurplusSec
.
value
<=
0
);
}
}
\ No newline at end of file
wscf-test-client-vue/vite.config.js
0 → 100644
View file @
5dd35889
import
{
fileURLToPath
,
URL
}
from
'node:url'
import
{
defineConfig
}
from
'vite'
import
vue
from
'@vitejs/plugin-vue'
// https://vite.dev/config/
export
default
defineConfig
({
plugins
:
[
vue
(),
],
resolve
:
{
alias
:
{
'@'
:
fileURLToPath
(
new
URL
(
'./src'
,
import
.
meta
.
url
))
}
}
})
流延模块名称.txt
0 → 100644
View file @
5dd35889
BoltMapFilmCasting 分区表
BorderSearch 边界查找
BulkDb 数据库操作(主界面的图)
Curve AD曲线
FilmCastingProfile 产品配方
Fix 定点服务(定点图的数据)
FlyAd AD盒里面的参数(数据采集器)
GetSample 样品采集
InitParam 系统参数
Reject 剔除
ScanCorr 机架修正
ScanWarning 扫描报警
ThkGauge 动态区及扫描停止动作
WarningSystem 报警系统
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment