merchapp/java-mall-app-shop-admin/components/tui-select/tui-select.vue

537 lines
11 KiB
Vue

<template>
<view>
<view class="tui-select--mask" :class="{'tui-select--mask-show':show}" :style="getStyles" @tap.stop="maskClose">
</view>
<view class="tui-select--wrap" :class="{'tui-select--wrap-show':show}"
:style="{borderTopLeftRadius:radius+'rpx',borderTopRightRadius:radius+'rpx',background:background,zIndex:zIndex}">
<view class="tui-select--header"
:style="{background:background,borderTopLeftRadius:radius+'rpx',borderTopRightRadius:radius+'rpx'}">
<text class="tui-select--header-text"
:style="{fontSize:titleSize+'rpx',color:titleColor,fontWeight:fontWeight}">{{title}}</text>
<view class="tui-select--header-close" @tap.stop="handleClose">
<icon type="clear" color="#ccc" :size="16"></icon>
</view>
<view class="tui-select--header-line" :style="{background:dividerColor}"></view>
</view>
<scroll-view scroll-y class="tui-select--scroll" :show-scrollbar="false" :style="{height:height+'rpx'}">
<view class="tui-select--list">
<view class="tui-select--item" :style="{padding:padding}" @tap="itemClick(index)"
v-for="(model,index) in itemList" :key="index"
:class="{'tui-select--reverse':reverse,'tui-select--item-active':highlight && !model.disabled,'tui-select--disabled':model.disabled}">
<view class="tui-select--checkbox" :class="{'tui-select--is-checkmark ':isCheckMark}"
:style="{background:model[checkedField] && !isCheckMark ?getCheckboxColor:'transparent',borderColor:model[checkedField] && !isCheckMark ?getCheckboxColor:borderColor}">
<view class="tui-select--checkmark"
:style="{borderBottomColor:checkmarkColor,borderRightColor:checkmarkColor}"
v-if="model[checkedField]"></view>
</view>
<view class="tui-select--flex">
<view class="tui-select--icon-box"
:class="{'tui-select--icon-ml':!reverse,'tui-select--icon-mr':reverse}"
:style="{width:iconWidth+'rpx',height:iconWidth+'rpx',background:iconBgColor}"
v-if="model[srcField]">
<image :src="model[srcField]" :style="{width:iconWidth+'rpx',height:iconWidth+'rpx'}"
mode="scaleToFill"></image>
</view>
<text class="tui-select--item-text"
:class="{'tui-select--text-pl':!reverse,'tui-select--text-pr':reverse}"
:style="{fontSize:size+'rpx',color:color}">{{model[textField]}}</text>
</view>
<view v-if="dividerLine" class="tui-select--item-line"
:style="{background:dividerColor,left:reverse?0:bottomLeft+'rpx',right:reverse?bottomLeft+'rpx':0}">
</view>
</view>
</view>
</scroll-view>
<view class="tui-select--btn-wrap">
<view class="tui-select--btn" :style="{background:getBtnBackground}">
<text class="tui-select--btn" :class="['tui-select--btn-text']" :style="{color:btnColor}"
@tap.stop="handleClick">{{btnText}}</text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
name: "tui-select",
emits: ['confirm', 'close'],
props: {
show: {
type: Boolean,
default: false
},
list: {
type: Array,
default () {
return []
}
},
textField: {
type: String,
default: 'text'
},
valueField: {
type: String,
default: 'value'
},
srcField: {
type: String,
default: 'src'
},
checkedField: {
type: String,
default: 'checked'
},
height: {
type: [Number, String],
default: 600
},
radius: {
type: [Number, String],
default: 24
},
title: {
type: String,
default: '请选择'
},
titleSize: {
type: [Number, String],
default: 32
},
titleColor: {
type: String,
default: '#333'
},
fontWeight: {
type: [Number, String],
default: 400
},
multiple: {
type: Boolean,
default: false
},
background: {
type: String,
default: '#fff'
},
padding: {
type: String,
default: '30rpx'
},
//选择框选中后颜色
checkboxColor: {
type: String,
default: ''
},
borderColor: {
type: String,
default: '#ccc'
},
isCheckMark: {
type: Boolean,
default: false
},
checkmarkColor: {
type: String,
default: '#fff'
},
reverse: {
type: Boolean,
default: false
},
dividerLine: {
type: Boolean,
default: true
},
dividerColor: {
type: String,
default: '#EEEEEE'
},
bottomLeft: {
type: [Number, String],
default: 30
},
highlight: {
type: Boolean,
default: true
},
iconWidth: {
type: [Number, String],
default: 48
},
//v2.9.0+
iconBgColor: {
type: String,
default: '#F8F8F8'
},
size: {
type: [Number, String],
default: 30
},
color: {
type: String,
default: '#333'
},
btnText: {
type: String,
default: '确定'
},
btnBackground: {
type: String,
default: ''
},
btnColor: {
type: String,
default: '#fff'
},
maskBackground: {
type: String,
default: 'rgba(0,0,0,.6)'
},
maskClosable: {
type: Boolean,
default: false
},
zIndex: {
type: [Number, String],
default: 1000
}
},
computed: {
getStyles() {
return `background:${this.maskBackground};z-index:${Number(this.zIndex)-1};`
},
getCheckboxColor() {
return this.checkboxColor || (uni && uni.$tui && uni.$tui.color.primary) || '#5677fc'
},
getBtnBackground() {
return this.btnBackground || (uni && uni.$tui && uni.$tui.color.primary) || '#5677fc'
}
},
watch: {
list(newVal) {
this.initData(newVal)
}
},
data() {
return {
itemList: [],
index: -1
};
},
created() {
this.initData(this.list)
},
methods: {
initData(vals) {
vals = JSON.parse(JSON.stringify(vals))
if (vals && vals.length > 0) {
if (typeof vals[0] !== 'object') {
vals = vals.map(item => {
return {
[this.textField]: item,
[this.checkedField]: false,
disabled: false
}
})
} else {
vals.map((item, index) => {
item[this.checkedField] = item[this.checkedField] || false
if (!this.multiple && item[this.checkedField]) {
this.index = index
}
})
}
this.itemList = vals;
}
},
itemClick(index) {
let vals = [...this.itemList]
let item = vals[index]
if (item && item.disabled) return;
if (this.multiple) {
item[this.checkedField] = !item[this.checkedField];
} else {
vals.forEach((item, idx) => {
if (index === idx) {
item[this.checkedField] = true
} else {
item[this.checkedField] = false
}
})
this.index = index
}
this.itemList = vals;
},
handleClick() {
if (this.multiple) {
let items = []
this.itemList.forEach((item, idx) => {
if (item[this.checkedField]) {
items.push(item)
}
})
this.$emit('confirm', {
options: items
})
} else {
let index = this.index;
this.$emit('confirm', {
index: index,
options: index === -1 ? '' : this.list[index]
})
}
},
maskClose() {
if (!this.maskClosable) return;
this.handleClose()
},
handleClose() {
this.$emit('close', {})
}
}
}
</script>
<style scoped>
.tui-select--mask {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
transition: all ease-in-out .3s;
visibility: hidden;
opacity: 0;
}
.tui-select--mask-show {
opacity: 1;
visibility: visible;
}
.tui-select--wrap {
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
transform: translate3d(0, 100%, 0);
transition: all 0.3s ease-in-out;
min-height: 20rpx;
opacity: 0;
visibility: hidden;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
.tui-select--wrap-show {
transform: translate3d(0, 0, 0);
opacity: 1;
visibility: visible;
}
.tui-select--scroll {
width: 100%;
flex: 1;
}
.tui-select--list {
width: 100%;
}
.tui-select--item {
width: 100%;
display: flex;
box-sizing: border-box;
flex: 1;
flex-direction: row;
align-items: center;
position: relative;
/* #ifdef H5 */
cursor: pointer;
/* #endif */
position: relative;
}
.tui-select--disabled {
opacity: .5;
/* #ifdef H5 */
cursor: not-allowed;
/* #endif */
}
.tui-select--item-line {
position: absolute;
bottom: 0;
height: 1px;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
transform-origin: 0 100%;
z-index: 1;
}
.tui-select--item-active:active {
background: rgba(0, 0, 0, .2);
}
.tui-select--flex {
width: 100%;
display: flex;
box-sizing: border-box;
flex: 1;
flex-direction: row;
align-items: center;
}
.tui-select--reverse {
justify-content: space-between;
flex-direction: row-reverse;
}
.tui-select--checkbox {
font-size: 0;
color: rgba(0, 0, 0, 0);
width: 40rpx;
height: 40rpx;
border-width: 1px;
border-style: solid;
display: inline-flex;
box-sizing: border-box;
border-radius: 50%;
vertical-align: top;
flex-shrink: 0;
flex-direction: row;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}
.tui-select--is-checkmark {
border-width: 0 !important;
background: transparent !important;
}
.tui-select--checkmark {
width: 20rpx;
height: 40rpx;
border-bottom-style: solid;
border-bottom-width: 3px;
border-bottom-color: #FFFFFF;
border-right-style: solid;
border-right-width: 3px;
border-right-color: #FFFFFF;
box-sizing: border-box;
transform: rotate(45deg) scale(0.5) translateZ(0);
transform-origin: 54% 48%;
}
.tui-select--item-text {
word-break: break-all;
font-weight: normal;
}
.tui-select--text-pl {
padding-left: 20rpx;
}
.tui-select--text-pr {
padding-right: 20rpx;
}
.tui-select--icon-box {
overflow: hidden;
background-color: #F8F8F8;
flex-shrink: 0;
}
.tui-select--icon-ml {
margin-left: 20rpx;
}
.tui-select--icon-mr {
margin-right: 20rpx;
}
.tui-select--header {
width: 100%;
display: flex;
flex: 1;
height: 98rpx;
flex-direction: row;
align-items: center;
justify-content: center;
position: relative;
}
.tui-select--header-line {
position: absolute;
left: 0;
bottom: 0;
right: 0;
height: 1px;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
transform-origin: 0 100%;
z-index: 1;
}
.tui-select--header-text {
text-align: center;
width: 100%;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
text-overflow: ellipsis;
flex: 1;
padding: 0 88rpx;
}
.tui-select--header-close {
width: 50rpx;
height: 50rpx;
position: absolute;
right: 32rpx;
top: 24rpx;
text-align: right;
/* #ifdef H5 */
cursor: pointer;
/* #endif */
}
.tui-select--btn-wrap {
width: 100%;
display: flex;
box-sizing: border-box;
flex: 1;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 32rpx;
}
.tui-select--btn {
width: 100%;
display: flex;
flex: 1;
flex-direction: row;
align-items: center;
justify-content: center;
height: 84rpx;
border-radius: 44rpx;
/* #ifdef H5 */
cursor: pointer;
/* #endif */
font-size: 30rpx;
font-weight: normal;
text-align: center;
}
.tui-select--btn-text:active {
background: rgba(0, 0, 0, .2);
}
</style>