smartmeter-app/pages_teacher/teacher_teachers/components/slander.vue

250 lines
4.9 KiB
Vue
Raw Normal View History

2023-12-05 18:51:43 +08:00
<template>
<!-- 口语下拉 -->
2023-12-05 21:18:18 +08:00
<view>
2023-12-08 15:26:16 +08:00
<view class="view_left">
<view class="view_left_pd" @click="arrow_xl">
<view class="pull_down">
<view>{{selectedOption}}</view>
<u-icon name="arrow-down" size="22"></u-icon>
</view>
<view class="pull_Down" v-if="arrow">
<view v-for="(item,index) in options" :key="index" @click="arrow_options(item.id)">{{item.name}}</view>
</view>
</view>
</view>
<!-- 口语主体 -->
<view v-for="(item,index) in slander" :key="index">
<view class="view_inuygs">
<view class="header_part">
<view class="unite">{{item.label}}</view>
</view>
<view class="bottom_one" v-if="part2">
<view class="blue">串题</view>
<view class="blue">跟读</view>
<view>模考</view>
</view>
</view>
<!-- part1-->
<view class="slander_for">
<view class="slander_of" v-for="(items,indexs) in item.list" :key='indexs'>
<view class="textual">
2023-12-07 23:10:26 +08:00
{{items.topicEn}}
2023-12-05 18:51:43 +08:00
</view>
2023-12-08 15:26:16 +08:00
<view class="bottom_one" v-if="grizzly">
<view class="blue">串题</view>
<view class="blue">跟读</view>
<view>模考</view>
2023-12-07 23:10:26 +08:00
</view>
2023-12-05 18:51:43 +08:00
</view>
2023-12-08 15:26:16 +08:00
</view>
<!-- part2-->
<view class="slander_for" v-if="part2">
<view class="slander_of" v-for="(items,indexs) in item.list" :key='indexs'>
<view class="textual2">
{{items.topicEn}}
</view>
2023-12-05 21:18:18 +08:00
</view>
2023-12-08 15:26:16 +08:00
</view>
</view>
</view>
2023-12-05 18:51:43 +08:00
</template>
<script>
export default {
2023-12-08 15:26:16 +08:00
data() {
2023-12-05 18:51:43 +08:00
return {
2023-12-08 15:26:16 +08:00
postdata: {
2023-12-05 18:51:43 +08:00
"key": "",
"pageNum": 0,
"mode": "home",
"part": "part1",
"order": "0",
"type": "",
"isStudy": 0,
"isFavorite": 0,
"isEvlua": 0,
"isFun": 0,
"level": 0,
"isNew": 0
},
//口语
slander: [],
2023-12-08 15:26:16 +08:00
part2:false,
grizzly:true,
categorize: '分类',
// 下拉框的v-if布尔值
selectedOption: 'Part1',
arrow: false,
arrowDown: false,
options: [{
id: 1,
name: 'Part1'
2023-12-05 18:51:43 +08:00
},
{
2023-12-08 15:26:16 +08:00
id: 2,
name: 'Part2'
2023-12-05 18:51:43 +08:00
}
],
}
},
2023-12-05 21:18:18 +08:00
created() {
2023-12-05 18:51:43 +08:00
this.getList()
},
2023-12-08 15:26:16 +08:00
methods: {
2023-12-05 18:51:43 +08:00
getList() {
2023-12-08 15:26:16 +08:00
this.$u.post('https://api.admin-v2.langsi.online/admin-api/speaking/topic/home/list', this.postdata).then(res => {
2023-12-05 18:51:43 +08:00
let keyArr = Object.keys(res.data)
let valueArr = Object.values(res.data)
this.slander = keyArr.map((item, index) => {
return {
label: item,
list: valueArr[index]
}
})
})
},
//下拉显示下拉框
2023-12-08 15:26:16 +08:00
arrow_xl() {
this.arrow = !this.arrow
2023-12-05 18:51:43 +08:00
},
2023-12-08 15:26:16 +08:00
arrow_xl2() {
this.arrowDown = !this.arrowDown
2023-12-05 18:51:43 +08:00
},
2023-12-08 15:26:16 +08:00
arrow_options(id) {
this.options.forEach(item => {
if (item.id == id) {
this.selectedOption = item.name
} else if (id == 2) {
this.postdata.part = "part2"
this.part2=true
this.grizzly = false
this.getList()
} else {
this.postdata.part = "part1"
this.part2= false
this.grizzly = true
this.getList()
}
})
2023-12-07 23:10:26 +08:00
}
2023-12-05 18:51:43 +08:00
}
}
</script>
<style lang="scss" scoped>
.view_left {
display: flex;
justify-content: left;
margin-top: 20rpx;
}
2023-12-08 15:26:16 +08:00
.view_inuygs {
2023-12-05 21:18:18 +08:00
display: flex;
justify-content: space-between;
align-items: center;
}
2023-12-08 15:26:16 +08:00
2023-12-05 18:51:43 +08:00
.view_left_pd {
position: relative;
padding: 12rpx 32rpx;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
margin-right: 15rpx;
font-size: 24rpx;
2023-12-05 21:18:18 +08:00
color: #072F5A;
2023-12-05 18:51:43 +08:00
}
2023-12-08 15:26:16 +08:00
2023-12-05 18:51:43 +08:00
.unite {
font-size: 28rpx;
font-family: 'PingFang';
font-weight: 800;
color: #2E4975;
2023-12-05 21:18:18 +08:00
margin-right: 20rpx;
2023-12-05 18:51:43 +08:00
}
2023-12-08 15:26:16 +08:00
2023-12-05 18:51:43 +08:00
.pull_Down {
position: absolute;
bottom: -130rpx;
left: 50%;
margin-left: -79rpx;
2023-12-08 15:26:16 +08:00
box-shadow: 0rpx 4rpx 10rpx 0rpx rgba(0, 0, 0, 0.25);
2023-12-05 18:51:43 +08:00
border-radius: 20rpx 20rpx 20rpx 20rpx;
background: #FFFFFF;
border-bottom: 2rpx solid #F2F2F2;
2023-12-08 15:26:16 +08:00
2023-12-05 18:51:43 +08:00
view {
padding: 15rpx 50rpx;
border-bottom: 2rpx solid #F2F2F2;
}
}
2023-12-08 15:26:16 +08:00
2023-12-05 18:51:43 +08:00
.pull_Down view:last-child {
border: none;
}
2023-12-08 15:26:16 +08:00
.header_part {
2023-12-05 21:18:18 +08:00
display: flex;
align-items: center;
margin: 26rpx 0rpx;
}
2023-12-08 15:26:16 +08:00
.slander_an {
2023-12-05 21:18:18 +08:00
padding: 6rpx 18rpx;
background: #fff;
border-radius: 12rpx 12rpx 12rpx 12rpx;
margin-left: 12rpx;
color: #65748C;
}
2023-12-08 15:26:16 +08:00
.slander_for {
background-color: #fff;
border-radius: 20rpx 20rpx 20rpx 20rpx;
2023-12-05 18:51:43 +08:00
}
2023-12-08 15:26:16 +08:00
.slander_of {
2023-12-07 23:10:26 +08:00
display: flex;
align-items: center;
justify-content: space-between;
2023-12-08 15:26:16 +08:00
padding: 24rpx 0;
margin: 0 20rpx;
border-bottom: 2rpx solid #F2F2F2;
}
.textual {
width: 290rpx;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
-webkit-line-clamp: 2;
}
.bottom_one {
display: flex;
view {
padding: 6rpx 18rpx;
background: #F4F4F4;
border-radius: 12rpx 12rpx 12rpx 12rpx;
font-size: 20rpx;
font-weight: 500;
color: rgba(101,116,140,0.8);
margin-left: 15rpx;
}
.blue {
background: rgba(45, 124, 230, 0.1);
color: #2D7CE6;
2023-12-07 23:10:26 +08:00
}
}
2023-12-08 15:26:16 +08:00
.pull_down{
2023-12-07 23:10:26 +08:00
display: flex;
2023-12-08 15:26:16 +08:00
justify-content: space-between;
width: 100rpx;
font-size: 24rpx;
2023-12-07 23:10:26 +08:00
}
2023-12-05 18:51:43 +08:00
</style>