| 123456789101112131415161718192021222324252627 |
- <template>
- <view class="fwnr-item-box">
- <view class="title-row-box">
- <text>其他服务内容</text>
- <view class="title-del-btn">
- <icon class="del-icon"></icon>
- </view>
- </view>
- <view class="fwnr-label-input">
- <uni-easyinput v-model="data.hetong.qita" placeholder="请输入其他服务内容" />
- </view>
- </view>
- </template>
- <script setup>
- import {
- useHetong
- } from "../useHetong.js"
- const {
- injectHetong
- } = useHetong();
-
- const data = injectHetong()
- </script>
- <style>
- </style>
|