zhaoguBingren.vue 602 B

1234567891011121314151617181920212223242526272829
  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. <view class="fwnr-form-label"><text class="form-label-require"></text>病人病情</view>
  11. <uni-easyinput v-model="data.hetong.lxName" placeholder="请输入病人病情" />
  12. </view>
  13. </view>
  14. </template>
  15. <script setup>
  16. import {
  17. useHetong
  18. } from "../useHetong.js"
  19. const {
  20. injectHetong
  21. } = useHetong();
  22. const data = injectHetong()
  23. </script>
  24. <style>
  25. </style>