| 123456789101112131415161718192021222324252627282930 |
- <template>
- <uni-collapse class="sfht-collapse-box" @change="handleChange">
- <uni-collapse-item title="服务报酬" :open="true">
- <view class="form-label-input">
- <view class="phone-form-label"><text class="form-label-require"></text>乙方基本月报酬(元)</view>
- <uni-easyinput v-model="data.hetong.baochou" placeholder="请输入金额" />
- </view>
- </uni-collapse-item>
- </uni-collapse>
- </template>
- <script setup>
- import {
- useHetong
- } from "../useHetong.js"
-
- const {
- injectHetong
- } = useHetong();
-
- const data = injectHetong();
- const emits = defineEmits(['change'])
- function handleChange() {
- emits('change')
- }
- </script>
- <style>
- </style>
|