|
@@ -20,6 +20,13 @@
|
|
|
<div class="ARM_content">
|
|
|
<el-scrollbar style="width: 100%; height: 100%">
|
|
|
<div class="item_body" v-for="(item, index) in datalist" :key="index">
|
|
|
+ <div class="photoelectricity">
|
|
|
+ <div :class="item.bpC1 == false ? 'greens' : 'reds'"></div>
|
|
|
+ <div :class="item.bpC2 == false ? 'greens' : 'reds'"></div>
|
|
|
+ <div :class="item.bpC3 == false ? 'greens' : 'reds'"></div>
|
|
|
+ <div :class="item.bpC4 == false ? 'greens' : 'reds'"></div>
|
|
|
+ <div :class="item.bpC5 == false ? 'greens' : 'reds'"></div>
|
|
|
+ </div>
|
|
|
<div class="item_left">
|
|
|
<div class="left_text">{{ item.nickname }}</div>
|
|
|
<img
|
|
@@ -111,7 +118,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="item_right">
|
|
|
- <div class="right_item_body">
|
|
|
+ <!-- <div class="right_item_body">
|
|
|
<div class="item_upper" :class="">
|
|
|
<div class="upper_title">手动任务</div>
|
|
|
</div>
|
|
@@ -134,7 +141,7 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
|
|
|
<div class="right_item_body">
|
|
|
<div
|
|
@@ -167,7 +174,8 @@
|
|
|
@click="overTask(item, index)"
|
|
|
v-if="
|
|
|
item.move_state != 'MT_NA' &&
|
|
|
- item.move_state != 'MT_IN_CANCEL'
|
|
|
+ item.move_state != 'MT_IN_CANCEL' &&
|
|
|
+ item.move_state != 'MT_FINISHED'
|
|
|
"
|
|
|
>
|
|
|
<div class="upper_title">取消任务</div>
|
|
@@ -577,6 +585,11 @@ export default {
|
|
|
uI_Restart: "",
|
|
|
uI_StartCharge: "",
|
|
|
uI_StopCharge: "",
|
|
|
+ bpC1: "",
|
|
|
+ bpC2: "",
|
|
|
+ bpC3: "",
|
|
|
+ bpC4: "",
|
|
|
+ bpC5: "",
|
|
|
};
|
|
|
item["nickname"] = vehicles[index].nickname;
|
|
|
item.move_state = vehicles[index].move_state;
|
|
@@ -590,6 +603,11 @@ export default {
|
|
|
item.uI_Restart = vehicles[index].uI_Restart;
|
|
|
item.uI_StartCharge = vehicles[index].uI_StartCharge;
|
|
|
item.uI_StopCharge = vehicles[index].uI_StopCharge;
|
|
|
+ item.bpC1 = vehicles[index].bpC1;
|
|
|
+ item.bpC2 = vehicles[index].bpC2;
|
|
|
+ item.bpC3 = vehicles[index].bpC3;
|
|
|
+ item.bpC4 = vehicles[index].bpC4;
|
|
|
+ item.bpC5 = vehicles[index].bpC5;
|
|
|
item["id"] = vehicles[index].id;
|
|
|
item["ifOnline"] = vehicles[index].is_online;
|
|
|
item["taskId"] = "";
|
|
@@ -1227,6 +1245,41 @@ export default {
|
|
|
border: 1px solid #164078;
|
|
|
flex-direction: row;
|
|
|
float: left;
|
|
|
+ position: relative;
|
|
|
+ > .photoelectricity {
|
|
|
+ position: absolute;
|
|
|
+ width: 100px;
|
|
|
+ left: 0%;
|
|
|
+ top: 29%;
|
|
|
+ height: 99px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ // justify-content: space-between;
|
|
|
+ // align-items: center;
|
|
|
+ > .greens {
|
|
|
+ width: 13px;
|
|
|
+ height: 13px;
|
|
|
+ background: rgb(0, 255, 0);
|
|
|
+ border-radius: 50%;
|
|
|
+ box-shadow: 0 0 10px rgb(0, 255, 0);
|
|
|
+ }
|
|
|
+ > .reds {
|
|
|
+ width: 13px;
|
|
|
+ height: 13px;
|
|
|
+ background: rgb(255, 0, 0);
|
|
|
+ border-radius: 50%;
|
|
|
+ box-shadow: 0 0 10px rgb(255, 0, 0);
|
|
|
+ }
|
|
|
+ > .greys {
|
|
|
+ width: 13px;
|
|
|
+ height: 13px;
|
|
|
+ background: rgb(169, 169, 169);
|
|
|
+ border-radius: 50%;
|
|
|
+ box-shadow: 0 0 10px rgb(169, 169, 169);
|
|
|
+ }
|
|
|
+ }
|
|
|
.item_right {
|
|
|
flex: 1;
|
|
|
// padding: 0px 24px;
|