|
@@ -25,6 +25,7 @@
|
|
:current="current"
|
|
:current="current"
|
|
@change="change"
|
|
@change="change"
|
|
:scrollable="false"
|
|
:scrollable="false"
|
|
|
|
+ font-size="32"
|
|
></u-tabs>
|
|
></u-tabs>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -33,18 +34,19 @@
|
|
<view class="u-line-1"
|
|
<view class="u-line-1"
|
|
>{{ selObj.eName }}:{{ selObj.aliasName }}</view
|
|
>{{ selObj.eName }}:{{ selObj.aliasName }}</view
|
|
>
|
|
>
|
|
- <u-icon name="arrow-down-fill" color="#000000" size="20"> </u-icon
|
|
|
|
|
|
+ <u-icon name="arrow-down-fill" color="#333333" size="20"> </u-icon
|
|
></view>
|
|
></view>
|
|
<view class="line">|</view>
|
|
<view class="line">|</view>
|
|
<view class="check_search_input u-flex">
|
|
<view class="check_search_input u-flex">
|
|
- <img src="../../static/icon/icon-search.png" />
|
|
|
|
|
|
+ <!-- <img src="../../static/icon/icon-search.png" /> -->
|
|
|
|
+ <u-icon name="search" color="#333333" size="28"> </u-icon>
|
|
<u-input
|
|
<u-input
|
|
style="padding-left: 10rpx"
|
|
style="padding-left: 10rpx"
|
|
v-model="goodsName"
|
|
v-model="goodsName"
|
|
type="text"
|
|
type="text"
|
|
:border="border"
|
|
:border="border"
|
|
placeholder="搜索"
|
|
placeholder="搜索"
|
|
- @blur="initList"
|
|
|
|
|
|
+ @blur="blurSearch"
|
|
:auto-blur="true"
|
|
:auto-blur="true"
|
|
confirm-type="search"
|
|
confirm-type="search"
|
|
:clearable="false"
|
|
:clearable="false"
|
|
@@ -351,7 +353,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <u-popup v-model="show" mode="bottom" border-radius="32">
|
|
|
|
|
|
+ <u-popup v-model="show" mode="bottom" border-radius="32" :mask-close-able="false">
|
|
<view class="popuBox">
|
|
<view class="popuBox">
|
|
<view class="popuBox-title">选择分类</view>
|
|
<view class="popuBox-title">选择分类</view>
|
|
<view class="flex-d">
|
|
<view class="flex-d">
|
|
@@ -439,6 +441,7 @@ export default {
|
|
},
|
|
},
|
|
],
|
|
],
|
|
goodsName: "",
|
|
goodsName: "",
|
|
|
|
+ preGoodsName: "",
|
|
list1: [],
|
|
list1: [],
|
|
list2: [],
|
|
list2: [],
|
|
list3: [],
|
|
list3: [],
|
|
@@ -478,6 +481,9 @@ export default {
|
|
this.initList();
|
|
this.initList();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ blurSearch() {
|
|
|
|
+ this.preGoodsName != this.goodsName && this.initList();
|
|
|
|
+ },
|
|
mergeBusiness() {
|
|
mergeBusiness() {
|
|
this.paramList[0].educationTypeId = this.selObj.eId;
|
|
this.paramList[0].educationTypeId = this.selObj.eId;
|
|
this.paramList[0].businessId = this.selObj.bId;
|
|
this.paramList[0].businessId = this.selObj.bId;
|
|
@@ -562,6 +568,7 @@ export default {
|
|
this.list1 = [];
|
|
this.list1 = [];
|
|
this.list2 = [];
|
|
this.list2 = [];
|
|
this.list3 = [];
|
|
this.list3 = [];
|
|
|
|
+ this.preGoodsName = this.goodsName;
|
|
this.courseList();
|
|
this.courseList();
|
|
this.bankList();
|
|
this.bankList();
|
|
this.liveList();
|
|
this.liveList();
|
|
@@ -775,7 +782,7 @@ page {
|
|
.lzs {
|
|
.lzs {
|
|
width: 208rpx;
|
|
width: 208rpx;
|
|
height: 100%;
|
|
height: 100%;
|
|
- overflow-y: scroll;
|
|
|
|
|
|
+ overflow-x: auto;
|
|
border-right: 2rpx solid #e8e8e8;
|
|
border-right: 2rpx solid #e8e8e8;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -783,7 +790,7 @@ page {
|
|
margin-left: 32rpx;
|
|
margin-left: 32rpx;
|
|
flex: 1;
|
|
flex: 1;
|
|
height: 100%;
|
|
height: 100%;
|
|
- overflow-y: scroll;
|
|
|
|
|
|
+ overflow-x: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.contentZ::-webkit-scrollbar {
|
|
.contentZ::-webkit-scrollbar {
|