askbot-dragon 1.6.33 → 1.6.34
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.json
CHANGED
|
@@ -2074,14 +2074,24 @@ export default {
|
|
|
2074
2074
|
|
|
2075
2075
|
}
|
|
2076
2076
|
let isRequired = true;
|
|
2077
|
-
if (this.mainId == '3e83057a1bd74b79b86859ad619fdbbb' ||
|
|
2077
|
+
if (this.mainId == '3e83057a1bd74b79b86859ad619fdbbb' ||
|
|
2078
|
+
this.mainId == 'ab0f90737c8b4f2d85ba2157e4473110' ||
|
|
2079
|
+
this.mainId == '86dc09da570948d2b4841122d732f373' ||
|
|
2080
|
+
this.mainId == 'e93c327548c94b15a4b2b71bc613ef38' // 银轮主体 id
|
|
2081
|
+
) {
|
|
2078
2082
|
isRequired = false
|
|
2079
2083
|
}
|
|
2080
2084
|
/*针对蒙牛企业在对话中系统名称字段暂时不做校验*/
|
|
2085
|
+
/* 2025.0228 补充银轮主体相同逻辑 */
|
|
2081
2086
|
if (this.formShow.form.formFieldRelation[i].display &&
|
|
2082
2087
|
(this.formShow.form.formFieldRelation[i].required || this.isRequiredFn(this.formShow.form.formFieldRelation[i].formField)) &&
|
|
2083
2088
|
this.formShow.form.formFieldRelation[i].fieldId !== 'workorder_name' &&
|
|
2084
|
-
(
|
|
2089
|
+
(
|
|
2090
|
+
(!isRequired &&
|
|
2091
|
+
this.formShow.form.formFieldRelation[i].fieldId !== '0feca81fce97465da537248c066e4db8' &&
|
|
2092
|
+
this.formShow.form.formFieldRelation[i].fieldId !== '1d8bd21485834773a6d18eae60013000' &&
|
|
2093
|
+
this.formShow.form.formFieldRelation[i].fieldId !== '0ca7253561bb480cac9e57664e52158b'
|
|
2094
|
+
) || isRequired) &&
|
|
2085
2095
|
this.formShow.form.formFieldRelation[i].formField.type !== 'EXPLANATION') {
|
|
2086
2096
|
let value = "";
|
|
2087
2097
|
let bool = {}
|