| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="fwnr-item-box">
- <view class="title-row-box">
- <text>辅助照顾小孩:</text>
- <view class="title-del-btn">
- <icon class="del-icon"></icon>
- </view>
- </view>
- <view class="fwnr-label-input">
- <view class="fwnr-form-label"><text class="form-label-require"></text>孩子人数</view>
- <uni-easyinput v-model="data.hetong.fzHaizi" placeholder="请输入照顾几个孩子" />
- </view>
- <haiziNianlingVue2 @change="onChange"></haiziNianlingVue2>
- </view>
- </template>
- <script setup>
- import haiziNianlingVue2 from './haiziNianling2.vue';
- import {
- useHetong
- } from "../useHetong.js"
- const {
- injectHetong
- } = useHetong();
- const emits = defineEmits(['change'])
- const data = injectHetong()
- function onChange() {
- emits('change')
- }
- </script>
- <style>
- </style>
|