fuWuBaoChou.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <uni-collapse class="fwnr-collapse-box collapse-border-box" @change="handleChange">
  3. <uni-collapse-item title="服务报酬" :open="true">
  4. <view class="form-label-input">
  5. <view class="phone-form-label"><text class="form-label-require"></text>乙方基本月报酬(元)</view>
  6. <uni-easyinput v-model="data.hetong.baochou" placeholder="请输入金额" />
  7. </view>
  8. <view class="form-label-input">
  9. <view class="phone-form-label"><text class="form-label-require"></text>基本日报酬(基本月报酬÷工作天数)</view>
  10. <uni-easyinput v-model="data.hetong.baochou" placeholder="请输入工作天数" />
  11. </view>
  12. <view class="form-label-input">
  13. <view class="phone-form-label"><text class="form-label-require"></text>乙方每个月休息(天)</view>
  14. <uni-easyinput v-model="data.hetong.baochou" placeholder="请输入休息天数" />
  15. </view>
  16. <view class="form-label-input">
  17. <view class="phone-form-label"><text class="form-label-require"></text>加班费(日报酬x倍数)</view>
  18. <view >2倍</view>
  19. </view>
  20. <view class="form-label-input">
  21. <view class="phone-form-label"><text class="form-label-require"></text>每月工资发放日期(日)</view>
  22. <uni-easyinput v-model="data.hetong.fafangri" placeholder="请输入每月发放日" />
  23. </view>
  24. </uni-collapse-item>
  25. </uni-collapse>
  26. </template>
  27. <script setup>
  28. import {
  29. useHetong
  30. } from "../useHetong.js"
  31. const {
  32. injectHetong
  33. } = useHetong();
  34. const data = injectHetong();
  35. const emits = defineEmits(['change'])
  36. function handleChange() {
  37. emits('change')
  38. }
  39. </script>
  40. <style>
  41. </style>