You need to sign in or sign up before continuing.
|
@@ -98,7 +98,7 @@ |
|
@@ -98,7 +98,7 @@ |
|
98
|
</div>
|
98
|
</div>
|
|
99
|
</template>
|
99
|
</template>
|
|
100
|
<script lang="ts" setup>
|
100
|
<script lang="ts" setup>
|
|
101
|
- import { ref, reactive, onMounted } from 'vue';
|
101
|
+ import { ref, reactive } from 'vue';
|
|
102
|
import { Card, DatePicker } from 'ant-design-vue';
|
102
|
import { Card, DatePicker } from 'ant-design-vue';
|
|
103
|
import VisitAnalysis from './VisitAnalysis.vue';
|
103
|
import VisitAnalysis from './VisitAnalysis.vue';
|
|
104
|
import VisitAnalysisBar from './VisitAnalysisBar.vue';
|
104
|
import VisitAnalysisBar from './VisitAnalysisBar.vue';
|
|
@@ -451,10 +451,6 @@ |
|
@@ -451,10 +451,6 @@ |
|
451
|
send(sendValue);
|
451
|
send(sendValue);
|
|
452
|
}
|
452
|
}
|
|
453
|
}
|
453
|
}
|
|
454
|
- onMounted(() => {
|
|
|
|
455
|
- console.log(props.role);
|
|
|
|
456
|
- });
|
|
|
|
457
|
-
|
|
|
|
458
|
const {
|
454
|
const {
|
|
459
|
tenantDateValue,
|
455
|
tenantDateValue,
|
|
460
|
customerDateValue,
|
456
|
customerDateValue,
|
|
@@ -2,8 +2,7 @@ |
|
@@ -2,8 +2,7 @@ |
|
2
|
<div class="step2">
|
2
|
<div class="step2">
|
|
3
|
<BasicForm @register="registerForm">
|
3
|
<BasicForm @register="registerForm">
|
|
4
|
<template #addAgree="{ model, field }">
|
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
|
</template>
|
6
|
</template>
|
|
8
|
</BasicForm>
|
7
|
</BasicForm>
|
|
9
|
<div>
|
8
|
<div>
|