|
@@ -151,11 +151,37 @@ async function buttonClick(type) {
|
|
proxy.$tab.navigateBack(1); //返回到需要执行方法的页面
|
|
proxy.$tab.navigateBack(1); //返回到需要执行方法的页面
|
|
} else if (type == 2) {
|
|
} else if (type == 2) {
|
|
//提交
|
|
//提交
|
|
|
|
+ if (contentList.value.length == 0) {
|
|
|
|
+ proxy.$modal.msg("巡检内容未配置!");
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ proxy.$tab.navigateBack(3); //返回到需要执行方法的页面
|
|
|
|
+ }, 1000);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
|
|
- const recordOptionList = [];
|
|
|
|
- if (contentList.value.length > 0) {
|
|
|
|
- contentList.value.forEach((e) => {
|
|
|
|
- if (e.contentOptionListValue && e.contentOptionList.length > 0) {
|
|
|
|
|
|
+ let recordOptionList = [];
|
|
|
|
+ let shouldContinue = true;
|
|
|
|
+
|
|
|
|
+ for (const e of contentList.value) {
|
|
|
|
+ if (!shouldContinue) break; // 如果应该停止,则跳出循环
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ if (!e.contentOptionListValue && e.contentOptionListValue1 == 0) {
|
|
|
|
+ shouldContinue = false; // 调用失败时终止循环
|
|
|
|
+ throw `请检查“${e.contentTitle}”内容是否填写!`;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (e.submissionMethod == 1 && e.contentOptionListValue1 > 0) {
|
|
|
|
+ e.contentOptionListValue1.forEach((l) => {
|
|
|
|
+ recordOptionList.push({
|
|
|
|
+ contentId: e.id,
|
|
|
|
+ contentOptionId: l,
|
|
|
|
+ remarks: e.remarks,
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (e.submissionMethod == 2 && e.contentOptionListValue) {
|
|
recordOptionList.push({
|
|
recordOptionList.push({
|
|
contentId: e.id,
|
|
contentId: e.id,
|
|
contentOptionId: e.contentOptionListValue,
|
|
contentOptionId: e.contentOptionListValue,
|
|
@@ -163,24 +189,17 @@ async function buttonClick(type) {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
- if (e.contentOptionListValue && e.contentOptionList.length == 0) {
|
|
|
|
|
|
+ if (e.submissionMethod == 3 && e.contentOptionListValue) {
|
|
recordOptionList.push({
|
|
recordOptionList.push({
|
|
contentId: e.id,
|
|
contentId: e.id,
|
|
content: e.contentOptionListValue,
|
|
content: e.contentOptionListValue,
|
|
remarks: e.remarks,
|
|
remarks: e.remarks,
|
|
});
|
|
});
|
|
}
|
|
}
|
|
-
|
|
|
|
- if (e.contentOptionListValue1.length > 0) {
|
|
|
|
- e.contentOptionListValue1.forEach((l) => {
|
|
|
|
- recordOptionList.push({
|
|
|
|
- contentId: e.id,
|
|
|
|
- contentOptionId: l,
|
|
|
|
- remarks: e.remarks,
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ } catch (error) {
|
|
|
|
+ proxy.$modal.msg(error);
|
|
|
|
+ shouldContinue = false; // 调用失败时终止循环
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
const array = {
|
|
const array = {
|
|
@@ -209,16 +228,14 @@ async function buttonClick(type) {
|
|
content.value = "提交成功,确定后返回!";
|
|
content.value = "提交成功,确定后返回!";
|
|
show.value = true;
|
|
show.value = true;
|
|
errorApi()
|
|
errorApi()
|
|
- .Insert(
|
|
|
|
- {
|
|
|
|
- "eventName": "巡检事件",
|
|
|
|
- "eventType": 9,
|
|
|
|
- "eventLevel": 1,
|
|
|
|
- "eventCategory": 9,
|
|
|
|
- "deviceId": proxy.$settingStore.deviceList.deviceId,
|
|
|
|
- "planId": xunJianStore.planId
|
|
|
|
- }
|
|
|
|
- )
|
|
|
|
|
|
+ .Insert({
|
|
|
|
+ eventName: "巡检事件",
|
|
|
|
+ eventType: 9,
|
|
|
|
+ eventLevel: 1,
|
|
|
|
+ eventCategory: 9,
|
|
|
|
+ deviceId: proxy.$settingStore.deviceList.deviceId,
|
|
|
|
+ planId: xunJianStore.planId,
|
|
|
|
+ })
|
|
.catch((err) => {
|
|
.catch((err) => {
|
|
proxy.$modal.msg(err);
|
|
proxy.$modal.msg(err);
|
|
});
|
|
});
|