吉媒互动平台前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

103 lines
3.3 KiB

<template>
<view class="gui-select-list">
<view v-for="(item, index) in dataIn"
:key="index" class="gui-select-list-item gui-flex gui-rows gui-nowrap gui-align-items-center"
:data-index="index" @tap.stop="choose">
<text class="gui-select-list-icon gui-icons gui-block-text gui-select-list-ring gui-select-list-icon-l"
v-if="checkedType == 'ring' && !item.checked">&#xe762;</text>
<text class="gui-select-list-icon gui-icons gui-block-text gui-select-list-ring gui-select-list-icon-l gui-fade-in gui-select-list-current"
v-if="checkedType == 'ring' && item.checked">&#xe685;</text>
<image :src="item.img" class="gui-select-list-img" v-if="item.img" mode="widthFix"></image>
<view class="gui-select-list-body gui-flex gui-rows gui-nowrap gui-align-items-center"
:class="[isBorder?'gui-border-b' : '']" :style="{borderColor:borderColor}">
<view class="gui-select-list-content">
<text class="gui-block-text gui-select-list-title">{{item.title}}</text>
<text class="gui-select-list-desc gui-block-text" v-if="item.desc">{{item.desc}}</text>
</view>
<text class="gui-icons gui-block-text gui-select-list-icon gui-select-list-current"
:class="[item.checked ? 'gui-fade-in gui-select-list-current' : '']"
v-if="item.checked && checkedType == 'right'">&#xe60f;</text>
</view>
</view>
</view>
</template>
<script>
export default{
name : "gui-select-list",
props : {
items : {type : Array, default : function(){return [];}},
type : {type : String, default : "radio"},
checkedType : {type : String, default : 'right'},
isBorder : {type : Boolean, default : true},
borderColor : {type : String, default : "#F6F6F6"},
maxSize : {type : Number, default : 0}
},
data() {
return {
dataIn : []
}
},
created : function(){
this.dataIn = this.items;
},
watch : {
items : function(val){ this.dataIn = val;}
},
methods : {
// 获取选中数据的索引
getSelectedIndex : function(){
var tmpArr = [];
this.dataIn.forEach((item, idx)=>{
if(item.checked){
tmpArr.push(idx);
}
});
return tmpArr;
},
// 选择数据
choose : function(e){
var index = e.currentTarget.dataset.index;
if(this.type == 'radio'){
if(this.dataIn[index].checked){
this.dataIn[index].checked = false;
this.$emit('change', -1);
}else{
for(let i = 0; i < this.dataIn.length; i++){
this.dataIn[i].checked = false;
}
this.dataIn[index].checked = true;
this.$emit('change', index);
}
}else{
if(this.dataIn[index].checked){
this.dataIn[index].checked = false;
}else{
if(this.maxSize > 0){
var size = 0;
this.dataIn.forEach((item)=>{
if(item.checked){size++;}
});
size++;
if(size > this.maxSize){this.$emit('maxSed'); return ;}
}
this.dataIn[index].checked = true;
}
var sedArr = [];
for(let i = 0; i < this.dataIn.length; i++){
if(this.dataIn[i].checked){
sedArr.push(i);
}
}
this.$emit('change', sedArr);
}
}
}
}
</script>
<style scoped>
.gui-select-list-item{font-size:0;}
.gui-select-list-icon{margin-left:10rpx;}
.gui-select-list-icon-l{margin-left:0; margin-right:10rpx;}
.gui-select-list-body{width:100rpx; flex:1;}
.gui-select-list-content{width:200rpx; flex:1; overflow:hidden; padding:25rpx 0;}
</style>