stu_ft_xq.vue 1.3 KB
<template>
	<view class="wrap_box">

		<ftadd :options="options"></ftadd>
	</view>
</template>

<script>
	import Vue from 'vue'
	import {
		mapState,
		mapMutations
	} from 'vuex'
	var that
	export default {
		name:"ft_add",
		data() {
			return {
				sx_time:'',
				tch_js:0,
				js_other:0,
				result_ask:0,
				content:'',
				content1:'',
				content2:'',
				options:''
			};
		},
		computed: {
			...mapState(['hasLogin', 'forcedLogin', 'userName', 'userinfo', 'nowtime']),
			
		},
		onLoad(e) {
			that=this
			that.options=e||{}
			console.log(e)
			// that.getdata()
		},
		methods:{
			
		}
	}
</script>

<style lang="less" scoped>
	.wrap_box {
		width: 100%;
		// padding: 30rpx;
		min-height: 100vh;
		// #ifdef H5
		min-height: calc(100vh - 44px);
		// #endif
		background: #F8F8F8;
		position: relative;
		
		padding-bottom: 10rpx;
	}
	
	.tel_index_bg {
		position: absolute;
		top: 0;
		z-index: 1;
		width: 100%;
		min-height: 220rpx;
		background: linear-gradient(0deg, #f8f8f8 0%, #5D9DFD 60%, #428EFE 70%, #2D81FF 100%);
	}
	.bz_box {
		width: 100%;
		position: relative;
		z-index: 2;
		padding:30rpx;
	
		.stu_num {
			width: 100%;
			height: 80rpx;
			display: flex;
			align-items: center;
			font-size: 28rpx;
			color: #fff;
			justify-content: space-between;
			.icon{
				font-size: 24rpx;
				margin-left: 10rpx;
			}
		}
	}
	
</style>