Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
web-project
Project
Project
Details
Activity
Releases
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
海康威视
web-project
Commits
9dece472
Commit
9dece472
authored
Aug 14, 2024
by
xuke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
天气字段规范
parent
c2082b7c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
398 additions
and
392 deletions
+398
-392
PhenomenonPage.vue
src/views/SchedulingPage/PhenomenonPage.vue
+173
-161
WindManagePage.vue
src/views/SchedulingPage/WindManagePage.vue
+100
-151
AddWindow.vue
src/views/SchedulingPage/weatherManageSub/AddWindow.vue
+7
-7
ReviseWindow.vue
src/views/SchedulingPage/weatherManageSub/ReviseWindow.vue
+118
-73
No files found.
src/views/SchedulingPage/PhenomenonPage.vue
View file @
9dece472
This diff is collapsed.
Click to expand it.
src/views/SchedulingPage/WindManagePage.vue
View file @
9dece472
This diff is collapsed.
Click to expand it.
src/views/SchedulingPage/weatherManageSub/AddWindow.vue
View file @
9dece472
...
...
@@ -126,7 +126,7 @@ const rules = reactive({
<el-row>
<el-col
:span=
"8"
class=
"content-col-label"
>
温度:
</el-col>
<el-col
:span=
"16"
class=
"content-col-value"
>
<el-form-item
prop=
"temperature"
>
<el-form-item
prop=
"temperature"
style=
"padding: 0;margin: 0;"
>
<el-input
maxlength=
"11"
:input-style=
"inputStyle"
v-model=
"addData.temperature"
style=
"width: 510px"
/>
</el-form-item>
</el-col>
...
...
@@ -135,7 +135,7 @@ const rules = reactive({
<el-row>
<el-col
:span=
"8"
class=
"content-col-label"
>
风速:
</el-col>
<el-col
:span=
"16"
class=
"content-col-value"
>
<el-form-item
prop=
"wind"
>
<el-form-item
prop=
"wind"
style=
"padding: 0;margin: 0;"
>
<el-input
:input-style=
"inputStyle"
maxlength=
"11"
v-model=
"addData.wind"
style=
"width: 510px"
/>
</el-form-item>
</el-col>
...
...
@@ -143,7 +143,7 @@ const rules = reactive({
<el-row>
<el-col
:span=
"8"
class=
"content-col-label"
>
光照:
</el-col>
<el-col
:span=
"16"
class=
"content-col-value"
>
<el-form-item
prop=
"illumination"
>
<el-form-item
prop=
"illumination"
style=
"padding: 0;margin: 0;"
>
<el-input
:input-style=
"inputStyle"
maxlength=
"11"
v-model=
"addData.illumination"
style=
"width: 510px"
/>
</el-form-item>
...
...
@@ -153,7 +153,7 @@ const rules = reactive({
<el-row>
<el-col
:span=
"8"
class=
"content-col-label"
>
排序:
</el-col>
<el-col
:span=
"16"
class=
"content-col-value"
>
<el-form-item
prop=
"sort"
>
<el-form-item
prop=
"sort"
style=
"padding: 0;margin: 0;"
>
<el-input
:input-style=
"inputStyle"
maxlength=
"11"
v-model=
"addData.sort"
style=
"width: 510px"
/>
</el-form-item>
</el-col>
...
...
@@ -166,7 +166,7 @@ const rules = reactive({
</el-col>
<el-col
:span=
"5"
class=
"content-col-label"
>
自动偏差百分比(%d):
</el-col>
<el-col
:span=
"7"
class=
"content-col-value"
>
<el-form-item
prop=
"diffPercentage"
>
<el-form-item
prop=
"diffPercentage"
style=
"padding: 0;margin: 0;"
>
<el-input
v-float-number
:input-style=
"inputStyle"
maxlength=
"11"
v-model=
"addData.diffPercentage"
style=
"width: 240px"
/>
</el-form-item>
...
...
@@ -176,7 +176,7 @@ const rules = reactive({
<el-row>
<el-col
:span=
"5"
class=
"content-col-label"
>
自动验证循环时间(分钟):
</el-col>
<el-col
:span=
"7"
class=
"content-col-value"
>
<el-form-item
prop=
"timeoutMin"
>
<el-form-item
prop=
"timeoutMin"
style=
"padding: 0;margin: 0;"
>
<el-input
v-float-number
:input-style=
"inputStyle"
maxlength=
"11"
v-model=
"addData.timeoutMin"
style=
"width: 240px"
/>
</el-form-item>
...
...
@@ -184,7 +184,7 @@ const rules = reactive({
<el-col
:span=
"5"
class=
"content-col-label"
>
自动调节温度(℃):
</el-col>
<el-col
:span=
"7"
class=
"content-col-value"
>
<el-form-item
prop=
"tempRegulation"
>
<el-form-item
prop=
"tempRegulation"
style=
"padding: 0;margin: 0;"
>
<el-input
:input-style=
"inputStyle"
maxlength=
"11"
v-model=
"addData.tempRegulation"
style=
"width: 240px"
/>
</el-form-item>
...
...
src/views/SchedulingPage/weatherManageSub/ReviseWindow.vue
View file @
9dece472
This diff is collapsed.
Click to expand it.
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