123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <template>
- <view style="background-color: #f5f5f5;height: 100vh;overflow: hidden;">
- <search v-if="searchIf" ref="sea" @confirm="confirmSearch" />
- <view class="all">
- <view class="sheng">
- <view class="title">
- <scroll-view scroll-x @scroll="scroll" style="width: 100%;white-space: nowrap;" :scroll-left="scrollLeft" >
- <view v-for="(item,index) in parent" style="display:inline-block" :key="index">
- <view style='display:inline-block' v-if="index==0" @click="backTree(item,-1)" >
- <text v-if="index==parent.length-1&&!isre" class="none">全部</text>
- <text v-else class="active">全部</text>
- </view>
- <view style='display:inline-block' v-if="index==0&&isre" @click="backTree(item,-2)" :class="[index==parent.length-1&&isre]?'none':'active'">
- <text style='display:inline-block;margin: 0 6px;color: #D0D4DB;font-size: 14px;' class="iconfont icon-z043"></text>
- 搜索结果
- </view>
- <view style='display:inline-block' @click="backTree(item,index)" v-if="index!=0">
- <text style='display:inline-block;margin: 0 6px;color: #D0D4DB;font-size: 14px;' v-if="index!=0" class="iconfont icon-z043"></text>
- <text style='display:inline-block' v-if="index==parent.length-1" class="none">
- {{item[props.label]}}
- </text>
- <text style='display:inline-block' v-else class="active">
- {{item[props.label]}}
- </text>
- </view>
- </view>
- </scroll-view>
- </view>
- <view class="common" v-for="(item, index) in tree" @click="toChildren(item)" :key="index">
- <label class="content">
- <view class="checkbox" v-if="isCheck&&props.multiple" @click.stop="checkboxChange(item,index)">
- <text style="color: #0095F2;font-size: 20px;" v-if="item.checked" class="iconfont icon-xuanzhong txt colors"></text>
- <text style="font-size: 20px;color: #b8b8b8;" v-else class="iconfont icon-weixuanzhong txt"></text>
- </view>
- <view class="checkbox" v-if="isCheck&&!props.multiple&&props.nodes?item.user:true" @click.stop="checkbox(item,index)">
- <text style="font-size: 20px;color: #0ec7ff;" v-if="item.checked" class="txt iconfont icon-selected">
- </text>
- <text style="font-size: 20px;color: #b8b8b8;" v-else class="txt iconfont icon-weixuanzhong1">
- </text>
- </view>
- <view class="person" v-if="item.user" >
- {{item[props.label].substring(item[props.label].length-2)}}
- </view>
- <view class="word">{{item[props.label]}}</view>
- <view class="right">
- <text v-if="!item.user&&item.children.length>0" class="iconfont icon-z043"></text>
- </view>
- </label>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import search from './components/search/index.vue'
- export default {
- props: {
- trees: {
- type: Array,
- default: () => []
- },
- isCheck: {
- type: Boolean,
- default: () => false
- },
- checkList: {
- type: Array,
- default: () => []
- },
- searchIf:{
- type:Boolean,
- default:()=>true
- },
- props: {
- type: Object,
- default: () => {
- return {
- label: 'name',
- children: 'children',
- multiple:true,
- checkStrictly:false,
- nodes:true
- }
- }
- }
- },
- data() {
- return {
- isre: false,
- tree: this.trees,
- allData: this.trees,
- parent: [1],
- searchResult: [],
- party_current: 100000,
- newCheckList:this.checkList,
- scrollLeft:999,
- old: {
- scrollTop: 0
- }
- }
- },
- components: {
- search
- },
- methods: {
- //多选
- checkboxChange: function(item, index) {
- var that = this;
- let status = !that.tree[index].checked,temp=Object.assign({},item)
- if(item.checked){//反选
- if(this.props.checkStrictly){
- if(item.user){
- that.$set(that.tree[index], 'checked', false)
- this.delUser(item.id)
- }
- else{
- that.$set(that.tree[index], 'checked', false)
- for(var index=0,n=this.newCheckList.length;index<n;index++){
- let temp=this.newCheckList[index];
- if(temp.id==item.id){
- this.newCheckList.splice(index,1)
- break
- }
- }
- this.delChild(item)
- }
- }else{
- that.$set(that.tree[index], 'checked', false)
- for(var index=0,n=this.newCheckList.length;index<n;index++){
- let temp=this.newCheckList[index];
- if(temp.id==item.id){
- this.newCheckList.splice(index,1)
- break
- }
- }
- }
- }else{//选中
- that.newCheckList.push(item)
- that.$set(that.tree[index], 'checked', true)
- if(this.props.checkStrictly){
- this.chooseChild(item)
- }
- }
- that.$emit('sendValue', that.newCheckList)
- },
- delUser(id){
- let that=this;
- for (var i = 0, len = that.newCheckList.length; i < len; i++) {
- if (that.newCheckList[i].id === id) {
- that.newCheckList.splice(i, 1)
- console.log('删user')
- return
- }
- }
- },
- chooseChild(arr){
- let that=this;
- if(!arr.user){
- for(var i=0,len=arr.children.length;i<len;i++){
- let item=arr.children[i];
- item.checked=true
- that.newCheckList.push(item)
- if(!item.user){
- this.chooseChild(item)
- }
- }
- }
- that.newCheckList=Array.from(new Set(that.newCheckList))
- },
- delChild(arr){
- console.log(this.newCheckList)
- if(!arr.user){
- for(var i=0,len=arr.children.length;i<len;i++){
- let item=arr.children[i];
- item.checked=false
- for(var index=0,n=this.newCheckList.length;index<n;index++){
- let temp=this.newCheckList[index];
- if(temp.id==item.id){
- this.newCheckList.splice(index,1)
- break
- }
- }
- if(!item.user){
- this.delChild(item)
- }
- }
- }
- },
- //单选
- checkbox: function(item, index) {
- var that = this;
- let status = !that.tree[index].checked
- that.$set(that.tree[index], 'checked', status)
- if (that.newCheckList.length <= 0) {
- that.newCheckList=[that.tree[index]]
- }
- else if(that.newCheckList.length==1){
- this.tree.forEach(item=>{
- if(item.id!=this.tree[index].id){
- item.checked=false
- }
- })
- that.newCheckList=[]
- if(that.tree[index].checked){
- that.newCheckList.push(that.tree[index])
- }
- }
- that.$emit('sendValue', that.newCheckList)
- },
- scroll: function(e) {
- console.log(e)
- this.old.scrollTop = e.detail.scrollTop
- },
- //到下一级
- toChildren(item) {
- var that = this;
- let children = that.props.children
- if (!item.user && item[children].length > 0) {
- that.tree = item[children]
- that.checkIf()
- if (that.parent[0].id == item.id) {
- } else {
- that.parent.push(item)
- }
- }
- },
- // 校验哪些选中了。单选
- checkIf(){
- let that=this;
- console.log(this.newCheckList,'new')
- for (var i = 0, len = that.tree.length; i < len; i++) {
- for (var j = 0, lens = that.newCheckList.length; j < lens; j++) {
- if (that.newCheckList[j].id === that.tree[i].id) {
- that.$set(that.tree[i], 'checked', true)
- break
- }
- else{
- that.$set(that.tree[i], 'checked', false)
- }
- }
- }
- },
- //搜索
- confirmSearch(val) {
- this.searchResult = []
- this.search(this.allData, val)
- this.isre = true
- this.parent.splice(1, 6666)
- uni.showLoading({
- title: '正在查找'
- })
- setTimeout(() => {
- this.tree = this.searchResult
- uni.hideLoading()
- }, 300)
- },
- search(data, keyword) {
- var that = this
- let children = that.props.children
- for (var i = 0, len = data.length; i < len; i++) {
- if (data[i].name.indexOf(keyword) >= 0) {
- that.searchResult.push(data[i])
- }
- if (!data[i].user && data[i][children].length > 0) {
- that.search(data[i][children], keyword)
- }
- }
- },
- //返回其它层
- backTree(item, index) {
- let that=this;
- if (index == -1) {
- this.tree = this.allData
- this.parent.splice(1, 6666)
- this.isre = false
- this.$refs.sea.clears()
- } else if (index == -2) {
- this.tree = this.searchResult
- this.parent.splice(1, 6666)
- } else {
- var t = this
- if (this.parent.length - index > 2) {
- this.parent.forEach((item, i) => {
- if (i > index) {
- this.parent.splice(i, 6666)
- }
- })
- } else if (index == this.parent.length - 1) {
- console.log('不操作')
- } else {
- this.parent.splice(this.parent.length - 1, 1)
- }
- this.tree = item[this.props.children]
- }
- if(that.props.multiple)return
- that.checkIf()
- }
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .flex_between_center {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .checkbox {
- position: relative;
- height: 18px;
- margin-left: 5px;
- margin-right: 0px;
- width: 18px;
- .color{
- color: #00aaff;
- background-color: #00aaff;
- }
- .txt {
- line-height: 18px;
- width: 100%;
- height: 100%;
- display: flex;
- }
- }
- .checkBorder {
- border: 1px solid #ecdee4;
- }
- .all {
- padding-bottom: 68px;
- background-color: #f5f5f5;
- .sheng {
- margin-bottom: 10px;
- .title {
- height: 45px;
- padding: 0 16px;
- line-height: 45px;
- font-size: 15px;
- color: #606064;
- }
- }
- }
- .common {
- background-color: #fff;
- .content {
- display: flex;
- align-items: center;
- padding-left: 5px;
- border-bottom: 1px solid #fafafa;
- height: 50px;
- width: 100%;
- line-height: 50px;
- position: relative;
- font-size: 16px;
- .right{
- position: absolute;
- right: 15px;
- color: #babdc3;
- font-size: 16px;
- }
- .word {
- margin-left: 6px;
- }
- }
- }
- .person {
- height: 32px;
- width: 32px;
- border-radius: 50%;
- border: 1px solid #ff9f44;
- background-color: #fff9f4;
- margin-left: 0px;
- color: #f57a00;
- line-height: 32px;
- font-size: 11px;
- text-align: center;
- margin-left: 10px;
- }
- .active {
- color: #4297ED!important;
- }
- .none {
- color: #666666;
- }
- @import url("./css/icon.css");
- //@import url("https://at.alicdn.com/t/font_2009600_07r9regf6vmw.css");
- </style>
|