tui-form.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <template>
  2. <view class="tui-form__box" :style="{backgroundColor:backgroundColor,padding:padding,borderRadius:radius}">
  3. <slot></slot>
  4. <view class="tui-form__errmsg"
  5. :style="{top:tipTop+'px',padding:tipPadding,backgroundColor:tipBackgroundColor,borderRadius:tipRidus}"
  6. v-if="showMessage" :class="{'tui-message__show':errorMsg}"><text class="tui-form__text"
  7. :style="{fontSize:tipSize+'rpx',color:tipColor}">{{errorMsg}}</text></view>
  8. <view class="tui-form__mask" v-if="disabled"></view>
  9. </view>
  10. </template>
  11. <script>
  12. import form from "./tui-validation.js"
  13. export default {
  14. name: "tui-form",
  15. props: {
  16. //表单数据对象,即将废弃
  17. model: {
  18. type: Object,
  19. default () {
  20. return {}
  21. }
  22. },
  23. //表单验证规则,即将废弃
  24. rules: {
  25. type: Array,
  26. default () {
  27. return []
  28. }
  29. },
  30. //表单背景颜色
  31. backgroundColor: {
  32. type: String,
  33. default: 'transparent'
  34. },
  35. //表单padding值
  36. padding: {
  37. type: String,
  38. default: '0'
  39. },
  40. //是否显示校验错误信息
  41. showMessage: {
  42. type: Boolean,
  43. default: true
  44. },
  45. //表单圆角值
  46. radius: {
  47. type: String,
  48. default: '0'
  49. },
  50. //是否禁用该表单内的所有组件,透明遮罩层
  51. disabled: {
  52. type: Boolean,
  53. default: false
  54. },
  55. //提示框top值 px
  56. tipTop: {
  57. type: Number
  58. // #ifdef H5
  59. ,
  60. default: 44
  61. // #endif
  62. // #ifndef H5
  63. ,
  64. default: 0
  65. // #endif
  66. },
  67. //错误提示框padding值
  68. tipPadding: {
  69. type: String,
  70. default: '20rpx'
  71. },
  72. //错误提示框背景色
  73. tipBackgroundColor: {
  74. type: String,
  75. default: '#f74d54'
  76. },
  77. //错误提示字体大小
  78. tipSize: {
  79. type: Number,
  80. default: 28
  81. },
  82. //错误提示字体颜色
  83. tipColor: {
  84. type: String,
  85. default: '#fff'
  86. },
  87. //错误提示框圆角值
  88. tipRidus: {
  89. type: String,
  90. default: '12rpx'
  91. },
  92. //错误消息显示时间 ms
  93. duration: {
  94. type: Number,
  95. default: 2000
  96. }
  97. },
  98. data() {
  99. return {
  100. errorMsg: '',
  101. timer: null
  102. };
  103. },
  104. // #ifndef VUE3
  105. beforeDestroy() {
  106. this.clearTimer()
  107. },
  108. // #endif
  109. // #ifdef VUE3
  110. beforeUnmount() {
  111. this.clearTimer()
  112. },
  113. // #endif
  114. methods: {
  115. clearTimer() {
  116. clearTimeout(this.timer)
  117. this.timer = null;
  118. },
  119. //{Object} model 表单数据对象
  120. //{Array} rules 表单验证规则
  121. validate(model, rules) {
  122. model = model || this.model
  123. rules = rules || this.rules
  124. return new Promise((resolve, reject) => {
  125. let checkRes = form.validation(model, rules);
  126. let obj = {
  127. isPass: true,
  128. errorMsg: checkRes
  129. };
  130. if (!checkRes) {
  131. resolve(obj)
  132. } else {
  133. if (this.showMessage) {
  134. this.clearTimer()
  135. this.errorMsg = checkRes;
  136. this.timer = setTimeout(() => {
  137. this.errorMsg = ''
  138. }, this.duration)
  139. }
  140. obj.isPass = false;
  141. reject(obj)
  142. }
  143. })
  144. }
  145. }
  146. }
  147. </script>
  148. <style scoped>
  149. .tui-form__box {
  150. /* #ifndef APP-NVUE */
  151. width: 100%;
  152. box-sizing: border-box;
  153. /* #endif */
  154. flex: 1;
  155. position: relative;
  156. }
  157. .tui-form__errmsg {
  158. position: fixed;
  159. z-index: 900;
  160. text-align: center;
  161. left: 20rpx;
  162. right: 20rpx;
  163. /* #ifndef APP-NVUE */
  164. box-sizing: border-box;
  165. display: flex;
  166. word-break: break-all;
  167. /* #endif */
  168. align-items: center;
  169. justify-content: center;
  170. padding: 24rpx;
  171. opacity: 0;
  172. transform: translateZ(0) translateY(-100%);
  173. transition-property: transform, opacity;
  174. transition-duration: 0.25s;
  175. transition-delay: 0s;
  176. transition-timing-function: ease-in-out;
  177. }
  178. .tui-form__text {
  179. text-align: center;
  180. }
  181. .tui-message__show {
  182. transform: translateY(0) translateZ(0);
  183. opacity: 1;
  184. }
  185. .tui-form__mask {
  186. position: absolute;
  187. top: 0;
  188. left: 0;
  189. right: 0;
  190. bottom: 0;
  191. background: rgba(0, 0, 0, 0);
  192. z-index: 99;
  193. }
  194. </style>