| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="fwnr-item-box">
- <view class="title-row-box">
- <text>孕、产妇护理</text>
- <view class="title-del-btn">
- <icon class="del-icon" v-show="false"></icon>
- </view>
- </view>
- <view class="fwnr-label-input">
- <uni-easyinput v-model="data.hetong.huli" placeholder="请输入护理内容" />
- </view>
- </view>
- </template>
- <script setup>
- import {
- useHetong
- } from "../useHetong.js"
- const {
- injectHetong
- } = useHetong();
-
- const data = injectHetong()
- </script>
- <style>
- </style>
|