tm-groupcheckbox.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="tm-groupcheckbox " :class="[customClass]">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. /**
  8. * 复选框组
  9. * @description 此组件必须,配合tm-checkbox组件使用,不可单独使用。
  10. * @property {Number} max = [999] 最大选择数量
  11. * @property {String} name = [] 默认:'',提交表单时的的字段名称标识
  12. * @property {String} customClass = [] 默认:'',自定义class
  13. * @property {Function} change 任何一个checkekBox改变将会触发此事件,并携带选中的数组数据。
  14. * @property {Function} error 如果超过最大选择数量将会触发此事件。
  15. * @example <tm-groupcheckbox><tm-checkbox v-model="checked" label="苹果"></tm-checkbox></tm-groupcheckbox>
  16. *
  17. */
  18. export default {
  19. name:'tm-groupcheckbox',
  20. props:{
  21. // 最大选择数量
  22. max:{
  23. type:Number,
  24. default:9999
  25. },
  26. //提交表单时的的字段名称
  27. name:{
  28. type:String,
  29. default:''
  30. },
  31. customClass:{
  32. type:String,
  33. default:''
  34. }
  35. },
  36. data() {
  37. return {
  38. };
  39. },
  40. mounted() {
  41. this.$nextTick(function(){
  42. this.$emit('change',this.getVal())
  43. })
  44. },
  45. methods: {
  46. change(e) {
  47. this.$emit('change',e)
  48. },
  49. // 获取选中的结果 。
  50. getVal(){
  51. let box = [];
  52. function findchild(p,index){
  53. let preat = p;
  54. if(preat.$options?.name==='tm-checkbox'){
  55. if(preat.changValue){
  56. box.push({index:index,value:preat.name,checked:preat.changValue})
  57. }
  58. }else{
  59. if(preat.$children.length>0){
  60. preat.$children.forEach(item=>{
  61. findchild(item,index++);
  62. })
  63. }
  64. }
  65. };
  66. findchild(this,0);
  67. return box;
  68. },
  69. // 反选。如果一个都没选择。反选就相当于全选。如果是全选,则结果是全部不选。
  70. // 执行完毕后。不能立即使用getVal获取结果需要this.$nextTick
  71. reverseVal(){
  72. function findchild(p,index){
  73. let preat = p;
  74. if(preat.$options?.name==='tm-checkbox'){
  75. preat.changValue = !preat.changValue;
  76. }else{
  77. if(preat.$children.length>0){
  78. preat.$children.forEach(item=>{
  79. findchild(item,index++);
  80. })
  81. }
  82. }
  83. };
  84. findchild(this,0);
  85. },
  86. // 清除选中。
  87. clear(){
  88. function findchild(p,index){
  89. let preat = p;
  90. if(preat.$options?.name==='tm-checkbox'){
  91. preat.changValue = false;
  92. }else{
  93. if(preat.$children.length>0){
  94. preat.$children.forEach(item=>{
  95. findchild(item,index++);
  96. })
  97. }
  98. }
  99. };
  100. findchild(this,0);
  101. },
  102. // 只有当超过最选选项时才会发出错误。
  103. error(){
  104. uni.showToast({
  105. title:"超过选择限制",icon:'none'
  106. })
  107. this.$emit('error',"超过选择限制")
  108. }
  109. },
  110. }
  111. </script>
  112. <style lang="scss">
  113. </style>