Blame view

pages/home/home.vue 10.5 KB
c7add6cf   “wangming”   初始版本开发完毕
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
85
86
87
  <template>

  	<view class="page">

  		<customHead mode='searchNav' :title='headtitle'></customHead>

  		<view class="main">

  			<!-- banner -->

  			<view class="banner">

  				<swiper class="screen-swiper square-dot" indicator-dots="true" circular="true" autoplay="true"

  					interval="5000" duration="500">

  					<swiper-item v-for="(item,index) in bannerIImg" :key="index">

  						<image :src="BASE_URL+item.image[0].url" mode="aspectFill"></image>

  						<!-- <video src="{{item.url}}" autoplay loop muted show-play-btn="{{false}}" controls="{{false}}" objectFit="cover" wx:if="{{item.type=='video'}}"></video> -->

  					</swiper-item>

  				</swiper>

  			</view>

  			<!-- 限时抢购,好货精选 -->

  			<view class="flash-good cf" @click="FindWord">

  				<view class="flash-sale fl">

  					<view class="goods-list">

  						<view class="list">

  							<view>

  								<view class="list-title">我要找工作</view>

  								<view class="list-small-title">轻松高薪</view>

  							</view>

  							<view class="list-img">

  								<image src="../../static/home1-icon.png"></image>

  							</view>

  						</view>

  					</view>

  				</view>

  				<view class="good-choice fl" @click="Feedback">

  					<view class="goods-list">

  						<view class="list">

  							<view>

  								<view class="list-title">我要招工</view>

  								<view class="list-small-title">人员可靠</view>

  							</view>

  							<view class="list-img">

  								<image src="../../static/home2-icon.png"></image>

  							</view>

  						</view>

  					</view>

  				</view>

  				<view class="good-choice1 fl" @click="ConfirmOrder">

  					<view class="goods-list">

  						<view class="list">

  							<view>

  								<view class="list-title">人力资源外包</view>

  								<view class="list-small-title">信息公开透明</view>

  							</view>

  							<view class="list-img">

  								<image src="../../static/home3-icon.png"></image>

  							</view>

  						</view>

  					</view>

  				</view>

  				<view class="good-choice2 fl" @click="MyCoupon">

  					<view class="goods-list">

  						<view class="list">

  							<view>

  								<view class="list-title">培训考证</view>

  								<view class="list-small-title">提升专业能力</view>

  							</view>

  							<view class="list-img">

  								<image src="../../static/home4-icon.png"></image>

  							</view>

  						</view>

  					</view>

  				</view>

  			</view>

  

  			<view class="search-box">

  				<view class="search">

  					<view class="iconfont icon-fadajing"></view>

  					<input type="text" v-model="SearchText" placeholder="热门搜索:成都、高薪" />

  					<view class="search-btn" @click="AllWork">搜索</view>

  				</view>

  			</view>

  

  			<view class="titleall-box">

  				<view class="titleall-left">

  					<view class="titleall-left-line"></view>职位列表

  				</view>

  				<view class="titleall-right" @click="AllWork">查看全部岗位<image src="../../static/right.png"></image>

  				</view>

  			</view>

  

  			<view class="title-screen">

33740e18   “wangming”   体验版给客户看了
88
  				<view class="title-screen-box">发布时间<image @click="orderSort" src="../../static/down.png"></image>

c7add6cf   “wangming”   初始版本开发完毕
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
  				</view>

  			</view>

  

  			<view class="record-list">

  				<view class="list" @click="JobsDetails(item.id)" v-for="item in tbrecruitList">

  					<view class="title-date">

  						<view class="title">

  							<text class="two-omit">{{item.companyName}}-{{item.jop}}</text>

  						</view>

  						<view class="date">

  							<text class="one-omit">{{item.introduce}}</text>

  						</view>

  						<view>

  							<view class="yellow-btn">{{getDifferTime(item.lastModifyTime)}}</view>

  						</view>

  					</view>

  					<view class="integral">

  						<text class="integral-btn">{{item.jopName}}</text>

  						<view class="integral-num">{{item.pay}}</view>

  					</view>

  				</view>

  

  			</view>

  

  		</view>

  		<!-- tabbar -->

  		<TabBar :tabBarShow="0"></TabBar>

  	</view>

  </template>

  

  <script>

  	import BASE_URL from '@/common/config.js'

  	import TabBar from '../../components/TabBar/TabBar.vue';

  	import customHead from "@/components/xy-customhead/xy-customhead.vue";

  	// 引入mescroll-mixins.js

  	import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";

  	export default {

  		mixins: [MescrollMixin], // 使用mixin

  		components: {

  			TabBar,

  			customHead,

  		},

  		data() {

  			return {

  				BASE_URL,

  				headtitle: '铭钛招聘',

  				mescroll: null, // mescroll实例对象 (此行可删,mixins已默认)

  				// 下拉刷新的配置(可选, 绝大部分情况无需配置)

  				downOption: {},

  				// 上拉加载的配置(可选, 绝大部分情况无需配置)

  				upOption: {

  					use: false

  				},

  				swiperList: [{

  						id: 0,

  						type: 'image',

  						url: '/static/img/banner_01.png'

  					},

  					{

  						id: 1,

  						type: 'image',

  						url: '/static/img/banner_02.png'

  					},

  				],

  				slideNum: 0,

  				classifyShow: 0,

  				// 页面高度

  				pageHeight: 500,

  				query: {

  					currentPage: 1,

  					pageSize: 10,

33740e18   “wangming”   体验版给客户看了
160
161
162
  					keyword: "",

  					sidx: "lastModifyTime",

  					sort: "desc"

c7add6cf   “wangming”   初始版本开发完毕
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
  				},

  				tbrecruitList: [],

  				SearchText: "",

  				bannerIImg: [],

  			}

  		},

  		onReady() {

  			uni.hideTabBar();

  			// #ifdef MP

  			uni.setNavigationBarTitle({

  				title: '首页',

  			})

  			uni.setNavigationBarColor({

  				frontColor: '#ffffff',

  				backgroundColor: '#fe3b0f',

  			})

  			// #endif

  		},

  		onLoad() {

  			this.Gettbrecruit();

  			this.API.Gettbbanner().then(res => {

  				this.bannerIImg = res.data.list.map(res => {

  					res.image = JSON.parse(res.image);

  					return res;

  				});

  			});

  		},

  		onPageScroll(e) {

  			let scrollTop = e.scrollTop;

  			if (scrollTop > 0) {

  				this.pageHeight = 210;

  			} else {

  				this.pageHeight = 500;

  			}

  		},

  		onReachBottom() {

  			console.log(12333);

  		},

  		methods: {

33740e18   “wangming”   体验版给客户看了
202
203
204
205
206
207
208
209
  			orderSort() {

  				if (this.query.sort == "asc") {

  					this.query.sort = "desc";

  				} else {

  					this.query.sort = "asc";

  				}

  				this.Gettbrecruit();

  			},

c7add6cf   “wangming”   初始版本开发完毕
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
  			getDifferTime(startDate) {

  				startDate = this.formatDateTime(startDate);

  				let startTime = new Date(Date.parse(startDate.replace(/-/g, "/"))).getTime();

  				let endTime = new Date(Date.parse(this.getNowDate().replace(/-/g, "/"))).getTime();

  				let dates = Math.abs((startTime - endTime)) / (1000 * 60 * 60 * 24);

  				let DayNumber = Math.ceil(dates);

  				if (DayNumber <= 7) {

  					return DayNumber + "天内发布"

  				} else {

  					return DayNumber + "天前发布"

  				}

  			},

  			getNowDate() {

  				const timeOne = new Date()

  				const year = timeOne.getFullYear()

  				let month = timeOne.getMonth() + 1

  				let day = timeOne.getDate()

  				month = month < 10 ? '0' + month : month

  				day = day < 10 ? '0' + day : day

  				const NOW_MONTHS_AGO = `${year}-${month}-${day}`

  				return NOW_MONTHS_AGO

  			},

  			formatDateTime(value) { // 时间戳转换日期格式方法

  				if (value == null) {

  					return ''

  				} else {

33740e18   “wangming”   体验版给客户看了
236
  					const date = new Date(value)

c7add6cf   “wangming”   初始版本开发完毕
237
238
239
  					const y = date.getFullYear() // 年

  					let MM = date.getMonth() + 1 // 月

  					MM = MM < 10 ? ('0' + MM) : MM

33740e18   “wangming”   体验版给客户看了
240
  					let d = date.getDate() // 日

c7add6cf   “wangming”   初始版本开发完毕
241
  					d = d < 10 ? ('0' + d) : d

33740e18   “wangming”   体验版给客户看了
242
  					let h = date.getHours() // 时

c7add6cf   “wangming”   初始版本开发完毕
243
244
245
  					h = h < 10 ? ('0' + h) : h

  					let m = date.getMinutes() // 分

  					m = m < 10 ? ('0' + m) : m

33740e18   “wangming”   体验版给客户看了
246
  					let s = date.getSeconds() // 秒

c7add6cf   “wangming”   初始版本开发完毕
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
  					s = s < 10 ? ('0' + s) : s

  					return y + '-' + MM + '-' + d + ' ' + h + ':' + m + ':' + s

  				}

  			},

  			Gettbrecruit() {

  				this.API.Gettbrecruit(this.query).then(res => {

  					this.tbrecruitList = res.data.list;

  				});

  			},

  			nvInputTap(e) {

  				console.log(e);

  			},

  			nvInput(e) {

  				console.log(e.detail.value);

  			},

  			nvFormSubmit(e) {

  				console.log(e.detail.value);

  				uni.showModal({

  					title: "pyh-nv",

  					content: "input提交:" + JSON.stringify(e.detail.value)

  				})

  			},

  			nvAddressTap(e) {

  				console.log("点击了地址");

  				// this.nvConfig.address.province = "湖南省"

  				uni.showModal({

  					title: "pyh-nv",

  					content: "点击了地址"

  				})

  			},

  			// 回到上一页

  			back: function() {

  				uni.navigateBack({

  					delta: 1

  				})

  			},

  			// 左侧返回按钮调用

  			onBack() {

  				this.$emit("onBack")

  			},

  			/*下拉刷新的回调, 有三种处理方式:*/

  			downCallback() {

  				this.mescroll.endSuccess();

  			},

  			/*上拉加载的回调*/

  			upCallback(page) {

  				setTimeout(() => {

  					this.mescroll.endByPage(10, 20);

  				}, 2000)

  			},

  			/**

  			 * 菜单导航滚动

  			 */

  			ScrollMenu(e) {

  				let scrollLeft = e.target.scrollLeft;

  				const query = uni.createSelectorQuery().in(this);

  				query.select('.nav').boundingClientRect(data => {

  					let wid = e.target.scrollWidth - data.width - (data.left * 2 + 5);

  					this.slideNum = (scrollLeft / wid * 300) / 2;

  				}).exec();

  			},

  			/**

  			 * 搜索点击

  			 */

  			AllWork() {

  				uni.navigateTo({

  					url: '/pages/AllWork/AllWork?keyword=' + this.SearchText

  				})

  			},

  			Feedback() {

  				uni.navigateTo({

  					url: '/pages/Feedback/Feedback'

  				})

  			},

  			FindWord() {

  				uni.navigateTo({

  					url: '/pages/FindWord/FindWord'

  				})

  			},

  			MyCoupon() {

  				uni.navigateTo({

  					url: '/pages/MyCoupon/MyCoupon'

  				})

  			},

  			ConfirmOrder() {

  				uni.navigateTo({

  					url: '/pages/ConfirmOrder/ConfirmOrder'

  				})

  			},

  			JobsDetails(id) {

  				uni.navigateTo({

  					url: '/pages/JobsDetails/JobsDetails?id=' + id

  				})

  			},

  			/**

  			 * 分类点击

  			 * @param {Object} item

  			 * @param {Number} index

  			 */

  			onClassify(item, index) {

  				this.classifyShow = index;

  			},

  			/**

  			 * 跳转点击

  			 * @param {String} type 跳转类型

  			 */

  			onSkip(type) {

  				switch (type) {

  					case 'mess':

  						uni.navigateTo({

  							url: '/pages/Message/Message'

  						})

  						break;

  					case 'paycode':

  						uni.navigateTo({

  							url: '/pages/PaymentCode/PaymentCode'

  						})

  						break;

  					case 'menu':

  						uni.navigateTo({

  							url: '/pages/SearchGoodsList/SearchGoodsList'

  						})

  						break;

  					case 'inform':

  						break;

  					case 'flash':

  						uni.navigateTo({

  							url: '/pages/FlashSale/FlashSale'

  						})

  						break;

  					case 'GoodChoice':

  						uni.navigateTo({

  							url: '/pages/GoodChoice/GoodChoice'

  						})

  						break;

  					case 'goods':

  						uni.navigateTo({

  							url: '/pages/GoodsDetails/GoodsDetails',

  							animationType: 'zoom-fade-out',

  							animationDuration: 200

  						})

  						break;

  				}

  			}

  		}

  	};

  </script>

  

  <style scoped lang="scss">

  	@import 'home.scss';

  </style>