| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <uni-collapse class="sfht-collapse-box">
- <uni-collapse-item title="其他约定" :open="true">
- <view class="form-label-input flex-start-row">
- <view class="phone-form-label"><text class="form-label-require"></text>备注</view>
- <textarea v-model="data.hetong.beizhu" placeholder="请填写备注" class="form-textarea-box" @input="onInputChange"/>
- </view>
- </uni-collapse-item>
- </uni-collapse>
- </template>
- <script setup>
- import {
- ref,
- reactive,
- nextTick
- } from "vue";
- import {
- useHetong
- } from "../useHetong.js"
- const {
- injectHetong
- } = useHetong();
- const data = injectHetong()
- function onInputChange(e) {
- data.beizhu = e.detail.value
- }
- </script>
- <style>
- </style>
|