Browse Source

修改问题

小欧追 1 năm trước cách đây
mục cha
commit
3a1195e8f0
4 tập tin đã thay đổi với 99 bổ sung98 xóa
  1. 2 0
      https/http.js
  2. 48 47
      https/request.js
  3. 0 1
      main.js
  4. 49 50
      pages/login/agreement.vue

+ 2 - 0
https/http.js

@@ -43,5 +43,7 @@ export default {
 	quesInfo(data){ return http('/api/quesInfo' , "GET" , data) },
 	// 提交问卷
 	noteAdd(data){ return http('/api/noteAdd' , "POST" , data) },
+	// 获取隐私政策
+	getPrivacy(data){ return http('/api/getPrivacy' , "POST" , data) },
 	
 }

+ 48 - 47
https/request.js

@@ -1,48 +1,49 @@
-//请求头 
-import { baseUrl } from '@/https/url.js'
-
-export default(url, method, params) => { // 传参: 接口url,  method类型, params参数
-	const header = {
-		'accept':'application/json, text/plain, */*',
-		'Content-type': 'application/json',
-		'Authorization':uni.getStorageSync('token')?uni.getStorageSync('token'):"",
-	}
-    return new Promise((resolve, reject) => {
-        uni.request({
-            method: method,
-            url: baseUrl + url,
-            data: method=='GET'?params:JSON.stringify(params),
-            header: header
-        })
-        .then((response) => {
-            // 请求成功后的处理
-			if(response[1].data.code==201){
-				uni.removeStorageSync('token');
-				uni.showToast({
-					title: '登录失效,请刷新界面.',
-					duration: 2000,
-					icon: 'none'
-				});
-			}else if(response[1].data.code==0){
-				if(response[1].data.message == 'token不能为空'){
-					uni.removeStorageSync('token');
-					uni.showToast({
-						title: '登录失效,请刷新界面.',
-						duration: 2000,
-						icon: 'none'
-					});
-					uni.reLaunch({
-						url: '/pages/login/login'
-					});
-				}
-			}
-            resolve(response[1]) 
-			// if(response[1].)
-        }).catch((reject) => {
-            // 请求失败后的处理
-            console.log('请求失败')
-			reject(reject)
-        })
-    })
-    
+//请求头 
+import { baseUrl } from '@/https/url.js'
+
+export default (url, method, params) => { // 传参: 接口url,  method类型, params参数
+	const header = {
+		'accept': 'application/json, text/plain, */*',
+		'Content-type': 'application/json',
+		'Authorization': uni.getStorageSync('token') ? uni.getStorageSync('token') : "",
+	}
+	return new Promise((resolve, reject) => {
+		uni.request({
+				method: method,
+				url: baseUrl + url,
+				data: method == 'GET' ? params : JSON.stringify(params),
+				header: header
+			})
+			.then((response) => {
+				// console.log(response);
+				// 请求成功后的处理
+				if (response[1].data.code == 201) {
+					uni.removeStorageSync('token');
+					uni.showToast({
+						title: '登录失效,请刷新界面.',
+						duration: 2000,
+						icon: 'none'
+					});
+				} else if (response[1].data.code == 0) {
+					if (response[1].data.message == 'token不能为空') {
+						uni.removeStorageSync('token');
+						uni.showToast({
+							title: '登录失效,请刷新界面.',
+							duration: 2000,
+							icon: 'none'
+						});
+						uni.reLaunch({
+							url: '/pages/login/login'
+						});
+					}
+				}
+				resolve(response[1])
+				// if(response[1].)
+			}).catch((reject) => {
+				// 请求失败后的处理
+				console.log('请求失败')
+				reject(reject)
+			})
+	})
+
 }

+ 0 - 1
main.js

@@ -44,7 +44,6 @@ Vue.mixin({
 					uni.reLaunch({
 						url: '/pages/login/login'
 					});
-					
 				}
 			}
 		},

+ 49 - 50
pages/login/agreement.vue

@@ -1,50 +1,49 @@
-<template>
-	<view class="agreement">
-		<view class="con" v-html="data">
-			111
-		</view>
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				data:''
-			}
-		},
-		onLoad(option) {
-			this.configInfo()
-		},
-		methods: {
-			configInfo(){
-				this.$http.configInfo()
-				.then(res=>{
-					if(res.data.code==200){
-						console.log(res)
-						this.data=res.data.result.ysxy
-						// this.data=res.data.result
-						// console.log(this.data.result.ysxy)
-					}
-				})
-			},
-
-		}
-	}
-</script>
-
-<style lang="scss">
-	page{
-		height: 100%;
-	}
-	.agreement{
-		height: 100%;
-		.con{
-			width:680rpx;
-			margin: 24rpx auto;
-			padding:32rpx;
-			background-color: #fff;
-			border-radius: 24rpx;
-		}
-	}
-</style>
+<template>
+	<view class="agreement">
+		<view class="con" v-html="data"></view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				data: ''
+			}
+		},
+		onLoad(option) {
+			this.configInfo()
+		},
+		methods: {
+			configInfo() {
+				this.$http.getPrivacy().then(res => {
+					if (res.data.code == 200) {
+						console.log(res)
+						this.data = res.data.result.privacy
+						// this.data=res.data.result
+						// console.log(this.data.result.ysxy)
+					}
+				})
+			},
+
+		}
+	}
+</script>
+
+<style lang="scss">
+	page {
+		height: 100%;
+	}
+
+	.agreement {
+		height: 100%;
+
+		.con {
+			width: 680rpx;
+			margin: 24rpx auto;
+			padding: 32rpx;
+			background-color: #fff;
+			border-radius: 24rpx;
+		}
+	}
+</style>