123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <template>
- <view class="hangye-list u-flex-col">
- <view class="hangye-search">
- <view class="search-box u-flex">
- <u-icon name="search" size="30"></u-icon>
- <input type="text" class="input" placeholder="搜索行业" v-model="keyword1" confirm-type="search" @confirm="tosearch">
- </view>
- </view>
- <view class="u-flex-1 scroll-box u-flex">
- <scroll-view scroll-y="true" class="scroll-left">
- <view class="left-item u-flex u-row-between" :class="{leftactive:leftindex == index}" @click="changeleft(index)" v-for="(item,index) in leftlist" :key="index">
- <text></text>
- <text>{{item.name}}</text>
- <text></text>
- </view>
- </scroll-view>
- <scroll-view scroll-y="true" class="scroll-right">
- <view class="right-item">
- <view class="u-flex u-row-between u-flex-wrap right-list">
- <text class="right-text u-line-1" @click="changeright(a)" v-for="(a,b) in rightlist" :key="b">{{a.name}}</text>
- </view>
- </view>
- </scroll-view>
- </view>
- <!-- <view class="hangye-down">
- <view class="u-flex u-row-between hangye-btn">
- <text class="text1">重置</text>
- <text class="text2">保存</text>
- </view>
- <view class="safe-area-inset-bottom"></view>
- </view> -->
- </view>
- </template>
- <script>
- import {get_category_industry} from "@/units/inquire.js"
- export default {
- data() {
- return {
- leftindex: 0,
- leftlist: [],
- rightlist:[],
- keyword1: '',
- keyword: ''
- }
- },
- onLoad() {
- this.getlist()
- },
- methods: {
- changeright(item) {
- var arr = []
- arr.push({
- id: this.leftlist[this.leftindex].id,
- name: this.leftlist[this.leftindex].name
- })
- arr.push({
- id: item.id,
- name: item.name
- })
- const eventChannel = this.getOpenerEventChannel();
- eventChannel.emit('changehangye', arr);
- uni.navigateBack()
- },
- tosearch(){
- this.keyword = this.keyword1
- this.shaixuan()
- },
- shaixuan() {
- if (this.keyword) {
- var rightlist = JSON.parse(JSON.stringify(this.leftlist[this.leftindex].childlist))
- this.rightlist = []
- rightlist.forEach(item => {
- if (item.name.indexOf(this.keyword) > -1) {
- this.rightlist.push(item)
- }
- })
- } else {
- this.rightlist = this.leftlist[this.leftindex].childlist
- }
- },
- changeleft(index){
- this.leftindex = index
- this.shaixuan()
- },
- getlist() {
- get_category_industry().then(res => {
- console.log(res);
- this.leftlist = res.data
- this.rightlist = this.leftlist[this.leftindex].childlist
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .hangye-list {
- height: 100vh;
- .hangye-down {
- .hangye-btn {
- padding: 8rpx 32rpx;
- .text1 {
- width: 256rpx;
- line-height: 84rpx;
- background: #F3F3F3;
- border-radius: 12rpx;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .text2 {
- width: 406rpx;
- line-height: 84rpx;
- background: #0C66C2;
- border-radius: 12rpx;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- }
- .scroll-box {
- min-height: 1rpx;
- .scroll-right {
- flex: 1;
- min-width: 1rpx;
- height: 100%;
- padding: 0 32rpx 0 26rpx;
- .right-item {
- padding: 34rpx 0;
- .right-list {
- .right-text {
- width: 212rpx;
- line-height: 72rpx;
- background: #F3F3F3;
- border-radius: 4rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: SFPro-Regular, SFPro;
- font-weight: 400;
- color: #222222;
- margin-bottom: 20rpx;
- }
- .rightactive {
- background-color: rgba(12, 102, 194, 0.1);
- color: #0C66C2;
- }
- }
- .item-title {
- padding: 30rpx 0 24rpx;
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #222222;
- }
- }
- }
- .scroll-left {
- width: 240rpx;
- border-right: 2rpx solid #F0F0F0;
- height: 100%;
- .left-item {
- padding: 26rpx 0;
- text:first-child {
- width: 4rpx;
- height: 32rpx;
- }
- text:nth-child(2) {
- flex: 1;
- padding: 0 28rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- text:last-child {
- width: 4rpx;
- height: 32rpx;
- }
- }
- .leftactive {
- text:first-child {
- background-color: #0C66C2;
- }
- text:nth-child(2) {
- color: #0C66C2;
- font-weight: bold;
- }
- }
- }
- }
- .hangye-search {
- border-bottom: 2rpx solid #F0F0F0;
- padding: 20rpx 32rpx;
- .search-box {
- height: 76rpx;
- background: #F3F3F3;
- border-radius: 16rpx;
- padding: 0 24rpx;
- .input {
- flex: 1;
- font-size: 30rpx;
- margin-left: 10rpx;
- }
- }
- }
- }
- </style>
|