Compare commits

..

2 Commits

Author SHA1 Message Date
wangxiaoshuang 75f3b37c05 仲裁规则配置需要调整
continuous-integration/drone/push Build is passing Details
2024-12-30 13:18:19 +08:00
wangxiaoshuang ca4f2c4a8e 登录日志详情弹框样式修改 2024-12-30 13:15:50 +08:00
2 changed files with 12 additions and 7 deletions

View File

@ -49,6 +49,8 @@ export default {
title: this.$t('system:loginLog:dialog:title'), title: this.$t('system:loginLog:dialog:title'),
width: '500px', width: '500px',
top: '10vh', top: '10vh',
appendToBody: true,
bodyStyle: `min-height: 100px; max-height: 650px;overflow-y: auto;padding: 10px;border: 1px solid #e0e0e0;`,
} }
}, },
}, },
@ -86,4 +88,9 @@ export default {
}, },
}, },
} }
</script> </script>
<style lang="scss" scoped>
::v-deep .el-form-item__label {
font-weight: bold;
}
</style>

View File

@ -72,12 +72,10 @@
" "
:label="item.value" :label="item.value"
v-if=" v-if="
(JudgyInfo.ArbitrationRule === 1 && item.value < 4 ||
(item.value < 4 || (item.value > 3 &&
(item.value > 3 && (QuestionList[index].Type === 'number' ||
(QuestionList[index].Type === 'number' || QuestionList[index].Type === 'calculation'))
QuestionList[index].Type === 'calculation')))) ||
(JudgyInfo.ArbitrationRule === 2 && item.value < 4)
" "
> >
{{ item.label }} {{ item.label }}