qiTaYueDing.vue 544 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <uni-collapse class="sfht-collapse-box">
  3. <uni-collapse-item title="其他约定" :open="true">
  4. <view>备注</view>
  5. <textarea @input="onInputChange" />
  6. </uni-collapse-item>
  7. </uni-collapse>
  8. </template>
  9. <script setup>
  10. import {
  11. ref,
  12. reactive,
  13. nextTick
  14. } from "vue";
  15. import selectJz from "./selectJz.vue"
  16. import {
  17. useHetong
  18. } from "../useHetong.js"
  19. const {
  20. injectHetong
  21. } = useHetong();
  22. const data = injectHetong()
  23. function onInputChange(e) {
  24. emits('qita', e.detail.value)
  25. }
  26. </script>
  27. <style>
  28. </style>