123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- <template>
- <view class="container">
- <!-- <u-popup mode="right" width="100%" height="100%"> -->
- <view class="u-wrap">
- <view class="u-search-box">
- <u-search placeholder="请输入关键词" @focus="focus" @change="toSearch" @custom="cancle" v-model="keyword"
- :show-action="showAction" action-text="取消"></u-search>
- </view>
- <view class="search-warp" v-if="showAction">
- <scroll-view scroll-y :style="{'height': scrollHeight+'px'}" class="item-container">
- <view class="thumb-box" v-for="(item, index) in searchList" :key="index" @click="selval(item)">
- <!-- {{item}} -->
- <view :class="[value==item[valueName]? 'item-active' : '']">
- <text>{{item.secondName}}</text>
- </view>
- <u-icon v-if="value==item[valueName]" name="checkbox-mark" :color="iconColor" size="28">
- </u-icon>
- </view>
- </scroll-view>
- </view>
- <view class="u-menu-wrap">
- <scroll-view scroll-y scroll-with-animation class="u-tab-view menu-scroll-view" :scroll-top="scrollTop">
- <view v-for="(item,index) in first" :key="index" class="u-tab-item"
- :class="[current==index ? 'u-tab-item-active' : '']" :data-current="index"
- @tap.stop="swichMenu(index,item)">
- <text class="u-line-2">{{item[labelName]}}</text>
- </view>
- </scroll-view>
- <block v-for="(item,index) in first" :key="index">
- <scroll-view scroll-y class="right-box" v-if="current==index">
- <view class="page-view">
- <view class="class-item">
- <view class="item-container">
- <view class="thumb-box" v-for="(item1, index1) in second" :key="index1"
- @click="selval(item1)">
- <view :class="[value==item1[valueName] ? 'item-active' : '']"
- class="img-content">
- <image :src="item2" mode="" v-for="item2 in item1.urlPath.split(',')"
- class="img">
- </image>
- <text class="right-text"
- style="margin-left: 20rpx;">{{item1.secondName}}</text>
- </view>
- <!-- <u-icon v-if="value==item1[valueName]" name="checkbox-mark" :color="iconColor"
- size="28">
- </u-icon> -->
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </block>
- </view>
- </view>
- <!-- </u-popup> -->
- </view>
- </template>
- <script>
- export default {
- name: 'jobSelect',
- props: {
- //label展示字段
- labelName: {
- type: String,
- default: 'typeName'
- },
- //value选中字段
- valueName: {
- type: String,
- default: 'id'
- },
- //初始选中值
- selectValue: {
- type: Number,
- default: 0
- },
- //选择数据
- listData: {
- type: Array,
- default: () => {
- return [];
- }
- },
- typeOneData: {
- type: Array,
- default: () => {
- return [];
- }
- },
- typeTwoData: {
- type: Array,
- default: () => {
- return [];
- }
- }
- },
- data() {
- return {
- first: JSON.parse(JSON.stringify(this.typeOneData)),
- second: JSON.parse(JSON.stringify(this.typeTwoData)),
- showModel: true,
- list: JSON.parse(JSON.stringify(this.listData)),
- scrollTop: 0, //tab标题的滚动条位置
- current: 0, // 预设当前项的值
- menuHeight: 0, // 左边菜单的高度
- menuItemHeight: 0, // 左边菜单item的高度
- value: this.selectValue,
- keyword: '',
- iconColor: 'primary',
- showAction: false,
- searchList: [],
- scrollHeight: 500
- }
- },
- watch: {
- listData: {
- handler(newName, oldName) {
- this.list = JSON.parse(JSON.stringify(newName))
- },
- deep: true,
- },
- typeOneData: {
- handler(newName, oldName) {
- this.first = JSON.parse(JSON.stringify(newName))
- },
- deep: true,
- },
- typeTwoData: {
- handler(newName, oldName) {
- this.second = JSON.parse(JSON.stringify(newName))
- },
- deep: true,
- }
- },
- created() {
- var that = this;
- uni.getSystemInfo({
- success: function(res) {
- let windowHeight = res.windowHeight;
- let windowWidth = res.windowWidth;
- //#ifdef H5
- let headHeight = 110 / 750 * windowWidth;
- //#endif
- //#ifndef H5
- let headHeight = 200 / 750 * windowWidth;
- //#endif
- let scrollHeight = (windowHeight - headHeight);
- that.scrollHeight = scrollHeight;
- }
- });
- },
- methods: {
- show() {
- this.showModel = true;
- },
- hide() {
- this.showModel = false;
- },
- selval(item) {
- this.value = item[this.valueName];
- // this.showModel = false;
- this.keyword = '';
- this.showAction = false;
- this.$emit('confirem', item);
- },
- // 点击左边的栏目切换
- async swichMenu(index, val) {
- this.$request.baseRequest('admin.gubi.gubiTypeSecond', 'list', {
- page: 1,
- limit: 1000,
- typeId: val.id
- },
- failres => {
- console.log('res+++++', failres.errmsg)
- this.$refs.uToast.show({
- type: 'error',
- message: failres.errmsg,
- })
- uni.hideLoading()
- }).then(res => {
- console.log(res.data.items)
- this.second = res.data.items
- if (index == this.current) return;
- this.current = index;
- // 如果为0,意味着尚未初始化
- if (this.menuHeight == 0 || this.menuItemHeight == 0) {
- this.getElRect('menu-scroll-view', 'menuHeight');
- this.getElRect('u-tab-item', 'menuItemHeight');
- }
- // 将菜单菜单活动item垂直居中
- this.scrollTop = index * this.menuItemHeight + this.menuItemHeight / 2 - this.menuHeight /
- 2;
- })
- },
- // 获取一个目标元素的高度
- getElRect(elClass, dataVal) {
- new Promise((resolve, reject) => {
- const query = uni.createSelectorQuery().in(this);
- query.select('.' + elClass).fields({
- size: true
- }, res => {
- // 如果节点尚未生成,res值为null,循环调用执行
- if (!res) {
- setTimeout(() => {
- this.getElRect(elClass);
- }, 10);
- return;
- }
- this[dataVal] = res.height;
- }).exec();
- })
- },
- focus() {
- this.showAction = true;
- },
- cancle() {
- this.showAction = false;
- this.keyword = '';
- },
- toSearch() {
- let arr = [];
- // this.list.map((item, index) => {
- this.second.map((it, ix) => {
- console.log(123)
- console.log(it, ix)
- console.log(it.secondName.indexOf(this.keyword))
- if (it.secondName.indexOf(this.keyword) > -1 && this.keyword) {
- // it['pname'] = item[this.secondName];
- arr.push(it);
- }
- })
- // })
- console.log('arr', arr)
- this.searchList = arr;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .u-wrap {
- // height: 100%;
- // width: 100%;
- // display: flex;
- // flex-direction: column;
- // position: relative;
- // overflow: hidden;
- }
- .u-search-box {
- padding: 0rpx 30rpx;
- box-sizing: border-box;
- background-color: white;
- display: flex;
- // flex-direction: row;
- align-items: center;
- height: 100rpx;
- width: 100%;
- position: fixed;
- top: 85px;
- z-index: 99;
- }
- .search-warp {
- display: flex;
- overflow: hidden;
- background-color: #FFFFFF;
- position: absolute;
- z-index: 10;
- // top: 200rpx;
- left: 0;
- width: 100%;
- }
- .u-menu-wrap {
- padding-bottom: 100rpx;
- flex: 1;
- display: flex;
- overflow: hidden;
- background-color: #F8F8F8;
- }
- .u-tab-view {
- width: 300rpx;
- height: 100vh;
- overflow: hidden;
- }
- .u-tab-item {
- height: 100rpx;
- background: #f6f6f6;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- font-size: 26rpx;
- padding: 0 20rpx;
- color: #444;
- font-weight: 400;
- }
- .u-tab-item-active {
- position: relative;
- color: red;
- font-size: 28rpx;
- font-weight: 600;
- background: #fff;
- }
- .u-tab-item-active::before {
- content: "";
- position: absolute;
- border-left: 4px solid red;
- height: 32rpx;
- left: 0;
- top: 39rpx;
- }
- .u-tab-view {
- // height: 100%;
- }
- .right-box {
- background-color: white;
- height: 100vh;
- overflow: hidden;
- }
- .page-view {
- background-color: white;
- }
- .class-item {
- background-color: #fff;
- border-radius: 8rpx;
- }
- .item-menu-name {
- font-weight: normal;
- font-size: 24rpx;
- color: $u-main-color;
- }
- .item-container {
- display: flex;
- flex-direction: column;
- flex: 1;
- }
- .item-active {
- color: #ccc;
- }
- .thumb-box {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 20rpx;
- align-items: center;
- font-size: 32rpx;
- }
- .img {
- width: 300rpx;
- height: 150rpx;
- }
- .img-content {
- width: 100%;
- display: flex;
- align-items: center;
- // justify-content: space-between;
- // width: 90%;
- .right-text {
- width: calc(100% - 320rpx);
- }
- }
- .container {
- position: relative;
- top: 100px;
- }
- </style>
|