|
@@ -5,6 +5,11 @@
|
|
|
<u-icon name="arrow-left" size="20" color="#fff"></u-icon>
|
|
|
</view>
|
|
|
</template>
|
|
|
+ <template #right>
|
|
|
+ <view class="u-navbar__content__right__item font12">
|
|
|
+ <span @click="endInspection">结束巡检</span>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
</u-navbar>
|
|
|
|
|
|
<oa-scroll
|
|
@@ -32,13 +37,13 @@
|
|
|
:style="{
|
|
|
margin: 'auto auto auto 15px',
|
|
|
fontSize: '5px',
|
|
|
- backgroundColor: cu.inspectionStatus == 1 ? '#ffbebb' : '#ABE399',
|
|
|
- color: cu.inspectionStatus == 1 ? '#FF3128' : '#189400',
|
|
|
+ backgroundColor: cu.inspectionStatus == 2 ? '#ABE399' : '#ffbebb',
|
|
|
+ color: cu.inspectionStatus == 2 ? '#189400' : '#FF3128',
|
|
|
borderRadius: '10px',
|
|
|
padding: '0px 5px',
|
|
|
}"
|
|
|
>
|
|
|
- {{ cu.inspectionStatus == 1 ? "未巡检" : "已巡检" }}
|
|
|
+ {{ cu.inspectionStatus == 2 ? "已巡检" : "未巡检" }}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="font-size: 13px; color: #a1a1a1; margin-bottom: 5px"> 描述:{{ cu.siteDescribe == "" || cu.siteDescribe == null ? "无" : cu.siteDescribe }} </view>
|
|
@@ -86,6 +91,7 @@ import { onLoad, onShow, onUnload } from "@dcloudio/uni-app";
|
|
|
import { ref, onMounted, reactive, computed, getCurrentInstance, toRefs, inject, shallowRef } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
import { recordList, recordOption, siteDetails, planSonSiteDetails } from "@/api/business/zhaf/xunJian/plan.js";
|
|
|
+import { errorApi } from "@/api/business/zhaf/xunJian/index.js";
|
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
|
import oaMovable from "@/components/oa-movable/index.vue"; // 引入组件
|
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
@@ -206,9 +212,49 @@ function currentApi() {
|
|
|
proxy.$modal.msg(err);
|
|
|
});
|
|
|
}
|
|
|
+/**
|
|
|
+ * @异常上报
|
|
|
+ */
|
|
|
+function AbnormalReport(){
|
|
|
+ errorApi()
|
|
|
+ .Insert(
|
|
|
+ {
|
|
|
+ "eventName": "执行任务",
|
|
|
+ "eventType": 8,
|
|
|
+ "eventLevel": 1,
|
|
|
+ "eventCategory": 8,
|
|
|
+ "deviceId": proxy.$settingStore.deviceList.deviceId,
|
|
|
+ "planId": xunJianStore.planId
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .catch((err) => {
|
|
|
+ proxy.$modal.msg(err);
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @结束巡检
|
|
|
+ */
|
|
|
+function endInspection() {
|
|
|
+ errorApi()
|
|
|
+ .Insert(
|
|
|
+ {
|
|
|
+ "eventName": "结束巡检",
|
|
|
+ "eventType": 10,
|
|
|
+ "eventLevel": 1,
|
|
|
+ "eventCategory": 10,
|
|
|
+ "deviceId": proxy.$settingStore.deviceList.deviceId,
|
|
|
+ "planId": xunJianStore.planId
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .catch((err) => {
|
|
|
+ proxy.$modal.msg(err);
|
|
|
+ });
|
|
|
+}
|
|
|
|
|
|
onLoad((options) => {
|
|
|
currentApi();
|
|
|
+ AbnormalReport()
|
|
|
});
|
|
|
|
|
|
onShow(() => {
|