123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- <template>
- <view class="tui-picker__box">
- <view class="tui-mask__screen" :class="[visible?'tui-picker__mask-show':'']" @tap="maskClick"></view>
- <view class="tui-picker__wrap" :style="{backgroundColor:backgroundColor}"
- :class="[visible?'tui-picker__show':'',radius?'tui-picker__radius':'']">
- <view class="tui-picker__header" :style="{backgroundColor:headerBgColor}">
- <view class="tui-picker__btn-cancle" hover-class="tui-picker__opcity" :hover-stay-time="150"
- @tap.stop="hidePicker"
- :style="{color:cancelColor,fontSize:btnSize+'rpx',fontWeight:bold?'bold':'normal'}">{{cancelText}}
- </view>
- <view class="tui-picker__title" :style="{fontSize:titleSize+'rpx',color:titleColor}">{{title}}</view>
- <view class="tui-picker__btn-sure" hover-class="tui-picker__opcity" :hover-stay-time="150"
- @tap.stop="picker"
- :style="{color:confirmColor,fontSize:btnSize+'rpx',fontWeight:bold?'bold':'normal'}">{{confirmText}}
- </view>
- </view>
- <picker-view :mask-style="maskStyle" :indicator-style="indicatorStyle" class="tui-picker__view"
- :value="vals" @change="columnPicker" @pickstart="pickstart" @pickend="pickend">
- <picker-view-column>
- <view :style="{color:color,fontSize:size+'px'}" v-for="(item,index) in layer1__data" :key="index"
- class="tui-picker__item">{{item}}</view>
- </picker-view-column>
- <picker-view-column v-if="layer==2 || layer==3">
- <view :style="{color:color,fontSize:size+'px'}" v-for="(item,index) in layer2__data" :key="index"
- class="tui-picker__item">{{item}}</view>
- </picker-view-column>
- <picker-view-column v-if="layer==3">
- <view :style="{color:color,fontSize:size+'px'}" v-for="(item,index) in layer3__data" :key="index"
- class="tui-picker__item">{{item}}</view>
- </picker-view-column>
- </picker-view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "tui-picker",
- emits: ['pickstart', 'pickend', 'hide', 'change'],
- props: {
- //数据层级
- layer: {
- type: [Number, String],
- default: 1
- },
- //data数据
- pickerData: {
- type: Array,
- default () {
- return []
- }
- },
- //是否显示
- show: {
- type: Boolean,
- default: false
- },
- //默认值,text集合
- value: {
- type: Array,
- default () {
- return []
- }
- },
- //设置选择器中间选中框的样式
- indicatorStyle: {
- type: String,
- default: 'height: 48px;'
- },
- //设置蒙层的样式
- maskStyle: {
- type: String,
- default: ''
- },
- //是否显示圆角
- radius: {
- type: Boolean,
- default: false
- },
- //header背景色
- headerBgColor: {
- type: String,
- default: '#fff'
- },
- //显示标题
- title: {
- type: String,
- default: ''
- },
- //标题字体大小
- titleSize: {
- type: [Number, String],
- default: 34
- },
- //标题字体颜色
- titleColor: {
- type: String,
- default: '#333'
- },
- //确认按钮文本
- confirmText: {
- type: String,
- default: '确定'
- },
- //确认按钮文本颜色
- confirmColor: {
- type: String,
- default: '#5677fc'
- },
- //取消按钮文本
- cancelText: {
- type: String,
- default: '取消'
- },
- //取消按钮文本颜色
- cancelColor: {
- type: String,
- default: '#888'
- },
- //按钮字体大小
- btnSize: {
- type: [Number, String],
- default: 32
- },
- //按钮字体是否加粗
- bold: {
- type: Boolean,
- default: true
- },
- //内容背景色
- backgroundColor: {
- type: String,
- default: '#fff'
- },
- //内容字体颜色
- color: {
- type: String,
- default: '#333'
- },
- //picker内容字体大小 px
- size: {
- type: [Number, String],
- default: 16
- },
- //点击遮罩 是否可关闭
- maskClosable: {
- type: Boolean,
- default: true
- },
- //自定义参数
- params: {
- type: [Number, String],
- default: 0
- }
- },
- data() {
- return {
- visible: false,
- vals: [0],
- layer1__data: [],
- layer2__data: [],
- layer3__data: [],
- isEnd: true,
- timer: null
- };
- },
- created() {
- this.initData(-1, 0, 0);
- setTimeout(() => {
- this.setDefaultOptions()
- }, 50)
- this.visible = this.show;
- },
- watch: {
- show(val) {
- this.visible = val;
- },
- value(vals) {
- if (vals && vals.length > 0) {
- this.setDefaultOptions()
- }
- },
- pickerData(newVal) {
- this.initData(-1, 0, 0)
- setTimeout(() => {
- this.setDefaultOptions()
- }, 50)
- }
- },
- methods: {
- hidePicker() {
- this.visible = false;
- this.$emit('hide', {
- params: this.params
- })
- },
- maskClick() {
- if (!this.maskClosable) return;
- this.hidePicker()
- },
- getValue(key = 'text', layer = 1) {
- let vals = this.vals;
- let data = this.pickerData;
- let result = ''
- if (layer === 1) {
- result = data[vals[0]][key]
- } else if (layer == 2) {
- if (data[vals[0]].children) {
- result = data[vals[0]].children[vals[1]][key]
- }
- } else {
- if (data[vals[0]].children && data[vals[0]].children[vals[1]].children) {
- result = data[vals[0]].children[vals[1]].children[vals[2]][key]
- }
- }
- return result;
- },
- loop() {
- if (this.isEnd) {
- this.pickerChange()
- } else {
- setTimeout(() => {
- this.loop()
- }, 50)
- }
- },
- picker() {
- this.hidePicker()
- // #ifdef MP-WEIXIN
- this.loop()
- // #endif
- // #ifndef MP-WEIXIN
- this.pickerChange()
- // #endif
- },
- pickerChange() {
- if(!this.show) return;
- let text = [];
- let value = [];
- let result = '';
- if (this.pickerData.length > 0) {
- if (this.layer == 1) {
- text = this.getValue();
- value = this.getValue('value');
- result = text;
- } else if (this.layer == 2) {
- text = [this.getValue(), this.getValue('text', 2)];
- value = [this.getValue('value'), this.getValue('value', 2)];
- result = text.join('');
- } else {
- text = [this.getValue(), this.getValue('text', 2), this.getValue('text', 3)];
- value = [this.getValue('value'), this.getValue('value', 2), this.getValue('value', 3)];
- result = text.join('');
- }
- }
- this.$emit('change', {
- text: text,
- value: value,
- index: this.vals,
- result: result,
- params: this.params
- })
- },
- toArr(data) {
- let arr = [];
- if (data && data.length > 0) {
- for (let item of data) {
- arr.push(item.text);
- }
- }
- return arr;
- },
- checkChildrenData(data, layer, index, idx) {
- let arr = [];
- if (layer === 1) {
- if (data[index])
- arr = data[index].children || [];
- } else {
- if (data[index] && data[index].children && data[index].children[idx])
- arr = data[index].children[idx].children || [];
- }
- return arr;
- },
- setDefaultOptions() {
- let textArr = this.value;
- let vals = [];
- if (this.layer1__data.length > 0 && textArr.length > 0) {
- textArr.forEach((item, idx) => {
- let index = this[`layer${idx+1}__data`].indexOf(item);
- if (idx === 0) {
- this.layer2__data = this.toArr(this.checkChildrenData(this.pickerData, 1, index))
- } else if (idx === 1) {
- this.layer3__data = this.toArr(this.checkChildrenData(this.pickerData, 2, vals[0],
- index))
- }
- if (index === -1) {
- vals.push(0)
- } else {
- vals.push(index)
- }
- })
- } else {
- if (this.layer == 1) {
- vals = [0]
- } else if (this.layer == 2) {
- vals = [0, 0];
- this.layer2__data = this.toArr(this.checkChildrenData(this.pickerData, 1, 0))
- } else {
- vals = [0, 0, 0];
- this.layer2__data = this.toArr(this.checkChildrenData(this.pickerData, 1, 0))
- this.layer3__data = this.toArr(this.checkChildrenData(this.pickerData, 2, 0,
- 0))
- }
- }
- this.vals = vals;
- },
- initData(layer, index, idx) {
- let data = this.pickerData;
- if (!data || data.length === 0) return;
- if (this.layer == 1) {
- this.layer1__data = this.toArr(data)
- } else if (this.layer == 2) {
- if (layer === -1)
- this.layer1__data = this.toArr(data)
- this.layer2__data = this.toArr(this.checkChildrenData(data, 1, index))
- } else {
- if (layer === -1)
- this.layer1__data = this.toArr(data)
- if (layer === 0 || layer === -1)
- this.layer2__data = this.toArr(this.checkChildrenData(data, 1, index))
- this.layer3__data = this.toArr(this.checkChildrenData(data, 2, index, idx))
- }
- },
- columnPicker: function(e) {
- let value = e.detail.value;
- if (this.layer == 1) {
- this.layer__one(value)
- } else if (this.layer == 2) {
- this.layer__two(value)
- } else {
- this.layer__three(value)
- }
- },
- layer__one(value) {
- if (this.vals[0] !== value[0]) {
- this.vals = value;
- }
- },
- layer__two(value) {
- if (this.vals[0] !== value[0]) {
- this.initData(0, value[0])
- this.vals = [value[0], 0]
- } else {
- this.vals = value
- }
- },
- layer__three(value) {
- if (this.vals[0] !== value[0]) {
- this.initData(0, value[0], 0)
- this.vals = [value[0], 0, 0]
- } else if (this.vals[1] !== value[1]) {
- this.initData(0, value[0], value[1])
- this.vals = [value[0], value[1], 0]
- } else {
- this.vals = value
- }
- },
- pickstart(e) {
- // #ifdef MP-WEIXIN
- clearTimeout(this.timer)
- this.isEnd = false;
- // #endif
- //仅微信小程序支持
- this.$emit('pickstart', {
- params: this.params
- })
- },
- pickend(e) {
- //仅微信小程序支持
- // #ifdef MP-WEIXIN
- this.timer = setTimeout(() => {
- this.isEnd = true;
- }, 100)
- // #endif
- this.$emit('pickend', {
- params: this.params
- })
- }
- }
- }
- </script>
- <style scoped>
- .tui-mask__screen {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.6);
- z-index: 1001;
- transition: all 0.3s ease-in-out;
- opacity: 0;
- visibility: hidden;
- }
- .tui-picker__mask-show {
- opacity: 1;
- visibility: visible;
- }
- .tui-picker__wrap {
- width: 100%;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 1002;
- visibility: hidden;
- transform: translate3d(0, 100%, 0);
- transform-origin: center;
- transition: all 0.3s ease-in-out;
- min-height: 20rpx;
- }
- .tui-picker__radius {
- border-top-left-radius: 24rpx;
- border-top-right-radius: 24rpx;
- overflow: hidden;
- }
- .tui-picker__show {
- transform: translate3d(0, 0, 0);
- visibility: visible;
- }
- .tui-picker__header {
- width: 100%;
- height: 92rpx;
- padding: 0 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: border-box;
- position: relative;
- }
- .tui-picker__header::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid rgba(0, 0, 0, .1);
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left: 0;
- }
- .tui-picker__btn-cancle {
- padding: 20rpx;
- flex-shrink: 0;
- /* #ifdef H5 */
- cursor: pointer;
- /* #endif */
- }
- .tui-picker__btn-sure {
- padding: 20rpx;
- flex-shrink: 0;
- /* #ifdef H5 */
- cursor: pointer;
- /* #endif */
- }
- .tui-picker__title {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- flex: 1;
- padding: 0 30rpx;
- box-sizing: border-box;
- text-align: center;
- }
- .tui-picker__view {
- width: 100%;
- height: 260px;
- }
- .tui-picker__item {
- line-height: 48px;
- text-align: center;
- }
- .tui-picker__opcity {
- opacity: 0.5;
- }
- </style>
|