zhaoguYunfu.vue 513 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="fwnr-item-box">
  3. <view class="title-row-box">
  4. <text>孕、产妇护理</text>
  5. <view class="title-del-btn">
  6. <icon class="del-icon"></icon>
  7. </view>
  8. </view>
  9. <view class="fwnr-label-input">
  10. <uni-easyinput v-model="data.hetong.huli" placeholder="请输入护理内容" />
  11. </view>
  12. </view>
  13. </template>
  14. <script setup>
  15. import {
  16. useHetong
  17. } from "../useHetong.js"
  18. const {
  19. injectHetong
  20. } = useHetong();
  21. const data = injectHetong()
  22. </script>
  23. <style>
  24. </style>