NumberModal.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="container" @touchmove.stop.prevent>
  3. <view class="container_head">
  4. 数量
  5. </view>
  6. <view class="container_form">
  7. <view class="content">
  8. <template v-if="selectType === 'editConsumable' || selectType === 'addConsumable'">
  9. {{ selectData.consumableName }}({{ selectData.consumableBrandModel }}) {{ selectData.consumableEndPrice }}元
  10. </template>
  11. <template v-else-if="selectType === 'editWorkHourManagement'">
  12. {{ selectData.workName }}{{ selectData.wage }}元
  13. </template>
  14. </view>
  15. <view class="number">
  16. <uni-number-box v-model="pageData.num" :background="primaryColor" color="#fff" :min="1" :max="10000" />
  17. </view>
  18. </view>
  19. <view class="container_foot">
  20. <view class="foot_btns">
  21. <view class="cancel btn" @click="cancel">取消</view>
  22. <view v-if="showRemove" class="remove btn" @click="remove">移除</view>
  23. <view class="confirm btn" @click="confirm">确认</view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="mask" @touchmove.stop.prevent></view>
  28. </template>
  29. <script setup>
  30. import { defineEmits, ref, reactive, defineProps } from 'vue'
  31. import { onLoad } from '@dcloudio/uni-app'
  32. import { defaultColor } from '@/static/js/theme.js'
  33. const emit = defineEmits(['cancelEmit', 'confirmEmit', 'removeEmit']);
  34. const { selectData, selectType, evtNumber, showRemove } = defineProps({
  35. selectData: Object,
  36. selectType: String,
  37. evtNumber: {
  38. type: Number,
  39. default: 1,
  40. },
  41. showRemove: {
  42. type: Boolean,
  43. default: false,
  44. }
  45. });
  46. // 主题颜色
  47. const primaryColor = ref(defaultColor)
  48. // 页面数据
  49. const pageData = reactive({
  50. num: 1,
  51. });
  52. // 取消
  53. function cancel(){
  54. emit('cancelEmit')
  55. }
  56. // 确认
  57. function confirm(){
  58. emit('confirmEmit', pageData.num);
  59. }
  60. // 移除
  61. function remove(){
  62. emit('removeEmit', pageData.num);
  63. }
  64. onLoad((option) => {
  65. pageData.num = evtNumber;
  66. })
  67. </script>
  68. <style lang="scss" scoped>
  69. .mask{
  70. position: fixed;
  71. left: 0;
  72. top: 0;
  73. right: 0;
  74. bottom: 0;
  75. background-color: rgba(0, 0, 0, 0.4);
  76. z-index: 999;
  77. }
  78. .container{
  79. position: fixed;
  80. left: 50%;
  81. top: 50%;
  82. transform: translate(-50%, -50%);
  83. z-index: 9999;
  84. width: 690rpx;
  85. background-color: #fff;
  86. border-radius: 10rpx;
  87. .container_head{
  88. padding: 55rpx;
  89. font-size: 32rpx;
  90. color: #333;
  91. text-align: center;
  92. }
  93. .container_form{
  94. padding: 0 55rpx;
  95. .content{
  96. text-align: center;
  97. font-size: 28rpx;
  98. }
  99. .number{
  100. padding: 24rpx 0;
  101. display: flex;
  102. justify-content: center;
  103. }
  104. }
  105. .container_foot{
  106. .foot_btns{
  107. display: flex;
  108. border-top: 1rpx solid #DDDDDD;
  109. .btn{
  110. border-right: 1rpx solid #E3E3E3;
  111. &:last-of-type{
  112. border-right: none;
  113. }
  114. }
  115. .confirm{
  116. flex: 1;
  117. font-size: 32rpx;
  118. padding: 30rpx;
  119. display: flex;
  120. justify-content: center;
  121. color: $uni-primary;
  122. }
  123. .remove{
  124. flex: 1;
  125. font-size: 32rpx;
  126. padding: 30rpx;
  127. display: flex;
  128. justify-content: center;
  129. color: red;
  130. }
  131. .cancel{
  132. flex: 1;
  133. background-color: #fff;
  134. font-size: 32rpx;
  135. padding: 30rpx;
  136. display: flex;
  137. justify-content: center;
  138. }
  139. }
  140. }
  141. }
  142. </style>