Commit 2ab8f7e6 authored by zhengke's avatar zhengke

no message

parent f62c19aa
<template> <template>
<view class="examList-box"> <view class="examList-box">
<view class="examList-import"> <view class="examList-import" @click="ImportInformation">
<van-icon name="plus" /> <van-icon name="plus" />
<text>导入考试信息</text> <text>导入考试信息</text>
</view> </view>
...@@ -33,6 +33,15 @@ ...@@ -33,6 +33,15 @@
</view> </view>
<!-- <view class="noData">暂无数据</view> --> <!-- <view class="noData">暂无数据</view> -->
</view> </view>
<van-popup :show="show" :round="true">
<view class="examList-popup-box">
<van-icon class="examList-popup-closure" name="cross" />
<view class="examList-popup-title">导入考试信息</view>
<view class="examList-popup-content">
<input class="examList-popup-name" placeholder="请输入用户名" />
</view>
</view>
</van-popup>
</view> </view>
</template> </template>
<script> <script>
...@@ -58,12 +67,16 @@ ...@@ -58,12 +67,16 @@
}, },
showPhone: false, showPhone: false,
showLogin: true, //多次点击 showLogin: true, //多次点击
show:false,
}); });
let methods = { let methods = {
JobDetails(){ JobDetails(){
uni.reLaunch({ uni.reLaunch({
url: '/pages/index/workSituation' url: '/pages/index/workSituation'
}); });
},
ImportInformation(){
} }
} }
return { return {
...@@ -74,6 +87,35 @@ ...@@ -74,6 +87,35 @@
}; };
</script> </script>
<style scoped> <style scoped>
/deep/.van-cell {
height: 88rpx;
border-radius: 44rpx;
margin-bottom: 45rpx;
}
.examList-popup-content van-cell-group van-field{
/* background-color: #f6f6f6; */
}
.examList-popup-title{
width: 100%;
text-align: center;
font-size: 30rpx;
font-weight: 500;
margin-bottom: 73rpx;
letter-spacing: 1rpx;
}
.examList-popup-closure{
position: absolute;
right: 31rpx;
top: 31rpx;
color: #282828;
font-size: 38rpx;
}
.examList-popup-box{
position: relative;
width: 548rpx;
padding: 48rpx 55rpx 98rpx 55rpx;
background: #f6f6f6;
}
.homework-score-num view:last-child{ .homework-score-num view:last-child{
font-size: 23rpx; font-size: 23rpx;
margin-top: 25rpx; margin-top: 25rpx;
......
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
{name:'作业情况',num:5}, {name:'作业情况',num:5},
{name:'考试信息',num:18}, {name:'考试信息',num:18},
], ],
tabNme:'作业情况' tabNme:'考试信息'
}); });
let methods = { let methods = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment