|
@@ -1,16 +1,37 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <view></view>
|
|
|
|
|
|
|
+<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.lxName" placeholder="请输入照顾几个孩子" />
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <haiziNianlingVue @change="onChange"></haiziNianlingVue>
|
|
|
|
|
+ </view>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
|
|
|
+ import haiziNianlingVue from './haiziNianling.vue';
|
|
|
|
|
+
|
|
|
import {
|
|
import {
|
|
|
useHetong
|
|
useHetong
|
|
|
- } from "./useHetong.js"
|
|
|
|
|
|
|
+ } from "../useHetong.js"
|
|
|
const {
|
|
const {
|
|
|
injectHetong
|
|
injectHetong
|
|
|
} = useHetong();
|
|
} = useHetong();
|
|
|
|
|
|
|
|
|
|
+ const emits = defineEmits(['change'])
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
const data = injectHetong()
|
|
const data = injectHetong()
|
|
|
|
|
+
|
|
|
|
|
+ function onChange() {
|
|
|
|
|
+ emits('change')
|
|
|
|
|
+ }
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|