zhaogongxue 1 yıl önce
ebeveyn
işleme
374a185259
8 değiştirilmiş dosya ile 214 ekleme ve 134 silme
  1. 19 25
      common/http.interceptor.js
  2. 4 0
      common/url.js
  3. 1 1
      main.js
  4. 89 71
      manifest.json
  5. 55 24
      pages/index/index.vue
  6. 24 10
      pages/login/login.vue
  7. 16 2
      pages/login/register.vue
  8. 6 1
      pages/mine/mine.vue

+ 19 - 25
common/http.interceptor.js

@@ -1,13 +1,17 @@
+import url from "./url.js"
 const install = (Vue, vm) => {
 	Vue.prototype.$u.http.setConfig({
-		baseUrl: Vue.prototype.$url, // 请求的本域名
+		baseUrl: url, // 请求的本域名
 		loadingText: '加载中...',
 		loadingTime: 800,
 		showLoading: true, // 是否显示请求中的loading
 		loadingMask: true, // 展示loading的时候,是否给一个透明的蒙层,防止触摸穿透
 		originalData: true, // 是否在拦截器中返回服务端的原始数据
 		// 配置请求头信息
-		header: {},
+		header: {
+			'content-type': 'application/json;charset=UTF-8;multipart/form-data',
+			'version': 'v1'
+		},
 	});
 	// 请求拦截部分,如配置,每次请求前都会执行
 	Vue.prototype.$u.http.interceptor.request = (config) => {
@@ -44,33 +48,23 @@ const install = (Vue, vm) => {
 		} else {
 			// 假设201为token失效,这里跳转登录
 			if (res.statusCode == 500) {
-				var title = ''
-				var title1 = ''
-   
+				// var html = res.data
+				// var start = html.indexOf('<h1>')
+				// var end = html.indexOf('</h1>')
+				// var title = html.substring(start + 4, end)
 
-				var html = res.data
-				var start = html.indexOf('<h1>')
-				var end = html.indexOf('</h1>')
-				title = html.substring(start + 4, end)
+				// var start1 = html.indexOf('</abbr> in <a class="toggle" title=')
+				// var end1 = html.indexOf('</a></h2>')
+				// var title1 = html.substring(start1 + 35, end1)
 
-				var start1 = html.indexOf('</abbr> in <a class="toggle" title=')
-				var end1 = html.indexOf('</a></h2>')
-				title1 = html.substring(start1 + 35, end1)
-
-				if (title1 && title) {
-					uni.showModal({
-						title: `网络错误:${res.statusCode}`,
-						content: `位置:${title1}\r\n 标题:${title}`
-					})
-				} else {
-					uni.showModal({
-						title: `网络错误:${res.statusCode}`,
-					})
-				}
-			} else {
 				// uni.showModal({
-				// 	content: `未知错误:${res.statusCode}`
+				// 	title: `网络错误:${res.statusCode}`,
+				// 	content: `位置:${title1}\r\n 标题:${title}`
 				// })
+			} else {
+				uni.showModal({
+					content: `未知错误:${res.statusCode}`
+				})
 			}
 			return false;
 		}

+ 4 - 0
common/url.js

@@ -0,0 +1,4 @@
+var url = '/api'
+// var url = 'https://tyjc.hdlkeji.com/'
+export default url
+

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import uView from "uview-ui";
 // import WebIM from './newSDK/Easemob-chat.js'
 // import {conn} from './utils/WebIM';
 // import WebIM from 'easemob-websdk'
-Vue.prototype.$url = 'https://hire.hdlkeji.com'
+Vue.prototype.$url = 'http://jiaocai.com/'
 
 Vue.prototype.$openimage = function(urls, index) {
 	uni.previewImage({

+ 89 - 71
manifest.json

@@ -1,72 +1,90 @@
 {
-    "name" : "tiyu",
-    "appid" : "__UNI__7140AF8",
-    "description" : "",
-    "versionName" : "1.0.0",
-    "versionCode" : "100",
-    "transformPx" : false,
-    /* 5+App特有相关 */
-    "app-plus" : {
-        "usingComponents" : true,
-        "nvueStyleCompiler" : "uni-app",
-        "compilerVersion" : 3,
-        "splashscreen" : {
-            "alwaysShowBeforeRender" : true,
-            "waiting" : true,
-            "autoclose" : true,
-            "delay" : 0
-        },
-        /* 模块配置 */
-        "modules" : {},
-        /* 应用发布信息 */
-        "distribute" : {
-            /* android打包配置 */
-            "android" : {
-                "permissions" : [
-                    "<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
-                    "<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
-                    "<uses-permission android:name=\"android.permission.VIBRATE\"/>",
-                    "<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
-                    "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
-                    "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
-                    "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
-                    "<uses-permission android:name=\"android.permission.CAMERA\"/>",
-                    "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
-                    "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
-                    "<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
-                    "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
-                    "<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
-                    "<uses-feature android:name=\"android.hardware.camera\"/>",
-                    "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
-                ]
-            },
-            /* ios打包配置 */
-            "ios" : {},
-            /* SDK配置 */
-            "sdkConfigs" : {}
-        }
-    },
-    /* 快应用特有相关 */
-    "quickapp" : {},
-    /* 小程序特有相关 */
-    "mp-weixin" : {
-        "appid" : "",
-        "setting" : {
-            "urlCheck" : false
-        },
-        "usingComponents" : true
-    },
-    "mp-alipay" : {
-        "usingComponents" : true
-    },
-    "mp-baidu" : {
-        "usingComponents" : true
-    },
-    "mp-toutiao" : {
-        "usingComponents" : true
-    },
-    "uniStatistics" : {
-        "enable" : false
-    },
-    "vueVersion" : "2"
-}
+	"name": "tiyu",
+	"appid": "__UNI__7140AF8",
+	"description": "",
+	"versionName": "1.0.0",
+	"versionCode": "100",
+	"transformPx": false,
+	/* 5+App特有相关 */
+	"app-plus": {
+		"usingComponents": true,
+		"nvueStyleCompiler": "uni-app",
+		"compilerVersion": 3,
+		"splashscreen": {
+			"alwaysShowBeforeRender": true,
+			"waiting": true,
+			"autoclose": true,
+			"delay": 0
+		},
+		/* 模块配置 */
+		"modules": {},
+		/* 应用发布信息 */
+		"distribute": {
+			/* android打包配置 */
+			"android": {
+				"permissions": [
+					"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
+					"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
+					"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
+					"<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
+					"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
+					"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
+					"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
+					"<uses-permission android:name=\"android.permission.CAMERA\"/>",
+					"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
+					"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
+					"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
+					"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
+					"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
+					"<uses-feature android:name=\"android.hardware.camera\"/>",
+					"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
+				]
+			},
+			/* ios打包配置 */
+			"ios": {},
+			/* SDK配置 */
+			"sdkConfigs": {}
+		}
+	},
+	/* 快应用特有相关 */
+	"quickapp": {},
+	/* 小程序特有相关 */
+	"mp-weixin": {
+		"appid": "",
+		"setting": {
+			"urlCheck": false
+		},
+		"usingComponents": true
+	},
+	"mp-alipay": {
+		"usingComponents": true
+	},
+	"mp-baidu": {
+		"usingComponents": true
+	},
+	"mp-toutiao": {
+		"usingComponents": true
+	},
+	"h5": {
+		"router": {
+			"mode": "history"
+		},
+		"devServer": {
+			"https": false,
+			"proxy": {
+				"/api": {
+					"target": "https://tyjc.hdlkeji.com/",
+					"changeOrigin": true,
+					"ws": true,
+					"pathRewrite": {
+						"^/api": ""
+					}
+				}
+			}
+		}
+	},
+	"uniStatistics": {
+		"enable": false
+	},
+	"vueVersion": "2"
+}

+ 55 - 24
pages/index/index.vue

@@ -1,7 +1,9 @@
 <template>
 	<view class="page">
+		<image class="back1" src="../../static/images/bj.png" mode=""></image>
 		<view class="index-navbar">
 			<view class="" style="position: relative;">
+				<image class="back1" style="height: 200rpx;" src="../../static/images/bj.png" mode=""></image>
 				<u-navbar title-width='300' title='' :is-back="false" :border-bottom="false"
 					:background="{background:'rgba(0,0,0,0)'}" :isFixed="true">
 					<view class="u-flex u-row-between" style="padding: 0  28rpx ;width: 100vw;">
@@ -22,7 +24,6 @@
 					</view>
 				</u-navbar>
 				<!-- <view class="back"></view> -->
-				<image class="back1" src="../../static/images/bj.png" mode=""></image>
 			</view>
 			<view class="u-flex u-row-between pad" style="margin-top:36rpx ;">
 				<view class="" v-for="(item,index) in list" :key="index" @click="onchange(index)">
@@ -31,9 +32,8 @@
 					</view>
 				</view>
 			</view>
-
 		</view>
-		<view class="" style="height: 160rpx;"></view>
+		<view class="" style="height: 200rpx;"></view>
 		<view v-if="curret==0" class="back pad">
 			<view class="wrap" v-if="curret==0">
 				<u-swiper :list="list"></u-swiper>
@@ -55,7 +55,7 @@
 						<view class="bottom1">
 							<text class="ding">定价</text>
 							<text class="money">¥38.5</text>
-						</view>                                                               
+						</view>
 					</view>
 				</view>
 			</view>
@@ -75,11 +75,11 @@
 			</view>
 			<view class="" style="height: 30rpx;"></view>
 		</view>
-		<view v-if="curret==1" style="position: relative;z-index: 200;margin-top: 24rpx;" class="">
+		<view v-if="curret==1" style="position: relative;z-index: 1;margin-top: 24rpx;" class="">
 			<ty-paper></ty-paper>
 		</view>
-		<view v-if="curret==3" style="position: relative;z-index: 200;margin-top: 24rpx;" class="">
-			<ty-video></ty-video>    
+		<view v-if="curret==3" style="position: relative;z-index: 1;margin-top: 24rpx;" class="">
+			<ty-video></ty-video>
 		</view>
 	</view>
 </template>
@@ -91,13 +91,41 @@
 				list: [
 					'首页', '纸质书', '电子书', '名师教学视频'
 				],
-				curret: 0
+				curret: 0,
+				page: 1,
+				limit: 10,
+				page1: 1,
+				limit1: 10,
+				awardlist: []
 			}
 		},
 		onLoad() {
-
+			this.getnewlist()
+			this.awardslist()
 		},
 		methods: {
+			// 新书推荐
+			getnewlist() {
+				this.$u.post('api/books/getBooksList', {
+					is_new_recommend: 0,
+					page: this.page,
+					limit: this.limit
+				}).then(res => {
+					console.log('new', res);
+
+				})
+			},
+			//获奖推荐
+			awardslist() {
+				this.$u.post('api/books/getBooksList', {
+					is_awards: 0,
+					page: this.page1,
+					limit: this.limit1
+				}).then(res => {
+					console.log('award', res);
+					this.awardlist = res.data
+				})
+			},
 			onchange(index) {
 				this.curret = index
 			},
@@ -106,17 +134,17 @@
 					url: "/pages/index/index-search"
 				})
 			},
-			toinfo(){
+			toinfo() {
 				uni.navigateTo({
-					url:'/pages/index/bookinfo'
+					url: '/pages/index/bookinfo'
 				})
 			},
-			contribute(){
+			contribute() {
 				uni.navigateTo({
-					url:'/pages/index/contribute'
+					url: '/pages/index/contribute'
 				})
 			}
-		}
+		},
 	}
 </script>
 
@@ -234,7 +262,7 @@
 	.back {
 		position: relative;
 		min-height: 80vh;
-		z-index: 200;
+		z-index: 99;
 	}
 
 	.wrap {
@@ -280,6 +308,8 @@
 		// padding: 0 28rpx;
 		min-height: 100vh;
 		background: rgba(243, 243, 243, 1);
+		position: relative;
+		z-index: 1;
 	}
 
 	.button {
@@ -296,21 +326,22 @@
 		color: #FFFFFF;
 	}
 
+	.back1 {
+		position: fixed;
+		top: 0;
+		left: 0;
+		z-index: -1;
+		width: 100vw;
+		height: 432rpx;
+	}
+
 	.index-navbar {
 		position: fixed;
 		top: 0;
 		left: 0;
 		width: 100vw;
-		z-index: 100;
+		z-index: 999;
 
 		// overflow: hidden;
-		.back1 {
-			position: absolute;
-			top: 0;
-			left: 0;
-			z-index: -1;
-			width: 100vw;
-			height: 432rpx;
-		}
 	}
 </style>

+ 24 - 10
pages/login/login.vue

@@ -44,7 +44,7 @@ color: #222222;opacity: 0.4;' placeholder='请输入密码' v-model="password" t
 				</view>
 			</view>
 			<view class="zhu u-row-between u-flex" v-if="tabs==1">
-				<view class=""  @click='tozhuce'>
+				<view class="" @click='tozhuce'>
 					<text>没有账号,</text>
 					<text style="color: #06A971;">立即注册</text>
 				</view>
@@ -70,31 +70,45 @@ color: #222222;opacity: 0.4;' placeholder='请输入密码' v-model="password" t
 				tabs: 0,
 				phone: '',
 				checked: false,
-				code:'',
-				password:''
+				code: '',
+				password: ''
 			};
 		},
 		methods: {
-			tozhuce(){
+			tozhuce() {
 				uni.navigateTo({
-					url:'/pages/login/register'
+					url: '/pages/login/register'
 				})
 			},
 			change(index) {
 				this.tabs = index
 			},
-			forget(){
+			forget() {
 				uni.navigateTo({
-					url:'/pages/login/forgetPassword'
+					url: '/pages/login/forgetPassword'
 				})
 			},
 			toindex() {
-				if(!this.checked){
+				if (!this.checked) {
 					this.$u.toast('请先勾选协议')
 					return
 				}
-				uni.switchTab({
-					url: '/pages/index/index'
+				this.$u.post('api/user/login', {
+					account: this.phone,
+					password: this.password
+				}).then(res => {
+					console.log(res);
+					if (res.code == 1) {
+						uni.setStorageSync('token', res.data.userinfo.token)
+						this.$u.toast(res.msg)
+						setTimeout(() => {
+							uni.switchTab({
+								url: '/pages/index/index'
+							})
+						}, 800)
+					} else {
+						this.$u.toast(res.msg)
+					}
 				})
 			}
 

+ 16 - 2
pages/login/register.vue

@@ -88,8 +88,22 @@ color: #222222;opacity: 0.4;' placeholder='请输入验证码' v-model="code" ty
 					this.$u.toast('请先勾选协议')
 					return
 				}
-				uni.navigateTo({
-					url: '/pages/login/login'
+				this.$u.post('api/user/register', {
+					username: this.name,
+					password: this.passwoed,
+					mobile: this.phone,
+					code: this.code
+				}).then(res => {
+					if (res.code == 1) {
+						this.$u.toast(res.msg)
+						setTimeout(() => {
+							uni.navigateTo({
+								url: '/pages/login/login'
+							})
+						}, 800)
+					} else {
+						this.$u.toast(res.msg)
+					}
 				})
 			}
 

+ 6 - 1
pages/mine/mine.vue

@@ -9,7 +9,7 @@
 			</view>
 		</view>
 		<view class="pad">
-			<view class="unlogin">
+			<view class="unlogin" @click="tologin">
 				登录/注册
 			</view>
 			<view class="order u-flex u-row-between" @click="toorder">
@@ -61,6 +61,11 @@
 				uni.navigateTo({
 					url:'/pages/mine/setting'
 				})
+			},
+			tologin(){
+				uni.reLaunch({
+					url:"/pages/login/login"
+				})
 			}
 		}
 	}