| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <uni-collapse class="sfht-collapse-box">
- <uni-collapse-item title="其他约定" :open="true">
- <view>备注</view>
- <textarea @input="onInputChange" />
- </uni-collapse-item>
- </uni-collapse>
- </template>
- <script setup>
- import {
- ref,
- reactive,
- nextTick
- } from "vue";
- import selectJz from "./selectJz.vue"
- import {
- useHetong
- } from "../useHetong.js"
- const {
- injectHetong
- } = useHetong();
- const data = injectHetong()
- function onInputChange(e) {
- emits('qita', e.detail.value)
- }
- </script>
- <style>
- </style>
|