Showing
2 changed files
with
2 additions
and
7 deletions
| ... | ... | @@ -98,7 +98,7 @@ |
| 98 | 98 | </div> |
| 99 | 99 | </template> |
| 100 | 100 | <script lang="ts" setup> |
| 101 | - import { ref, reactive, onMounted } from 'vue'; | |
| 101 | + import { ref, reactive } from 'vue'; | |
| 102 | 102 | import { Card, DatePicker } from 'ant-design-vue'; |
| 103 | 103 | import VisitAnalysis from './VisitAnalysis.vue'; |
| 104 | 104 | import VisitAnalysisBar from './VisitAnalysisBar.vue'; |
| ... | ... | @@ -451,10 +451,6 @@ |
| 451 | 451 | send(sendValue); |
| 452 | 452 | } |
| 453 | 453 | } |
| 454 | - onMounted(() => { | |
| 455 | - console.log(props.role); | |
| 456 | - }); | |
| 457 | - | |
| 458 | 454 | const { |
| 459 | 455 | tenantDateValue, |
| 460 | 456 | customerDateValue, | ... | ... |
| ... | ... | @@ -2,8 +2,7 @@ |
| 2 | 2 | <div class="step2"> |
| 3 | 3 | <BasicForm @register="registerForm"> |
| 4 | 4 | <template #addAgree="{ model, field }"> |
| 5 | - <Checkbox v-model:checked="model[field]" @change="checkedChange" /> | |
| 6 | - <span class="ml-2">添加协议</span> | |
| 5 | + <Checkbox v-model:checked="model[field]" @change="checkedChange">添加协议</Checkbox> | |
| 7 | 6 | </template> |
| 8 | 7 | </BasicForm> |
| 9 | 8 | <div> | ... | ... |