| | |
| | | </div> |
| | | <div class="his-body-right"> |
| | | <div class="his-body-chart"> |
| | | <el-form :inline="true" :model="calRateForm" ref="calRateForm" label-width="100px"> |
| | | <el-form :inline="true" :model="calRateForm" :rules="formRules" ref="calRateForm" label-width="108px"> |
| | | <el-row> |
| | | <el-col :span="6" > |
| | | <el-form-item label="预测项" prop="calItem" style="width: 90%"> |
| | |
| | | const treeData = ref([]) |
| | | const itemDataObject = ref() |
| | | const timer = ref() |
| | | |
| | | const formRules = reactive({ |
| | | calItem: [{required: true, message: '预测项不能为空', trigger: 'blur'}], |
| | | IN_DEVIATION: [{required: true, message: '精准度偏差不能为空', trigger: 'blur'}], |
| | | OUT_DEVIATION: [{required: true, message: '不可信率偏差不能为空', trigger: 'blur'}], |
| | | }) |
| | | //const myChart = echarts.init(document.getElementById("data-analysis")); |
| | | /** 查询列表 */ |
| | | const getList = async () => { |