考试管理-规则重复判断条件修改

This commit is contained in:
Yuan 2022-10-28 10:34:11 +08:00
parent 599bf4f722
commit b6830c2cfd
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ export function handlerUrl() {
// BASE_API = 'https://joylink.club/jlcloud';
// BASE_API = 'https://test.joylink.club/jlcloud';
// BASE_API = 'http://114.116.51.125/jlcloud';
// BASE_API = 'http://192.168.3.90:9000'; // 周寅
BASE_API = 'http://192.168.3.90:9000'; // 周寅
// BASE_API = 'http://192.168.3.94:9000'; // 旭强
// BASE_API = 'http://192.168.3.15:9000'; // 张赛
// BASE_API = 'http://192.168.3.5:9000'; // 夏增彬

View File

@ -168,7 +168,7 @@ export default {
rule =>
rule.type === this.form.type &&
rule.subtype === this.form.subtype &&
rule.tags === this.form.tags
rule.tags.includes(this.form.tags)
)
return isDuplicated
},