|
@@ -8,9 +8,9 @@
|
|
|
<view v-show="!show">
|
|
|
<view style="position: fixed;width: 100%;z-index: 999;background-color: #FFFFFF;">
|
|
|
<u-line color="#D6D6DB" />
|
|
|
- <view style="display: flex;justify-content: space-between;height: 78rpx;line-height: 78rpx;padding: 0 30rpx;font-size: 32rpx;">
|
|
|
- <view style="color: #666666;">{{selObj.eName}}:{{selObj.pName}}-{{selObj.bName}}</view>
|
|
|
- <view style="color: #007AFF;" @click="openLeft()">重新选择</view>
|
|
|
+ <view style="display: flex;justify-content: space-between;height: 78rpx;line-height: 78rpx;padding: 0 30rpx;font-size: 28rpx;">
|
|
|
+ <view style="color: #666666;white-space: nowrap;width: 80%;overflow-x: hidden;">{{selObj.eName}}:{{selObj.pName}}-{{selObj.bName}}</view>
|
|
|
+ <view style="color: #007AFF;width: 20%;" @click="openLeft()">重新选择</view>
|
|
|
</view>
|
|
|
<u-line color="#D6D6DB" />
|
|
|
<view style="display: flex;align-items:center;">
|
|
@@ -57,7 +57,7 @@
|
|
|
</view>
|
|
|
<view v-show="current==1">
|
|
|
<view class="listBox">
|
|
|
- <navigator :url="'/pages2/bank/detail'+item.goodsId" v-for="(item,index) in list2" :key="index" >
|
|
|
+ <navigator :url="'/pages2/bank/detail?id='+item.goodsId" v-for="(item,index) in list2" :key="index" >
|
|
|
<view class="itemBox">
|
|
|
<image :src="$method.splitImgHost(item.coverUrl, true)" style="height: 316rpx;width: 100%;border-radius: 24rpx;"></image>
|
|
|
<view style="display: flex;margin-top: 13rpx;">
|
|
@@ -77,10 +77,10 @@
|
|
|
<view v-show="show" class="popuBox">
|
|
|
<view class="flex-d" >
|
|
|
<view class="contentZ">
|
|
|
- <view class="lzs">
|
|
|
+ <view class="lzs" >
|
|
|
<view class="tylsz" v-for="(item, index) in eList" :key="index" @click="item.id === 0 ? activeAll(1) : active1(item)" :class="item.id === selObj.eId ? 'activeStys':''">{{ item.educationName }}</view>
|
|
|
</view>
|
|
|
- <view class="lzs">
|
|
|
+ <view class="lzs" >
|
|
|
<view class="tylszB" v-for="(item, index) in bList" :key="index" @click="item.id === 0 ? activeAll(2) : active2(item)" :class="item.id === selObj.bId ? 'activeStys2':''">{{ item.projectName }}-{{ item.businessName }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -202,6 +202,7 @@ export default {
|
|
|
this.$api.businessList(data).then(res => {
|
|
|
if(res.data.code==200){
|
|
|
self.bList = res.data.rows
|
|
|
+ console.log(self.bList,66)
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -305,9 +306,12 @@ export default {
|
|
|
</style>
|
|
|
<style scoped>
|
|
|
.popuBox{
|
|
|
- position: fixed;
|
|
|
+ top: 92px;
|
|
|
width: 100%;
|
|
|
- height: 100%;
|
|
|
+ bottom:0;
|
|
|
+ position:absolute;
|
|
|
+ overflow-y:scroll;
|
|
|
+ overflow-x:hidden;
|
|
|
background-color: #FFFFFF;
|
|
|
}
|
|
|
.activeStys2{
|
|
@@ -322,6 +326,7 @@ export default {
|
|
|
border-radius: 16rpx;
|
|
|
padding: 0 10rpx;
|
|
|
margin-top: 15rpx;
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
|
.activeStys{
|
|
|
background: linear-gradient(90deg, rgba(1,94,234,0.2),rgba(255,255,255,.6));
|
|
@@ -337,6 +342,7 @@ export default {
|
|
|
font-weight: bold;
|
|
|
padding:0 30rpx;
|
|
|
margin-top: 15rpx;
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
|
.popup_t1 {
|
|
|
padding-left: 35rpx;
|
|
@@ -345,10 +351,10 @@ export default {
|
|
|
margin-top: 86rpx;
|
|
|
font-weight: bold;
|
|
|
color: #007AFF;
|
|
|
- font-size: 30rpx;
|
|
|
+ font-size: 27rpx;
|
|
|
}
|
|
|
.flex-d {
|
|
|
- height: 130%;
|
|
|
+
|
|
|
background-color: #FFFFFF;
|
|
|
padding: 0 5%;
|
|
|
font-size: 30rpx;
|
|
@@ -356,7 +362,7 @@ export default {
|
|
|
.contentZ {
|
|
|
overflow-y: auto;
|
|
|
display: flex;
|
|
|
-
|
|
|
+ height: 100%;
|
|
|
padding: 10rpx;
|
|
|
}
|
|
|
.contentZ::-webkit-scrollbar {
|