tm-pickers.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <template>
  2. <view class="tm-pickers d-inline-block fulled">
  3. <view @click.stop.prevent="openPoup"><slot></slot></view>
  4. <tm-poup @change="toogle" ref="pop" v-model="showpop" :height="750" :bg-color="black_tmeme?'grey-darken-5':bgColor">
  5. <view class="tm-pickers-title pa-32 pb-16">
  6. <view class="text-size-n text-align-center" style="min-height: 48rpx;">{{title}}</view>
  7. <view class="tm-pickers-close rounded flex-center " :class="black_tmeme?'grey-darken-3':'grey-lighten-3'">
  8. <tm-icons @click="close" name="icon-times" size="24" :color="black_tmeme?'white':'grey'"></tm-icons>
  9. </view>
  10. </view>
  11. <tm-pickersView v-if="showpop" @change="$emit('change',$event)" @aniStart="aniisTrue=false" @aniEnd="aniisTrue=true" ref="tmPicKersTest" :defaultValue="dataValue"
  12. :itemHeight="itemHeight" :list="list" :rangKey="rangKey"
  13. :childrenKey="childrenKey" :black="black_tmeme" :indexfu="indexfu" :disabled="disabled"
  14. :bgColor="bgColor"
  15. ></tm-pickersView>
  16. <view class="pa-32">
  17. <tm-button :black="black_tmeme" @click="confirm" block itemeClass="round-24" :fllowTheme="fllowTheme" :theme="colorBtn_tmeme" fontSize="32">{{btnText}}</tm-button>
  18. </view>
  19. </tm-poup>
  20. </view>
  21. </template>
  22. <script>
  23. /**
  24. * 普通级联拉选择器(弹层式)
  25. * @description 多级关联,单级关联选择
  26. * @property {String} title = [] 弹层层标题
  27. * @property {String} btn-text = [] 底部按钮确认的文字
  28. * @property {String} btn-color = [primary|green|orange|red|blue|bg-gradient-blue-lighten] 默认:bg-gradient-blue-lighten底部按钮确认的背景颜色仅支持主题色名称
  29. * @property {Array} default-value = [] 默认:[],默认赋值项。可选三种赋值方式,名称赋值,对象赋值,数字序列赋值
  30. * @property {String|Number} item-height = [34|42|50|58|62] 项目的高度单位px
  31. * @property {Array} list = [] 选择器的数据,可选格式:Array<string>,Array<object>.如果为object格式需要提供rangKey.如果为多级需要提供children.key值
  32. * @property {String} rang-key = [text|title] 默认:text,如果List格式为对象数组,需要提供此值
  33. * @property {String} children-key = [children] 默认:children,如果List格式为对象数组且为多级联选择,需要提供此值,理论上无限级联数据
  34. * @property {String|Boolean} black = [true|false] 是否开启暗黑模式。
  35. * @property {String|Boolean} disabled = [true|false] 是否禁用
  36. * @property {String} bg-color = [white|blue] 默认:white,白色背景;请填写背景的主题色名称。
  37. * @property {Function} change 列数被选中改变时触发。
  38. * @property {Function} confirm = [] 返回当前选中的数据
  39. *
  40. */
  41. import tmButton from "@/tm-vuetify/components/tm-button/tm-button.vue"
  42. import tmPoup from "@/tm-vuetify/components/tm-poup/tm-poup.vue"
  43. import tmIcons from "@/tm-vuetify/components/tm-icons/tm-icons.vue"
  44. import tmPickersView from "@/tm-vuetify/components/tm-pickersView/tm-pickersView.vue"
  45. export default {
  46. components:{tmButton,tmPoup,tmIcons,tmPickersView},
  47. name:"tm-pickers",
  48. model:{
  49. prop:'value',
  50. event:'input'
  51. },
  52. props: {
  53. // 等同v-model,或者value.sync
  54. value: {
  55. type: String | Number,
  56. default: false
  57. },
  58. // 默认选中的项
  59. // 格式有三种分别是[string,string...]
  60. // [数字序列,数字序列....]
  61. // 和list同等对象结构[{},{},...],此格式需要提供rangKey字段否则报错。
  62. defaultValue:{
  63. type:Array,
  64. default:()=>{return []}
  65. },
  66. // 行高。
  67. itemHeight: {
  68. type: String | Number,
  69. default: 40
  70. },
  71. list: {
  72. type: Array,
  73. default: () => {
  74. return []
  75. }
  76. },
  77. // 如果数据是对象,则需要提供key值。
  78. rangKey: {
  79. type: String,
  80. default: "text"
  81. },
  82. // 如果是联级,则需要提供子集key值。
  83. childrenKey: {
  84. type: String,
  85. default: "children"
  86. },
  87. black:{
  88. type:String|Boolean,
  89. default:null
  90. },
  91. // 是否禁用
  92. disabled:{
  93. type:String|Boolean,
  94. default:false
  95. },
  96. indexfu:{
  97. type: String | Number,
  98. default: false
  99. },
  100. // 背景颜色,主题色名称。
  101. bgColor:{
  102. type:String,
  103. default:'white'
  104. },
  105. // 顶部标题。
  106. title:{
  107. type:String,
  108. default:'请选择选项'
  109. },
  110. // 底部按钮文件
  111. btnText:{
  112. type:String,
  113. default:'确认'
  114. },
  115. // 底部按钮背景主题色名称
  116. btnColor:{
  117. type:String,
  118. default:'primary'
  119. },
  120. // 跟随主题色的改变而改变。
  121. fllowTheme:{
  122. type:Boolean|String,
  123. default:true
  124. }
  125. },
  126. data() {
  127. return {
  128. showpop:false,
  129. dataValue:[],
  130. aniisTrue:true,
  131. };
  132. },
  133. computed: {
  134. black_tmeme: function() {
  135. if (this.black !== null) return this.black;
  136. return this.$tm.vx.state().tmVuetify.black;
  137. },
  138. colorBtn_tmeme:function(){
  139. if(this.$tm.vx.state().tmVuetify.color!==null&&this.$tm.vx.state().tmVuetify.color && this.fllowTheme){
  140. return this.$tm.vx.state().tmVuetify.color;
  141. }
  142. return this.btnColor;
  143. },
  144. },
  145. mounted() {
  146. this.showpop = this.value;
  147. this.$nextTick(function(){
  148. uni.hideKeyboard();
  149. })
  150. },
  151. watch:{
  152. value:function(val){
  153. this.showpop = val;
  154. }
  155. },
  156. methods: {
  157. confirm() {
  158. if(!this.aniisTrue){
  159. console.log('no');
  160. return ;
  161. }
  162. let sdata = this.$refs.tmPicKersTest.getSelectedValue();
  163. let saray = [],newray=[];
  164. sdata.forEach(item=>{
  165. var obj={data:item.data};
  166. var obj1={data:item.data,name:this.indexfu}
  167. saray.push(obj)
  168. newray.push(obj1)
  169. })
  170. if(this.indexfu){
  171. this.$emit('confirm',newray)
  172. }else{
  173. this.$emit('confirm',sdata)
  174. }
  175. this.$emit('update:defaultValue',saray)
  176. this.showpop=false;
  177. },
  178. close(){
  179. this.showpop=false;
  180. },
  181. openPoup(){
  182. if(this.disabled==true) return;
  183. this.showpop=true;
  184. },
  185. toogle(e){
  186. console.log(this.showpop);
  187. if(e){
  188. this.$nextTick(function(){
  189. if(this.dataValue != this.defaultValue){
  190. this.dataValue = this.defaultValue;
  191. }
  192. this.$refs.tmPicKersTest.setDefaultValue(this.dataValue)
  193. })
  194. }
  195. this.$emit('input',e);
  196. this.$emit('update:value',e);
  197. }
  198. },
  199. }
  200. </script>
  201. <style lang="scss" scoped>
  202. .tm-pickers-title {
  203. position: relative;
  204. .tm-pickers-close {
  205. position: absolute;
  206. top: 32upx;
  207. right: 32upx;
  208. width: 50upx;
  209. height: 50upx;
  210. }
  211. }
  212. .tm-pickers{
  213. }
  214. </style>