openatc-components 0.2.58 → 0.2.60
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.
- package/package/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +5 -5
- package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +2 -2
- package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +1 -1
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +6 -6
- package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +3 -3
- package/package/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +2 -2
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/zh.js +1 -1
- package/src/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +5 -5
- package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +2 -2
- package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +1 -1
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +6 -6
- package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +3 -3
- package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +2 -2
- package/src/views/overView.vue +1 -1
- package/static/styles/overview.scss +2 -2
- package/static/styles/schemeconfig.scss +2 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="tentativeplan-control">
|
|
2
|
+
<div class="tentativeplan-control manual-common-content">
|
|
3
3
|
<!-- <div class="title" style="margin-bottom: 18px;">{{$t('openatccomponents.overview.azimuthlocking')}}</div> -->
|
|
4
4
|
<el-row>
|
|
5
5
|
<el-col :span="12">
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
</el-col>
|
|
46
46
|
</el-row>
|
|
47
47
|
<el-row style="margin-top: 6px;">
|
|
48
|
-
<el-col :span="
|
|
48
|
+
<el-col :span="24">
|
|
49
49
|
<span class="model-label-title">{{$t('openatccomponents.overview.indirection')}}:</span>
|
|
50
50
|
</el-col>
|
|
51
|
-
<el-col :span="
|
|
51
|
+
<el-col :span="24">
|
|
52
52
|
<div class="control-model" v-for="(item, index) in imgs" :key="index">
|
|
53
53
|
<div :style="{'backgroundColor': item.bgcolor}" :class="{'single-model-select':spanIndex.indexOf(index)>-1}" class="single-model" @click="boxShow(index,item)">
|
|
54
54
|
<div v-if="item.class" :style="{color: themeColor}" :class="item.class" style="border:0px;font-size: 50px;"></div>
|
|
@@ -90,12 +90,12 @@
|
|
|
90
90
|
</div> -->
|
|
91
91
|
<div class="footer" v-if="realtimeStatusModalvisible">
|
|
92
92
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
93
|
-
<el-button
|
|
93
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
94
94
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
95
95
|
</div>
|
|
96
96
|
<div class="footer" v-if="!realtimeStatusModalvisible">
|
|
97
97
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
98
|
-
<el-button
|
|
98
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
99
99
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
100
100
|
</div>
|
|
101
101
|
</div>
|
|
@@ -62,12 +62,12 @@
|
|
|
62
62
|
</el-row>
|
|
63
63
|
<div class="footer" v-if="realtimeStatusModalvisible">
|
|
64
64
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
65
|
-
<el-button
|
|
65
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
66
66
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
67
67
|
</div>
|
|
68
68
|
<div class="footer" v-if="!realtimeStatusModalvisible">
|
|
69
69
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
70
|
-
<el-button
|
|
70
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
71
71
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
72
72
|
</div>
|
|
73
73
|
</div>
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
</el-row>
|
|
90
90
|
<div class="footer">
|
|
91
91
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
92
|
-
<el-button
|
|
92
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
93
93
|
<el-button type="primary" @click="handleLockPhase()">{{lockPhaseBtnName}}</el-button>
|
|
94
94
|
</div>
|
|
95
95
|
</div>
|
|
@@ -71,11 +71,11 @@
|
|
|
71
71
|
|
|
72
72
|
<div class="footer" v-if="realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
73
73
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
74
|
-
<el-button
|
|
74
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
75
75
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
76
76
|
</div>
|
|
77
77
|
<div class="footer" v-if="!realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
78
|
-
<el-button
|
|
78
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
79
79
|
<el-button class="3" type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
80
80
|
</div>
|
|
81
81
|
</el-tab-pane>
|
|
@@ -105,11 +105,11 @@
|
|
|
105
105
|
|
|
106
106
|
<div class="footer" v-if="realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
107
107
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
108
|
-
<el-button
|
|
108
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
109
109
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
110
110
|
</div>
|
|
111
111
|
<div class="footer" v-if="!realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
112
|
-
<el-button
|
|
112
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
113
113
|
<el-button class="3" type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
114
114
|
</div>
|
|
115
115
|
|
|
@@ -174,11 +174,11 @@
|
|
|
174
174
|
|
|
175
175
|
<div class="footer" v-if="realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
176
176
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
177
|
-
<el-button
|
|
177
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
178
178
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
179
179
|
</div>
|
|
180
180
|
<div class="footer" v-if="!realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
181
|
-
<el-button
|
|
181
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
182
182
|
<el-button class="3" type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
183
183
|
</div>
|
|
184
184
|
</el-tab-pane>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="priority-control">
|
|
2
|
+
<div class="priority-control manual-common-content">
|
|
3
3
|
<!-- <div class="title" style="margin-bottom: 18px;">{{$t('openatccomponents.overview.prioritycontrol')}}</div> -->
|
|
4
4
|
<el-row>
|
|
5
5
|
<el-col :span="12">
|
|
@@ -87,12 +87,12 @@
|
|
|
87
87
|
</el-row>
|
|
88
88
|
<div class="footer" v-if="realtimeStatusModalvisible">
|
|
89
89
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
90
|
-
<el-button
|
|
90
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
91
91
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
92
92
|
</div>
|
|
93
93
|
<div class="footer" v-if="!realtimeStatusModalvisible">
|
|
94
94
|
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
95
|
-
<el-button
|
|
95
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
96
96
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
97
97
|
</div>
|
|
98
98
|
</div>
|
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
<el-button v-if="isShowBack" @click="handleClose()">{{
|
|
319
319
|
$t('openatccomponents.button.Back')
|
|
320
320
|
}}</el-button>
|
|
321
|
-
<el-button
|
|
321
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
322
322
|
<el-button type="primary" @click="handleManualControl()">{{
|
|
323
323
|
$t('openatccomponents.overview.implement')
|
|
324
324
|
}}</el-button>
|
|
@@ -327,7 +327,7 @@
|
|
|
327
327
|
<el-button v-if="isShowBack" @click="handleClose()">{{
|
|
328
328
|
$t('openatccomponents.button.Back')
|
|
329
329
|
}}</el-button>
|
|
330
|
-
<el-button
|
|
330
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
331
331
|
<el-button type="primary" @click="handleManualControl()">{{
|
|
332
332
|
$t('openatccomponents.overview.comfirm')
|
|
333
333
|
}}</el-button>
|