Skip to content

Commit

Permalink
fix: 自动导入后message错误
Browse files Browse the repository at this point in the history
  • Loading branch information
haixin-fang committed Mar 18, 2024
1 parent d939780 commit dff18a6
Show file tree
Hide file tree
Showing 7 changed files with 321 additions and 223 deletions.
10 changes: 9 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ module.exports = {
it: true,
expect: true,
beforeEach: true,
defineEmits: "readonly",
defineProps: "readonly",
defineExpose: "readonly",
withDefaults: "readonly",
WeixinJSBridge: "readonly",
ElMessage: "readonly",
ElMessageBox: "readonly",
ElLoading: "readonly",
},
extends: ["plugin:vue/vue3-essential", "eslint:recommended", "@vue/typescript/recommended", "@vue/prettier/@typescript-eslint"],
parser: "vue-eslint-parser",
Expand All @@ -28,7 +36,7 @@ module.exports = {
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/no-mutating-props": 0,
"vue/no-v-model-argument": "off",
"endOfLine": 0,
endOfLine: 0,
"@typescript-eslint/no-this-alias": ["off"],
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-explicit-any": "off",
Expand Down
2 changes: 0 additions & 2 deletions packages/editor/src/common/ConditionSelect/ConditionGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
<div v-show="result.type && result.type !== 'data' && result.control" class="moreCondition">
<div v-for="(item, index) in result.result" :key="index" class="selectList">
<ConditionGroup :result="item" @update="handleUpdateForce" @delete="handleDelete" :index="index" :fieldList="fieldList" />
<!-- :rightField="rightField"
:request="request" -->
</div>
<div class="line" :class="result.type" v-if="result.result && result.result.length >= 2"></div>
</div>
Expand Down
Loading

0 comments on commit dff18a6

Please sign in to comment.