tui-form-item.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <template>
  2. <view class="tui-form__item-wrap" :class="{'tui-form__highlight':highlight}"
  3. :style="{padding:padding,background:background,marginTop:marginTop+'rpx',marginBottom:marginBottom+'rpx',borderRadius:radius}"
  4. @tap="handleClick">
  5. <!-- #ifdef APP-NVUE -->
  6. <view class="tui-form__asterisk" v-if="asterisk">
  7. <text :style="{color:asteriskColor}">*</text>
  8. </view>
  9. <!-- #endif -->
  10. <!-- #ifndef APP-NVUE -->
  11. <view class="tui-form__asterisk" v-if="asterisk" :style="{color:asteriskColor}">*</view>
  12. <!-- #endif -->
  13. <text :style="{width:labelWidth+'rpx',fontSize:labelSize+'rpx',color:labelColor,paddingRight:labelRight+'rpx'}"
  14. v-if="label">{{label}}</text>
  15. <view class="tui-form__item-content">
  16. <slot></slot>
  17. </view>
  18. <slot name="right"></slot>
  19. <view v-if="bottomBorder" :style="{background:borderColor,left:left+'rpx',right:right+'rpx'}"
  20. class="tui-form__item-bottom"></view>
  21. <view class="tui-form__item-arrow" v-if="arrow" :style="{'border-color':arrowColor}">
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. name: 'tui-form-item',
  28. emits: ['click'],
  29. props: {
  30. padding: {
  31. type: String,
  32. default: '26rpx 30rpx'
  33. },
  34. marginTop: {
  35. type: [Number, String],
  36. default: 0
  37. },
  38. marginBottom: {
  39. type: [Number, String],
  40. default: 0
  41. },
  42. label: {
  43. type: String,
  44. default: ''
  45. },
  46. labelSize: {
  47. type: [Number, String],
  48. default: 32
  49. },
  50. labelColor: {
  51. type: String,
  52. default: '#333'
  53. },
  54. labelWidth: {
  55. type: [Number, String],
  56. default: 140
  57. },
  58. labelRight: {
  59. type: [Number, String],
  60. default: 16
  61. },
  62. asterisk: {
  63. type: Boolean,
  64. default: false
  65. },
  66. asteriskColor: {
  67. type: String,
  68. default: '#EB0909'
  69. },
  70. background: {
  71. type: String,
  72. default: '#fff'
  73. },
  74. highlight: {
  75. type: Boolean,
  76. default: false
  77. },
  78. arrow: {
  79. type: Boolean,
  80. default: false
  81. },
  82. arrowColor: {
  83. type: String,
  84. default: '#c0c0c0'
  85. },
  86. bottomBorder: {
  87. type: Boolean,
  88. default: true
  89. },
  90. borderColor: {
  91. type: String,
  92. default: '#eaeef1'
  93. },
  94. left: {
  95. type: [Number, String],
  96. default: 30
  97. },
  98. right: {
  99. type: [Number, String],
  100. default: 0
  101. },
  102. radius: {
  103. type: String,
  104. default: '0'
  105. },
  106. index: {
  107. type: [Number, String],
  108. default: 0
  109. }
  110. },
  111. methods: {
  112. handleClick() {
  113. this.$emit('click', {
  114. index: this.index
  115. });
  116. }
  117. }
  118. }
  119. </script>
  120. <style scoped>
  121. .tui-form__item-wrap {
  122. /* #ifndef APP-NVUE */
  123. width: 100%;
  124. box-sizing: border-box;
  125. display: flex;
  126. /* #endif */
  127. flex-direction: row;
  128. flex: 1;
  129. align-items: center;
  130. position: relative;
  131. }
  132. .tui-form__highlight:active {
  133. background-color: #f1f1f1 !important;
  134. }
  135. .tui-form__asterisk {
  136. position: absolute;
  137. left: 12rpx;
  138. /* #ifndef APP-NVUE */
  139. height: 30rpx;
  140. top: 50%;
  141. transform: translateY(-50%);
  142. line-height: 1.15;
  143. /* #endif */
  144. /* #ifdef APP-NVUE */
  145. flex: 1;
  146. align-items: center;
  147. justify-content: center;
  148. line-height: 1;
  149. /* #endif */
  150. }
  151. .tui-form__item-label {
  152. padding-right: 12rpx;
  153. /* #ifndef APP-NVUE */
  154. display: inline-block;
  155. flex-shrink: 0;
  156. /* #endif */
  157. }
  158. .tui-form__item-content {
  159. flex: 1;
  160. }
  161. .tui-form__item-bottom {
  162. position: absolute;
  163. bottom: 0;
  164. /* #ifdef APP-NVUE */
  165. height: 0.5px;
  166. z-index: -1;
  167. /* #endif */
  168. /* #ifndef APP-NVUE */
  169. height: 1px;
  170. -webkit-transform: scaleY(0.5) translateZ(0);
  171. transform: scaleY(0.5) translateZ(0);
  172. transform-origin: 0 100%;
  173. z-index: 1;
  174. /* #endif */
  175. }
  176. .tui-form__item-arrow {
  177. height: 40rpx;
  178. width: 40rpx;
  179. border-width: 3px 3px 0 0;
  180. border-style: solid;
  181. transform: rotate(45deg) scale(0.5);
  182. /* #ifndef APP-NVUE */
  183. border-radius: 4rpx;
  184. flex-shrink: 0;
  185. margin-left: auto;
  186. box-sizing: border-box;
  187. /* #endif */
  188. /* #ifdef APP-NVUE */
  189. border-top-right-radius: 3rpx;
  190. /* #endif */
  191. transform-origin: center center;
  192. margin-right: -5.8579rpx;
  193. }
  194. </style>