| 1234567891011121314151617181920212223242526272829303132 |
- <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">
- <view class="fwnr-form-label"><text class="form-label-require"></text>住房面积</view>
- <uni-easyinput v-model="data.hetong.lxName" placeholder="请输入住房面积" />
- </view>
- <view class="fwnr-label-input">
- <view class="fwnr-form-label"><text class="form-label-require">*</text>常驻人口</view>
- <uni-easyinput v-model="data.hetong.lxName" placeholder="请输入常驻人口" />
- </view>
- </view>
- </template>
- <script setup>
- import {
- useHetong
- } from "../useHetong.js"
- const {
- injectHetong
- } = useHetong();
-
- const data = injectHetong()
- </script>
- <style>
- </style>
|