liukang il y a 1 an
Parent
commit
d5e365453b
5 fichiers modifiés avec 85 ajouts et 101 suppressions
  1. 9 3
      pageC/about.vue
  2. 4 31
      pageC/changjian-detail.vue
  3. 12 9
      pageC/changjian-list.vue
  4. 21 29
      pageC/zhiwei-detail.vue
  5. 39 29
      pageC/zhiwei-list.vue

+ 9 - 3
pageC/about.vue

@@ -3,7 +3,7 @@
 		<view class="top vflex acenter">
 			<image src="../static/logo.png" mode="aspectFill"></image>
 			<view class="name">忆象</view>
-			<view class="verison">1.0.0</view>
+			<view class="verison">{{version}}</view>
 		</view>
 		<view class="center">
 			<u-cell-group :border="false">
@@ -29,11 +29,17 @@
 	export default {
 		data() {
 			return {
-				
+				version: '',
 			}
 		},
 		onLoad() {
-			
+			const systemInfo = uni.getSystemInfoSync();
+			// #ifdef H5
+			this.version = systemInfo.appVersion;
+			// #endif
+			// #ifndef H5
+			this.version = systemInfo.appWgtVersion;
+			// #endif
 		},
 		onShow() {
 			

+ 4 - 31
pageC/changjian-detail.vue

@@ -1,11 +1,12 @@
 <template>
 	<view class="content">
-		<view class="title">{{detail.name}}</view>
-		<u-parse :content="detail.content"></u-parse>
+		<view class="title">{{detail.title}}</view>
+		<u-parse :content="detail.answer"></u-parse>
 	</view>
 </template>
 
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 		data() {
 			return {
@@ -14,37 +15,9 @@
 			}
 		},
 		onLoad(option) {
-			this.id = option.id
-			this.getdata()
+			this.detail = JSON.parse(decodeURIComponent(option.data))
 		},
 		methods: {
-			getdata() {
-				this.detail = {
-					id: '',
-					name: '常见问题1',
-					content: `绿屏/花屏问题排查:
-							1.检查显卡驱动是否过1日,更新品卡驱动;
-							2.检查是否浏览器问题,更换浏览器尝试;
-							3.检查是否解码器问题,如使用非系统自带解码器,尝试换回系统解码器。
-							4. 如果以上方法还是解决不了问题,请联系客服。
-							白屏问题排查:
-							1.检查是否flash播放器问题,尝试打开 http://static.hdslb.com/play.swf,能正常显示播
-							放器后刷新原播放页面。
-							(Chrome浏览器若出现直接下载的情況请先访问
-							chrome://settings/content/flash 去掉"先询问“的选项后再次尝试)。如果提示安全内容
-							或木马请设置白名单后再次尝试
-							2.更换播放器为HTML5播放器
-							方式一:点击播放器右上角三点选择HTML5播放器
-							方式二:进入https://www.bilibili.com/blackboard/html5plaverhelp.html点击试用,勾
-							选“开启HTML播放器试用〞
-							3.检查是否网络劫持,将原网址的http修改为https前缀尝试。
-							4.如果以上方法还是解决不了问题,请联系客服。
-							罢屏问题排杳:
-							1.检查是否网络问题。检测工具:
-							http://www.bilibili.com/blackboard/diagnostics.html
-							2.如果以上方法还是解决不了问题,请联系客服。`
-				}
-			}
 		}
 	}
 </script>

+ 12 - 9
pageC/changjian-list.vue

@@ -1,7 +1,7 @@
 <template>
 	<view class="content">
 		<u-cell-group>
-			<u-cell size="large" :title="item.name" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
+			<u-cell size="large" :title="item.title" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
 				<view slot="value" class="img">
 					<image src="./static/right.png" mode="aspectFill"></image>
 				</view>
@@ -11,6 +11,7 @@
 </template>
 
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 		data() {
 			return{
@@ -23,17 +24,19 @@
 		methods: {
 			toinfo(item) {
 				uni.navigateTo({
-					url: '/pageC/changjian-detail?id=' + item.id
+					url: '/pageC/changjian-detail?data=' + encodeURIComponent(JSON.stringify(item))
 				})
 			},
 			getlist() {
-				for(var i=0;i<5;i++) {
-					var data = {
-						id: '0001' + i,
-						name: '常见问题',
-					}
-					this.list.push(data)
-				}
+				var _this = this
+				$api.req({
+					url: 'question',
+					method: 'GET',
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.list = res.data
+					} 
+				})
 			},
 		}
 	}

+ 21 - 29
pageC/zhiwei-detail.vue

@@ -10,34 +10,34 @@
 		</view>
 		<view class="detail">
 			<view class="name hflex acenter jbetween">
-				<text class="text_hide">{{detail.name}}</text>
-				<text>{{detail.salary}}</text>
+				<text class="text_hide">{{detail.title}}</text>
+				<text>{{detail.salary_min}}-{{detail.salary_max}}K·{{detail.salary_month}}薪</text>
 			</view>
 			<view class="city hflex acenter">
 				<text v-if="detail.city">{{detail.city}}  | </text>
-				<text v-if="detail.exper">{{detail.exper}}  | </text>
-				<text v-if="detail.edu">{{detail.edu}}</text>
+				<text v-if="detail.experience_min">{{detail.experience_min}}-{{detail.experience_max}}年  | </text>
+				<text v-if="detail.education">{{detail.education}}</text>
 			</view>
 			<view class="user hflex acenter">
-				<image :src="detail.hr.avatar" mode="aspectFill"></image>
+				<image :src="detail.avatar" mode="aspectFill"></image>
 				<view class="vflex user-right jbetween">
-					<text>{{detail.hr.name}}</text>
-					<text>{{detail.hr.mobile}}</text>
+					<text>{{detail.name}}</text>
+					<text>{{detail.mobile}}</text>
 				</view>
 			</view>
 			<view class="box">
 				<view class="title">职位详情</view>
-				<u-parse :content="detail.content"></u-parse>
+				<u-parse :content="detail.detail"></u-parse>
 			</view>
 			<view class="box">
 				<view class="title">职位福利</view>
 				<view class="hflex acenter fwrap box-list">
-					<text v-for="(item,index) in detail.fuli" :key="index">{{item}}</text>
+					<text v-for="(item,index) in detail.tags" :key="index">{{item.name}}</text>
 				</view>
 			</view>
 			<view class="box">
 				<view class="title">公司信息</view>
-				<view class="text">{{detail.address}}</view>
+				<u-parse :content="detail.company_info"></u-parse>
 			</view>
 		</view>
 		<view class="bottom">
@@ -47,6 +47,7 @@
 </template>
 
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 		data() {
 			return{
@@ -65,25 +66,16 @@
 				})
 			},
 			getdata() {
-				this.detail = {
-					name: 'C语言开发工程师',
-					salary: '30-50K·15薪',
-					city: '北京市·海淀区',
-					edu: '本科',
-					exper: '3-5年',
-					hr: {
-						avatar: 'https://cdn.uviewui.com/uview/album/1.jpg',
-						name: '刘女士',
-						mobile: '15962976583'
-					},
-					content: `1. 负责公司产品在PC端、移动端页面/应用的整体设计
-								2. 基于用户体验、人机交互、图形化设计、界面设计等前沿理论实现产品风格设计;
-								3. 充分理解产品策划思路及理念,配合产品经理和研发人员实现产品各种界面的视觉设计;
-								4. 建立和完善产品界面视觉设计规范;
-								5.根据交互设计及产品规划,完成产(iPhoneAndroid、Web、App应用及网站)相关的用户界面视觉设计`,
-					fuli: ['五险一金','周末双休','年终奖金','交通补助','住房补贴','公司提供专车'],
-					address: '临沂兰山区山东临古电商科技创新孵化园10号楼超级丹'
-				}
+				var _this = this
+				$api.req({
+					url: 'job/'+ this.id,
+					method: 'GET',
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.detail = res.data
+					}
+				})
+				
 			}
 		}
 	}

+ 39 - 29
pageC/zhiwei-list.vue

@@ -1,37 +1,52 @@
 <template>
 	<view class="content">
-		<view class="list-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
+		<view class="list-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)" v-if="list.length > 0">
 			<view class="top hflex acenter jbetween">
-				<text class="text_hide">{{item.name}}</text>
-				<text>{{item.salary}}</text>
+				<text class="text_hide">{{item.title}}</text>
+				<text>{{item.salary_min}}-{{item.salary_max}}K·{{item.salary_month}}薪</text>
 			</view>
-			<view class="company hflex acenter">
+			<!-- <view class="company hflex acenter">
 				<text>{{item.company.name}} · </text>
 				<text>{{item.company.satae}} · </text>
 				<text>{{item.company.stage}}</text>
-			</view>
+			</view> -->
 			<view class="hflex acetner">
-				<view class="text-box" v-if="item.edu">{{item.edu}}</view>
-				<view class="text-box" v-if="item.exper">{{item.exper}}</view>
+				<view class="text-box" v-if="item.education">{{item.education}}</view>
+				<view class="text-box" v-if="item.experience_min">{{item.experience_min}}-{{item.experience_max}}年</view>
 			</view>
 			<view class="bottom hflex acenter jbetween">
-				<text>{{item.hr.name}} {{item.hr.mobile}}</text>
+				<text>{{item.name}} {{item.mobile}}</text>
 				<text>{{item.city}}</text>
 			</view>
 		</view>
+		<view class="hflex acenter jcenter " style="height: 100vh;" v-else >
+			<u-empty mode="data"></u-empty>
+		</view>
 	</view>
 </template>
 
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 		data() {
 			return{
-				list: []
+				list: [],
+				page: 1,
+				last_page: 1,
 			}
 		},
 		onLoad() {
 			this.getlist()
 		},
+		onReachBottom() {
+			if(this.page < this.last_page) {
+				this.page++
+				this.getlist()
+			} else {
+				uni.$u.toast('已经到底了')
+				return
+			}
+		},
 		methods: {
 			toinfo(item) {
 				uni.navigateTo({
@@ -39,26 +54,21 @@
 				})
 			},
 			getlist() {
-				for(var i=0;i<5;i++) {
-					var data = {
-						id: '111' + i,
-						name: '区块链项目经理',
-						salary: '30-50K·15薪',
-						company: {
-							name: '上海埃恪深科技有限公司',
-							satae: '上市',
-							stage: '100人'
-						},
-						edu: '本科',
-						exper: '3-5年',
-						hr: {
-							name: '刘女士',
-							mobile: '15962976583'
-						},
-						city: '北京市·海淀区'
-					}
-					this.list.push(data)
-				}
+				var _this = this
+				$api.req({
+					url: 'job',
+					method: 'GET',
+					data: {
+							is_page: 1,
+							page: _this.page,
+							limit: 10,
+						}
+					}, function(res) {
+						if(res.code == 10000) {
+							_this.list = _this.list.concat(res.data.list)
+							_this.last_page = res.data.last_page
+						}
+					})
 			}
 		}
 	}