index.vue 1.44 KB
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
<template>
	<view>
		<uni-popup ref="lending" type="center">
			<view class="lending_content">
				 <view class="lending_info">
					<rich-text :nodes="leviteInfo"></rich-text>
				 </view>
				 <view class="lending_btns">
					 <view @click="$refs.lending.close()">关闭</view>
				 </view>
			</view>
		</uni-popup>
	</view>
</template>

<script>
	export default {
		name:'userAgreement',
		data() {
			return {
				leviteInfo:''
			}
		},
		created() {
			this.getLeviteData()
		},
		onshow(){
			this.getLeviteData()
		},
		methods: {
			getLeviteData () {
				let that = this
				that.$request.get('/app-api/system/need-know/getByKey',{key:'5'}).then(res => {
					if(res.code == 0 && res.data){
						if(that.$lang.locale=='zh'){
							that.leviteInfo = res.data.contentZh
						}else{
							that.leviteInfo = res.data.contentEn
						}
					}
				})
			},
			open() {
				this.$refs.lending.open()
			}
		}
	}
</script>

<style scoped>
	
.lending_content{
	width: 520upx;
	padding: 40upx;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 12upx;
}
.lending_info{
	font-size: 26upx;
	line-height: 46upx;
	color: #666;
	width: 100%;
	height: 720upx;
	overflow: auto;
}
.lending_btns{
	width: 100%;
	display: flex;
	margin-top: 20upx;
	align-items: center;
	font-size: 28upx;
	justify-content: space-around;
}
.lending_btns view{
	color: #fff;
	padding: 12upx 0;
	text-align: center;
	background-color: #3699FF;
	border-radius: 30upx;
	width: 200upx;
}

</style>