Commit 556a0c925125bf8a96e1d7ec80300ccc157c57a5

Authored by 陈晓峰
1 parent f2450b79

rm ceshi files

1 1 {
2 2 "pages": [
3 3 "pages/index/index",
4   - "pages/ceshi1/ceshi1",
5 4
6 5
7 6 "pages/jobfair/jobfair",
8   - "pages/ceshi4/ceshi4",
9 7 "pages/legal/legal",
10 8 "pages/member/member",
11 9 "pages/gzjh/gzjh",
... ... @@ -18,7 +16,6 @@
18 16 "pages/jobfairdetail/jobfairdetail",
19 17 "pages/zyjydetail/zyjydetail",
20 18 "pages/academic/academic",
21   - "pages/ceshi2/ceshi2",
22 19 "pages/activity/join/join",
23 20 "pages/activity/Interest/Interest",
24 21 "pages/contact/contact"
... ...
1   -Page({
2   - data: {
3   - url:'http://www.henkuai.com/thread-11714-1-1.html'
4   - },
5   - show: function(){
6   - let that=this
7   - wx.setClipboardData({
8   - data: that.data.url,
9   - success(){
10   - that.setData({
11   - url:'http://www.henkuai.com/thread-11714-1-1.html'
12   - })
13   - console.log('success')
14   - }
15   - })
16   - wx.getClipboardData({
17   - success(res){
18   - console.log(res.data)
19   - }
20   - })
21   - wx.showToast({
22   - title: '复制成功'
23   - })
24   - }
25   -})
\ No newline at end of file
1   -{
2   - "enablePullDownRefresh": true
3   -}
\ No newline at end of file
1   -<view>
2   -<view class='wangzhi'>http://www.henkuai.com/thread-11714-1-1.html</view>
3   - <view style='display:none;'>{{url}}</view>
4   - <view class="fuzhi">
5   - <button bindtap='show' class="dianji">复制链接</button>
6   - <view class="jianyi">*建议传输到电脑山在打开链接</view>
7   - <view style="clear:both;"></view>
8   - </view>
9   -</view>
\ No newline at end of file
1   -.wangzhi{
2   - font-size: 28rpx;
3   - color: #d72025;
4   - width: 80%;
5   - margin: 0 auto;
6   -}
7   -.fuzhi{
8   - width: 80%;
9   - margin: 0 auto;
10   - margin-top: 35rpx;
11   -}
12   -.dianji{
13   - display: block;
14   - float: left;
15   - background: #d72025;
16   - color: #fff;
17   - height: 80rpx;
18   - line-height: 80rpx;
19   - width: 50%;
20   -}
21   -.jianyi{
22   - float: left;
23   - font-size: 22rpx;
24   - margin-top: 10rpx;
25   - color: #353535;
26   - width: 45%;
27   - margin-left: 5%;
28   -}
\ No newline at end of file
1   -// pages/ceshi2/ceshi2.js
2   -Page({
3   - /**
4   - * 页面的初始数据
5   - */
6   - data: {
7   - top:'',
8   - aaa:true
9   - },
10   -
11   - /**
12   - * 生命周期函数--监听页面加载
13   - */
14   - onLoad: function (options) {
15   -
16   - },
17   -
18   - /**
19   - * 生命周期函数--监听页面初次渲染完成
20   - */
21   - onReady: function () {
22   -
23   - },
24   - //滚动监听
25   - handleTap1: function (e) {
26   - var that = this
27   - var top = that.data.top
28   - var aaa = that.data.aaa
29   - console.log(that)
30   - var query = wx.createSelectorQuery()
31   - query.select('#outer').boundingClientRect()
32   - query.selectViewport().scrollOffset()
33   - query.exec(function (res) {
34   - console.log(res)
35   - res[0].top // #the-id节点的上边界坐标
36   - res[1].scrollTop // 显示区域的竖直滚动位置
37   - that.setData({
38   - top: res[0].top
39   - })
40   - })
41   - if (top <=-200){
42   - that.setData({
43   - aaa: false
44   - })
45   - }else{
46   - that.setData({
47   - aaa: true
48   - })
49   - }
50   - // var top = res[0].top
51   - },
52   - /**
53   - * 生命周期函数--监听页面显示
54   - */
55   - onShow: function () {
56   -
57   - },
58   -
59   - /**
60   - * 生命周期函数--监听页面隐藏
61   - */
62   - onHide: function () {
63   -
64   - },
65   -
66   - /**
67   - * 生命周期函数--监听页面卸载
68   - */
69   - onUnload: function () {
70   -
71   - },
72   -
73   - /**
74   - * 页面相关事件处理函数--监听用户下拉动作
75   - */
76   - onPullDownRefresh: function () {
77   - wx.showToast({
78   - title: 'loading...',
79   - icon: 'loading'
80   - })
81   - setTimeout(function(){
82   - wx.stopPullDownRefresh()
83   - },1500)
84   - console.log('onPullDownRefresh', new Date())
85   - wx.stopPullDownRefresh();
86   - },
87   - stopPullDownRefresh: function () {
88   - wx.stopPullDownRefresh({
89   - complete: function (res) {
90   - wx.hideToast()
91   - console.log(res, new Date())
92   - }
93   - })
94   - },
95   - /**
96   - * 页面上拉触底事件的处理函数
97   - */
98   - onReachBottom: function () {
99   -
100   - },
101   -
102   - /**
103   - * 用户点击右上角分享
104   - */
105   - onShareAppMessage: function () {
106   -
107   - }
108   -})
\ No newline at end of file
1   -{
2   - "enablePullDownRefresh": true,
3   - "backgroundTextStyle": "dark"
4   -}
\ No newline at end of file
1   - <view id="outer" bind:touchmove="handleTap1" capture-bind:touchstart="handleTap2">
2   -<view>pages/ceshi2/ceshi2.wxml</view>
3   -<view>pages/ceshi2/ceshi2.wxml</view>
4   -<view>pages/ceshi2/ceshi2.wxml</view>
5   -<view>pages/ceshi2/ceshi2.wxml</view>
6   -<view>pages/ceshi2/ceshi2.wxml</view>
7   -<view>pages/ceshi2/ceshi2.wxml</view>
8   -<view>pages/ceshi2/ceshi2.wxml</view>
9   -<view>pages/ceshi2/ceshi2.wxml</view>
10   -<view>pages/ceshi2/ceshi2.wxml</view>
11   -<view>pages/ceshi2/ceshi2.wxml</view>
12   -<view>pages/ceshi2/ceshi2.wxml</view>
13   -<view>pages/ceshi2/ceshi2.wxml</view>
14   -<view>pages/ceshi2/ceshi2.wxml</view>
15   -<view>pages/ceshi2/ceshi2.wxml</view>
16   -<view>pages/ceshi2/ceshi2.wxml</view>
17   -<view class="{{aaa ? 'block' : 'hide'}}">pages/ceshi1321321/ceshi123123123.wxml</view>
18   -<view>pages/ceshi2/ceshi2.wxml</view>
19   -<view>pages/ceshi2/ceshi2.wxml</view>
20   -<view>pages/ceshi2/ceshi2.wxml</view>
21   -<view>pages/ceshi2/ceshi2.wxml</view>
22   -<view>pages/ceshi2/ceshi2.wxml</view>
23   -<view>pages/ceshi2/ceshi2.wxml</view>
24   -<view>pages/ceshi2/ceshi2.wxml</view>
25   -<view>pages/ceshi2/ceshi2.wxml</view>
26   -<view>pages/ceshi2/ceshi2.wxml</view>
27   -<view>pages/ceshi2/ceshi2.wxml</view>
28   -<view>pages/ceshi2/ceshi2.wxml</view>
29   -<view>pages/ceshi2/ceshi2.wxml</view>
30   -<view>pages/ceshi2/ceshi2.wxml</view>
31   -<view>pages/ceshi2/ceshi2.wxml</view>
32   -<view>pages/ceshi2/ceshi2.wxml</view>
33   -<view>pages/ceshi2/ceshi2.wxml</view>
34   -<view>pages/ceshi2/ceshi2.wxml</view>
35   -<view>pages/ceshi2/ceshi2.wxml</view>
36   -<view>pages/ceshi2/ceshi2.wxml</view>
37   -<view>pages/ceshi2/ceshi2.wxml</view>
38   -<view>pages/ceshi2/ceshi2.wxml</view>
39   -<view>pages/ceshi2/ceshi2.wxml</view>
40   -<view>pages/ceshi2/ceshi2.wxml</view>
41   -<view>pages/ceshi2/ceshi2.wxml</view>
42   -<view>pages/ceshi2/ceshi2.wxml</view>
43   -<view>pages/ceshi2/ceshi2.wxml</view>
44   -<view>pages/ceshi2/ceshi2.wxml</view>
45   -<view>pages/ceshi2/ceshi2.wxml</view>
46   -<view>pages/ceshi2/ceshi2.wxml</view>
47   -<view>pages/ceshi2/ceshi2.wxml</view>
48   -<view>pages/ceshi2/ceshi2.wxml</view>
49   -<view>pages/ceshi2/ceshi2.wxml</view>
50   -<view>pages/ceshi2/ceshi2.wxml</view>
51   -<view>pages/ceshi2/ceshi2.wxml</view>
52   -<view>pages/ceshi2/ceshi2.wxml</view>
53   -<view>pages/ceshi2/ceshi2.wxml</view>
54   -<view>pages/ceshi2/ceshi2.wxml</view>
55   -<view>pages/ceshi2/ceshi2.wxml</view>
56   -<view>pages/ceshi2/ceshi2.wxml</view>
57   -<view>pages/ceshi2/ceshi2.wxml</view>
58   -<view>pages/ceshi2/ceshi2.wxml</view>
59   -<view>pages/ceshi2/ceshi2.wxml</view>
60   -<view>pages/ceshi2/ceshi2.wxml</view>
61   -<view>pages/ceshi2/ceshi2.wxml</view>
62   -<view>pages/ceshi2/ceshi2.wxml</view>
63   -<view>pages/ceshi2/ceshi2.wxml</view>
64   -<view>pages/ceshi2/ceshi2.wxml</view>
65   -<view>pages/ceshi2/ceshi2.wxml</view>
66   -<view>pages/ceshi2/ceshi2.wxml</view>
67   -<view>pages/ceshi2/ceshi2.wxml</view>
68   -<view>pages/ceshi2/ceshi2.wxml</view>
69   -<view>pages/ceshi2/ceshi2.wxml</view>
70   -<view>pages/ceshi2/ceshi2.wxml</view>
71   -<view>pages/ceshi2/ceshi2.wxml</view>
72   -</view>
73   - <!-- <view id="outer" bind:touchstart="handleTap1" capture-bind:touchstart="handleTap2">
74   - outer view
75   - <view id="inner" bind:touchstart="handleTap3" capture-bind:touchstart="handleTap4">
76   - inner view
77   - </view>
78   -</view> -->
\ No newline at end of file
1   -/* pages/ceshi2/ceshi2.wxss */
2   -.block{
3   - display: block;
4   -}
5   -.hide{
6   - display: none;
7   -}
1   -//index.js
2   -//获取应用实例
3   -const app = getApp()
4   -Page({
5   - data: {
6   - limit: 0,
7   - show: 0,
8   - limitto: 5,
9   - loadHidden: true,
10   - datalaiy: '中国福利彩票官网',
11   - newstitle: '彩经新闻',
12   - lists: [
13   - {
14   - 'id': '1',
15   - 'image': 'http://img1.huiyijingling.cn/UploadImage/Meet/20161010/4ntia7d5/636117184529372567.png',
16   - 'title': '双色球17102期开奖结果',
17   - 'num': '304',
18   - 'state': '进行中',
19   - 'time': '2017-03-28',
20   - 'keywords': '双色球17102期开奖结果'
21   - }
22   - ],
23   - list: [
24   - {
25   - 'id': '1',
26   - 'image': 'http://img1.huiyijingling.cn/UploadImage/Meet/20161010/4ntia7d5/636117185105463337.png',
27   - 'title': '福彩3D开奖结果',
28   - 'num': '150',
29   - 'state': '已结束',
30   - 'time': '2017-03-28',
31   - 'keywords': '福彩3D开奖结果'
32   - }
33   - ],
34   - kjlist: [
35   - {
36   - 'id': '1', 'name': '双色球',
37   - 'bid': '0', 'caipiaoid': '13',
38   - 'ball': [{ id: 1, num: '2', tp: 1 }, { id: 2, num: '3', tp: 1 }, { id: 3, num: '4', tp: 1 }, { id: 4, num: '8', tp: 1 },
39   - { id: 5, num: '12', tp: 1 },
40   - { id: 6, num: '17', tp: 1 },
41   - { id: 7, num: '7', tp: 2 }
42   - ],
43   - 'issueno': '17031',
44   - 'opendate': '2017-03-28'
45   - }
46   - ],
47   - imgUrls: [
48   - '/images/1.jpg',
49   - '/images/2.jpg'
50   - ],
51   - //配置tabBar
52   - tabBar: {
53   - "color": "#9E9E9E",
54   - "selectedColor": "#f00",
55   - "backgroundColor": "#fff",
56   - "borderStyle": "#ccc",
57   - "num": 4,
58   - "list": [
59   - {
60   - "pagePath": "/page/index/index",
61   - "text": "主页",
62   - "iconPath": "../../images/1.png",
63   - "selectedIconPath": "../../images/1-2.png",
64   - //"selectedColor": "#4EDF80",
65   - active: true
66   - },
67   - {
68   - "pagePath": "/page/kj/list",
69   - "text": "开奖查询",
70   - "iconPath": "../../images/2.png",
71   - "selectedIconPath": "../../images/2-2.png",
72   - active: false
73   - },
74   - {
75   - "pagePath": "/page/news/index",
76   - "text": "彩经新闻",
77   - "iconPath": "../../images/3.png",
78   - "selectedIconPath": "../../images/3-2.png",
79   - active: false
80   - },
81   - {
82   - "pagePath": "/page/line/index",
83   - "text": "预测分析",
84   - "iconPath": "../../images/4.png",
85   - "selectedIconPath": "../../images/4-2.png",
86   - active: false
87   - }
88   - ],
89   - "position": "bottom"
90   - }
91   - },
92   - scrollR: function (e) {
93   - var that = this;
94   - that.setData({ loadHidden: false })
95   - wx.request({
96   - //主页信息
97   - url: app.url + '/apiArticleIndex.php', //首页接口地址
98   - data: { limit: that.data.limit, limitto: that.data.limitto },
99   - header: { 'Content-Type': 'application/json' },
100   - success: function (res) {
101   - that.setData({
102   - list: res.data.aarr
103   - })
104   - that.setData({ limit: that.data.limit + 3 })
105   - that.setData({ limitto: that.data.limitto + 3 })
106   -
107   - that.setData({
108   - lists: that.data.lists.concat(that.data.list),
109   - });
110   - },
111   - fail: function (res) {
112   - console.log('失败')
113   - },
114   - complete: function () {
115   - //隐藏 加载中的提示
116   - that.setData({ loadHidden: true })
117   - },
118   - })
119   - },
120   - getDatas: function (e) {
121   - var that = this;
122   - wx.request({
123   - //主页信息
124   - url: app.url + '/apiIndex.php', //首页接口地址
125   - data: {},
126   - success: function (res) {
127   - that.setData({
128   - kjlist: res.data.kjlist
129   - })
130   - that.setData({
131   - datalaiy: res.data.datalaiy
132   - })
133   - that.setData({
134   - newstitle: res.data.newstitle
135   - })
136   - },
137   - fail: function (res) {
138   - console.log('失败')
139   - }
140   - })
141   - },
142   - getArticleDatas: function (e) {
143   - var that = this;
144   - that.setData({ loadHidden: false })
145   - wx.request({
146   - //主页信息
147   - url: app.url + '/apiArticleIndex.php', //首页接口地址
148   - data: { limit: that.data.limit, limitto: that.data.limitto },
149   - header: { 'Content-Type': 'application/json' },
150   - success: function (res) {
151   - that.setData({
152   - lists: res.data.aarr
153   - })
154   - that.setData({ limit: that.data.limit + 3 })
155   - that.setData({ limitto: that.data.limitto + 3 })
156   - console.log('limit数据' + that.data.limit)
157   - },
158   - fail: function (res) {
159   - console.log('失败')
160   - },
161   - complete: function () {
162   - //隐藏 加载中的提示
163   - that.setData({ loadHidden: true })
164   - },
165   - })
166   - },
167   - onLoad: function (e) {
168   - // this.scrollR(e);
169   - this.getDatas();
170   - this.getArticleDatas();
171   - },
172   - //事件处理函数
173   - bindViewTap: function () {
174   - wx.navigateTo({
175   - url: '../kjdetail/index',
176   - success: function (res) {
177   - console.log('跳转到news页面成功')// success
178   - },
179   - fail: function () {
180   - console.log('跳转到news页面失败') // fail
181   - },
182   - complete: function () {
183   - console.log('跳转到news页面完成') // complete
184   - }
185   - })
186   - },
187   -
188   - scroll: function (e) {
189   - console.log('首页加载了scroll')
190   - this.scrollR();
191   - },
192   - onShareAppMessage: function () {
193   -
194   - }
195   -})
1   -{
2   - "navigationBarTitleText": "下拉刷新",
3   - "enablePullDownRefresh": true,
4   - "backgroundTextStyle": "dark"
5   -}
\ No newline at end of file
1   -// pages/shibai/shibai.js
2   -Page({
3   -
4   - /**
5   - * 页面的初始数据
6   - */
7   - data: {
8   - imgs1: '/static/images/sqsb.png',
9   - imgs2: '/static/images/01.png',
10   - imgs3: '/static/images/smt01.png',
11   - imgs4: '/static/images/02.png',
12   - imgs5: '/static/images/smt02.png',
13   - },
14   -
15   - /**
16   - * 生命周期函数--监听页面加载
17   - */
18   - onLoad: function (options) {
19   -
20   - },
21   -
22   - /**
23   - * 生命周期函数--监听页面初次渲染完成
24   - */
25   - onReady: function () {
26   -
27   - },
28   -
29   - /**
30   - * 生命周期函数--监听页面显示
31   - */
32   - onShow: function () {
33   -
34   - },
35   -
36   - /**
37   - * 生命周期函数--监听页面隐藏
38   - */
39   - onHide: function () {
40   -
41   - },
42   -
43   - /**
44   - * 生命周期函数--监听页面卸载
45   - */
46   - onUnload: function () {
47   -
48   - },
49   -
50   - /**
51   - * 页面相关事件处理函数--监听用户下拉动作
52   - */
53   - onPullDownRefresh: function () {
54   -
55   - },
56   -
57   - /**
58   - * 页面上拉触底事件的处理函数
59   - */
60   - onReachBottom: function () {
61   -
62   - },
63   -
64   - /**
65   - * 用户点击右上角分享
66   - */
67   - onShareAppMessage: function () {
68   -
69   - }
70   -})
\ No newline at end of file
1   -{}
\ No newline at end of file
1   -<!--pages/shibai/shibai.wxml-->
2   -<!-- <text>pages/shibai/shibai.wxml</text> -->
3   -<view >
4   -个人信息保护政策
5   -施普林格·自然充分认识到保护我们在进行商业活动中所经手的所有个人信息的社会使命,并且我们遵守保护您权利和个人信息相关的法律法规。此外,我们承诺将不遗余力地持续完善我们的个人信息保护管理系统,同时确立充分体现以下所述政策的框架,并将IT技术最新发展趋势、社会需求变化以及管理环境变换考虑在内。
6   -1. 我们将仅在出于特定使用目的实现开展施普林格·自然合法业务必要范围内收集、使用并提供您的个人信息,其中特定使用目的包括员工雇佣和人事管理。我们不会出于任何其他目的使用您的个人信息并为此采取措施。
7   -2. 我们采取合理安全预防措施,防止未授权访问、损坏或损害您个人信息的风险,并根据业务环境不断分配管理资产从而完善我们的个人信息安全系统。如发生不利事件,我们将立即采取措施予以纠正。
8   -3. 我们遵守政府制定的关于个人信息保护的适用法律法规以及指导方针和其他标准。
9   -4. 我们及时适当检查我们的个人信息保护管理系统,并持续做出改进,同时考虑您的需求以及施普林格·自然周遭环境的变化,包括信息技术趋势。
10   -5. 我们将及时回应个人信息处理相关的任何投诉或咨询请求。我们就这项政策对所有员工进行教育,此外我们还向他们提供这项政策的副本。更进一步,通过将其发布在施普林格·自然网站上,我们采取措施确保所有员工在任何时候都能了解该政策。
11   -
12   -
13   -个人信息使用目的
14   -施普林格·自然将出于以下目的使用我们收集的个人信息:
15   -1. 确认并交付客户订购或注册的商品和服务
16   -· 确认申请参加活动及研讨会并发出结果报告通知
17   -· 确认申请电子邮件分发服务并分发电子邮件
18   -· 确认支付商品和服务
19   -· 配合调查和问卷发送赠送礼品
20   -如果个人信息发生改变,可能阻碍商品或发票的送达,诸如市政当局名称或邮编、金融机构名称户或信用卡到期日更改等,施普林格·自然可能会修改客户的注册信息。
21   -2. 提供或改进客户使用的产品和服务或者开发全新服务
22   -· 改进产品、服务或网站内容,以提升客户满意度
23   -· 调查客户对订阅信息或产品的满意度
24   -· 总结统计处理的个人信息并作为调查结果进行公布。
25   -3. 求职者个人信息
26   -· 就雇佣筛选联系申请人
27   -4. 外包服务中的个人信息
28   -· 提供诸如系统开发、运营管理和托管服务等信息处理服务
29   -</view>
\ No newline at end of file
1   -/* pages/shibai/shibai.wxss */
2   -page{
3   - font-size: 30rpx;
4   - margin: 0;
5   - padding: 0;
6   -}
7   -.lfd {
8   - float: left;
9   -}
10   -.rfd {
11   - float:right;
12   -}
13   -.top {
14   - background: #5c5c5c;
15   -}
16   -.top1 {
17   -
18   -}
19   -.topimg {
20   - width: 20%;
21   - height: 200rpx;
22   - margin-left: 40%;
23   - margin-top: 80rpx;
24   -}
25   -.top2 {
26   - color: white;
27   - text-align: center;
28   -}
29   -.topsb {
30   - margin-top: 36rpx;
31   - font-size: 40rpx;
32   - margin-bottom: 36rpx;
33   -}
34   -.topsq {
35   - padding-bottom: 40rpx;
36   - border-bottom: 2rpx solid #ccc;
37   -}
38   -.topjj {
39   - font-size: 26rpx;
40   - margin-top: 22rpx;
41   - padding-bottom: 50rpx;
42   -}
43   -.container {
44   - /* padding-left: 10%;
45   - padding-right: 10%; */
46   - padding-top: 0;
47   -}
48   -.contop {
49   - text-align: center;
50   - width: 90%;
51   - font-size: 34rpx;
52   - font-weight: bold;
53   - margin-top: 52rpx;
54   - padding-bottom: 40rpx;
55   - border-bottom: 2rpx solid #ccc;
56   -}
57   -.concenter {
58   - padding-top: 50rpx;
59   - padding-left: 10%;
60   - padding-right: 10%;
61   -}
62   -.conimg1 {
63   - height: 50rpx;
64   - width: 50rpx;
65   -}
66   -.centertxt {
67   - margin-left: 10rpx;
68   - width: 80%;
69   - line-height: 56rpx;
70   -}
71   -.confoot {
72   - width: 80%;
73   - height: 210rpx;
74   - margin-left: 10%;
75   -}
76   -.confoot2 {
77   - margin-left: 10%;
78   - width: 80%;
79   - height: 450rpx;
80   -}
\ No newline at end of file
1   -// pages/index/index.js
2   -var app = getApp();
3   -Page({
4   -
5   - /**
6   - * 页面的初始数据
7   - */
8   - data: {
9   - num: 0,
10   - scrollTop1: '60',
11   - right: true,
12   - list1: '',
13   - scrollTop: '',
14   - adv1: [
15   - {
16   - hgehe: 112312
17   - },
18   - {
19   - hgehe: 112312
20   - },
21   - {
22   - hgehe: 112312
23   - },
24   - {
25   - hgehe: 112312
26   - }
27   - ],
28   - meng: true,
29   - skey: '',
30   - hidden:true,
31   - index1: '',
32   - indicatorDots: true,
33   - autoplay: true,
34   - interval: 5000,
35   - duration: 500,
36   - circular: true,
37   - indicatorColor: "#f2f2f2",
38   - indicatoractive: "#b51400",
39   - block: false,
40   - block1: false,
41   - windowHeight: 0,
42   - adv: [
43   - ],
44   - list: [
45   - {
46   - name: '学术会议',
47   - title: 'Naturejobs Career Expo|',
48   - mode: 'aturejobs Career Expo | aturejobs Career Expo'
49   - },
50   - {
51   - name: '工作机会',
52   - title: 'Naturejobs Career Expo|',
53   - mode: 'aturejobs Career Expo | aturejobs Career Expo'
54   - },
55   - {
56   - name: '职业建议',
57   - title: 'Naturejobs Career Expo|',
58   - mode: 'aturejobs Career Expo | aturejobs Career Expo'
59   - },
60   - {
61   - name: '学术会议',
62   - title: 'Naturejobs Career Expo|',
63   - mode: 'aturejobs Career Expo | aturejobs Career Expo'
64   - },
65   - ],
66   - con: [
67   - {
68   - name: '职业建议',
69   - },
70   - {
71   - name: '学术会议',
72   -
73   - },
74   - {
75   - name: '工作机会',
76   - }
77   - ]
78   -
79   - },
80   - onLoad: function (options) {
81   - var that = this
82   - var con = that.data.con
83   - that.checktime();
84   - // var skey = wx.getStorageSync('skey')
85   - var skey = wx.getStorageSync('key')
86   - console.log('skey', skey)
87   - that.setData({
88   - skey: skey
89   - })
90   - wx.getSystemInfo({
91   - success: function (res) {
92   - that.setData({
93   - windowHeight: res.windowHeight
94   - })
95   - },
96   - })
97   - wx.request({
98   - url: app.url + '/mpapi/1.0.0/user/check-session',
99   - method: 'GET',
100   - header: {
101   - 'content-type': 'application/json',
102   - 'x-wx-skey': skey
103   - },
104   - // ,job_opportunities
105   - data: {
106   - // contentType: 'career_advice,academic_conference,job_opportunities',
107   - // offset: 0,
108   - // limit: 8
109   - },
110   - success: function (res) {
111   - console.log('session', res.data)
112   - if (res.data.loginState == 1) {
113   - console.log('session正常')
114   - } else {
115   - console.log('session过期')
116   - app.getUserInfo();
117   - }
118   - },
119   - fail: function (err) {
120   - console.info('测试skey更新报错', err.statusCode);
121   - wx.redirectTo({
122   - url: '../ceshi4/ceshi4',
123   -
124   - })
125   - }
126   - })
127   - wx.request({
128   - url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
129   - method: 'GET',
130   - header: {
131   - 'content-type': 'application/json',
132   - 'x-wx-skey': skey
133   - },
134   - // ,job_opportunities
135   - data: {
136   - contentType: 'career_advice,academic_conference,job_opportunities',
137   - offset: 0,
138   - limit: 8
139   - },
140   - success: function (res) {
141   - console.log('list', res.data)
142   - if (res.data.data.length<8)
143   - {
144   - that.setData({
145   - list: res.data.data,
146   - hidden: false
147   - })
148   - }else
149   - {
150   - var num1 = that.data.num + 8;
151   - that.setData({
152   - list: res.data.data,
153   - hidden: false,
154   - num: num1
155   - })
156   - }
157   - }
158   -
159   - })
160   - wx.request({
161   - url: app.url + '/mpapi/1.0.0/homepage/slideshow',
162   - method: 'GET',
163   - header: {
164   - 'content-type': 'application/json',
165   - 'x-wx-skey': skey
166   - },
167   - success: function (res) {
168   - console.log('adv', res.data)
169   - that.setData({
170   - adv: res.data.data
171   - })
172   - }
173   - })
174   -
175   - },
176   - scroll: function (e) {
177   - // console.log('aa', e)
178   - // console.log(e.detail.scrollTop);
179   - var that = this
180   - var num = that.data.num
181   -
182   - // that.setData({
183   - // scrollTop: e.detail.scrollTop
184   - // })
185   - var scrollTop = e.detail.scrollTop
186   - // console.log('scrollTop1111', scrollTop)
187   - that.setData({
188   - scrollTop: scrollTop
189   - })
190   - if (scrollTop == 0) {
191   - var that = this
192   - var skey = that.data.skey
193   - wx.request({
194   - url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
195   - method: 'GET',
196   - header: {
197   - 'content-type': 'application/json',
198   - 'x-wx-skey': skey
199   - },
200   - // ,job_opportunities
201   - data: {
202   - contentType: 'career_advice,academic_conference,job_opportunities',
203   - offset: 0,
204   - limit: 8
205   - },
206   - success: function (res) {
207   - console.log('list', res.data)
208   - wx.showLoading({
209   - title: '加载中',
210   - })
211   - that.setData({
212   - list: res.data.data,
213   - num: 0
214   - })
215   - wx.showLoading({
216   - title: '加载中',
217   - })
218   - setTimeout(function () {
219   - var scrollTop1 = that.data.scrollTop1
220   - that.setData({
221   - scrollTop1: 60
222   - })
223   - wx.hideLoading()
224   - }, 2000)
225   - }
226   - })
227   - }
228   - // console.log('e.detail.scrollTop:'+e.detail.scrollTop) ;
229   - // console.log('scrollTop:'+scrollTop)
230   - },
231   - getmenu: function () {
232   - var that = this
233   - var block = that.data.block
234   - var block1 = that.data.block1
235   - var meng = that.data.meng
236   -
237   - if (block == false) {
238   - that.setData({
239   - block: true,
240   - meng: false,
241   - block1: false
242   - });
243   - } else {
244   - that.setData({
245   - block: false,
246   - meng: true
247   - });
248   - }
249   - },
250   - getmenu1: function () {
251   - var that = this
252   - var block = that.data.block
253   - var block1 = that.data.block1
254   - var meng = that.data.meng
255   -
256   - if (block1 == false) {
257   - that.setData({
258   - block1: true,
259   - meng: false,
260   - block: false
261   - });
262   - } else {
263   - that.setData({
264   - block1: false,
265   - meng: true
266   - });
267   - }
268   - },
269   - meng: function () {
270   - var that = this
271   - var block = that.data.block
272   - var block1 = that.data.block1
273   - var meng = that.data.meng
274   - that.setData({
275   - block1: false,
276   - meng: true,
277   - block: false
278   - });
279   - },
280   -
281   - checktime: function () {
282   - console.log(1111111)
283   - var that = this
284   - var time = Date.parse(wx.getStorageSync('time'))
285   - console.log(2222222)
286   - var time1 = Date.parse(new Date)
287   - var gettime = (time1 - time) / 1000;
288   - if (gettime > 1) {
289   - console.log(999999)
290   - return false
291   - } else {
292   - console.log(8888888)
293   - return true
294   - }
295   - },
296   - /**
297   - * 生命周期函数--监听页面加载
298   - */
299   -
300   - /**
301   - * 生命周期函数--监听页面初次渲染完成
302   - */
303   - onReady: function (e) {
304   -
305   -
306   - },
307   -
308   - /**
309   - * 生命周期函数--监听页面显示
310   - */
311   - onShow: function () {
312   -
313   - },
314   - imagesHeight: function (t)
315   - {
316   - var a = t.detail.width,
317   - e = t.detail.height,
318   - o = t.target.dataset.type,
319   - i = {},
320   - s = this;
321   - console.log('o', 0)
322   - wx.getSystemInfo({
323   - success: function (t) {
324   - console.log('t', t)
325   - console.log('e', e)
326   - i[o] = t.windowWidth / a * e,
327   - (!s.data[o] || s.data[o] && i[o] < s.data[o]) && s.setData(i)
328   - }
329   - })
330   - },
331   - getlist: function (e) {
332   - var that = this
333   - var list = that.data.list
334   - var right = that.data.right
335   - var con = that.data.con
336   - var index = e.currentTarget.dataset.index
337   - var skey = that.data.skey
338   - console.log('index', index)
339   - var index1 = that.data.index1
340   - that.setData({
341   - index1: index,
342   - // right:false
343   - })
344   - if (index == 0) {
345   - wx.request({
346   - url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
347   - method: 'GET',
348   - header: {
349   - 'content-type': 'application/json',
350   - 'x-wx-skey': skey
351   - },
352   - data: {
353   - contentType: 'career_advice',
354   - offset: 0,
355   - limit: 8
356   - },
357   - success: function (res) {
358   - console.log('con', res.data.data)
359   - that.setData({
360   - list: res.data.data,
361   - // url:'../recruit/recruit?id:id'
362   - })
363   - }
364   - })
365   - }
366   - if (index == 1) {
367   - wx.request({
368   - url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
369   - method: 'GET',
370   - header: {
371   - 'content-type': 'application/json',
372   - 'x-wx-skey': skey
373   - },
374   - data: {
375   - contentType: 'academic_conference',
376   - offset: 0,
377   - limit: 8
378   - },
379   - success: function (res) {
380   - console.log('con', res.data.data)
381   - that.setData({
382   - list: res.data.data
383   - })
384   - }
385   - })
386   - }
387   - if (index == 2) {
388   - wx.request({
389   - url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
390   - method: 'GET',
391   - header: {
392   - 'content-type': 'application/json',
393   - 'x-wx-skey': skey
394   - },
395   - data: {
396   - contentType: 'job_opportunities',
397   - offset: 0,
398   - limit: 8
399   - },
400   - success: function (res) {
401   - console.log('con', res.data.data)
402   - that.setData({
403   - list: res.data.data
404   - })
405   - }
406   - })
407   - }
408   - console.log('this', this)
409   - if (this.data.currentTab === e.target.dataset.index) {
410   - return false;
411   - } else {
412   - that.setData({
413   - currentTab: e.target.dataset.current
414   - })
415   - }
416   -
417   - },
418   - // upper: function (e) {
419   - // console.log('上啦', e)
420   -
421   - // },
422   - jiazai: function () {
423   - wx.showToast({
424   - title: '加载中',
425   - icon: 'loading',
426   - duration: 2000//loading时间
427   - });
428   - //wx.hideToast();隐藏loading
429   - },
430   - lower: function (e) {
431   -
432   - var that = this
433   - that.jiazai()
434   - console.log('加载更多')
435   - var skey = that.data.skey
436   - var hidden = true
437   - var num = that.data.num
438   - var index1 = that.data.index1
439   - console.log('index1index1', index1)
440   - console.log('numaaa', num)
441   - if ((index1 == null || index1=="") && hidden) {
442   - console.log(1111111111111111)
443   - wx.request({
444   - url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
445   - method: 'GET',
446   - header: {
447   - 'content-type': 'application/json',
448   - 'x-wx-skey': skey
449   - },
450   - // ,job_opportunities
451   - data: {
452   - contentType: 'career_advice,academic_conference,job_opportunities',
453   - offset: num,
454   - limit: 8
455   - },
456   - success: function (res) {
457   - console.log('list', res.data)
458   - if (res.data.data.length<8)
459   - {
460   - that.setData({
461   - list: that.data.list.concat(res.data.data),
462   - hidden: false
463   - })
464   - }
465   - else{
466   - var num1 = that.data.num += 8
467   - console.log('num1', num1)
468   - that.setData({
469   - num: num1,
470   - list: that.data.list.concat(res.data.data),
471   - hidden: false
472   - })
473   - setTimeout(function () {
474   - console.log(1111111111111111111111111111111111111111)
475   - }, 3500);
476   - }
477   -
478   - }
479   - })
480   - } else {
481   - console.log(2222)
482   - }
483   - // if (index1 == 0) {
484   - // wx.request({
485   - // url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
486   - // method: 'GET',
487   - // header: {
488   - // 'content-type': 'application/json',
489   - // 'x-wx-skey': skey
490   - // },
491   - // // ,job_opportunities
492   - // data: {
493   - // contentType: 'career_advice',
494   - // offset: num,
495   - // limit: 8
496   - // },
497   - // success: function (res) {
498   - // console.log('list', res.data)
499   - // var num1 = that.data.num += 8
500   - // console.log('num1', num1)
501   -
502   - // that.setData({
503   - // num: num1,
504   - // list: that.data.list.concat(res.data.data),
505   - // })
506   - // }
507   - // })
508   - // }
509   - // if (index1 == 1) {
510   - // wx.request({
511   - // url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
512   - // method: 'GET',
513   - // header: {
514   - // 'content-type': 'application/json',
515   - // 'x-wx-skey': skey
516   - // },
517   - // // ,job_opportunities
518   - // data: {
519   - // contentType: 'academic_conference',
520   - // offset: num,
521   - // limit: 8
522   - // },
523   - // success: function (res) {
524   - // console.log('list', res.data)
525   - // var num1 = that.data.num += 8
526   - // console.log('num1', num1)
527   -
528   - // that.setData({
529   - // num: num1,
530   - // list: that.data.list.concat(res.data.data),
531   - // })
532   - // }
533   - // })
534   - // }
535   - // if (index1 == 2) {
536   - // wx.request({
537   - // url: app.url + '/mpapi/1.0.0/homepage/content?contentType=&offset=&limit=',
538   - // method: 'GET',
539   - // header: {
540   - // 'content-type': 'application/json',
541   - // 'x-wx-skey': skey
542   - // },
543   - // // ,job_opportunities
544   - // data: {
545   - // contentType: 'job_opportunities',
546   - // offset: num,
547   - // limit: 8
548   - // },
549   - // success: function (res) {
550   - // console.log('list', res.data)
551   - // var num1 = that.data.num += 8
552   - // console.log('num1', num1)
553   -
554   - // that.setData({
555   - // num: num1,
556   - // list: that.data.list.concat(res.data.data),
557   - // })
558   - // }
559   - // })
560   - // }
561   - },
562   - /**
563   - * 生命周期函数--监听页面隐藏
564   - */
565   - onHide: function () {
566   -
567   - },
568   -
569   - /**
570   - * 生命周期函数--监听页面卸载
571   - */
572   - onUnload: function () {
573   -
574   - },
575   -
576   - /**
577   - * 页面相关事件处理函数--监听用户下拉动作
578   - */
579   - // onPullDownRefresh: function () {
580   - // console.log('下拉')
581   -
582   - // },
583   -
584   - /**
585   - * 页面上拉触底事件的处理函数
586   - */
587   - // onReachBottom: function () {
588   - // var that = this
589   - // console.log('上拉')
590   -
591   - // },
592   -
593   - /**
594   - * 用户点击右上角分享
595   - */
596   - onShareAppMessage: function () {
597   -
598   - }
599   -})
\ No newline at end of file
1   -{
2   -
3   -}
\ No newline at end of file
1   -<scroll-view scroll-y="true" scroll-top="{{scrollTop1}}" style="height:{{windowHeight}}px;" bindscroll="scroll" lower-threshold="100px" bindscrolltolower="lower">
2   -<view style="height:60px;line-height:60px; background: #e5e5e5; text-align: center; font-size:26rpx;"><image src='/static/images/jiantou.png' class="jiantou"></image>下拉刷新</view>
3   - <view style="font-size:28rpx; height:{{windowHeight}}px;">
4   - <view class="index-advs">
5   - <swiper autoplay="{{autoplay}}" circular="{{circular}}" class="index-adcs-sqiper" duration="{{duration}}" indicator-dots="{{indicatorDots}}" indicator-color="{{indicatorColor}}" indicator-active-color="{{indicatoractive}}" interval="{{interval}}" style="{{advsheight ? 'height:' + advsheight +'px' : ''}}">
6   - <block wx:for="{{adv}}" wx:for-index="idx">
7   - <swiper-item>
8   - <navigator class="index-advs-navigator" url="/{{item.linkTo.pageUri}}">
9   - <image src="{{item.image.url}}" bindload="imagesHeight" style='width:100%; height:100%;' data-type="advsheight">
10   - </image>
11   - <view class="botttt">
12   - 12321432543
13   - </view>
14   - <!-- <view class="wenzi"> pssb{{idx}}</view> -->
15   - </navigator>
16   - </swiper-item>
17   - </block>
18   - </swiper>
19   -
20   - <!-- <block wx:for="{{adv}}" wx:for-index="idx">
21   - <swiper-item>
22   - <navigator class="index-advs-navigator" url="{{item.link}}">
23   - </navigator>
24   - </swiper-item>
25   - </block> -->
26   - </view>
27   - <view class="content1">
28   - <view class="top">Naturejobs Career Expo |</view>
29   - <view class="top">Jobs in China</view>
30   - </view>
31   - <view class="content2">
32   - <block wx:for="{{list}}">
33   - <view class="li">
34   - <navigator wx:if="{{index1 == 0}}" wx:if="{{item.type == 'career_advice'}}" url='../zyjydetail/zyjydetail?id={{item.id}}'><!--../detail/detail?id={{item.id}} -->
35   - <view class="bg">
36   - <image src='{{item.image.url}}' mode='widthFix'></image>
37   - </view>
38   - <view class="con">
39   - <view class="con1">
40   - <view class="top">{{item.title}}</view>
41   - <view class="bot">{{item.description}}</view>
42   - <text class="{{right?'display':'hide'}} right">{{item.label}}</text>
43   - </view>
44   - </view>
45   - </navigator>
46   - <navigator wx:if="{{index1 == 1}}" wx:if="{{item.type == 'academic_conference'}}" url='../academic/academic?id={{item.id}}'><!--../detail/detail?id={{item.id}} -->
47   - <view class="bg">
48   - <image src='{{item.image.url}}' mode='widthFix'></image>
49   - </view>
50   - <view class="con">
51   - <view class="con1">
52   - <view class="shijian">{{item.eventDate}}</view>
53   - <view class="top">{{item.title}}</view>
54   - <view class="bot">{{item.description}}</view>
55   - <text class="{{right?'display':'hide'}} right">{{item.label}}</text>
56   -
57   - </view>
58   - </view>
59   - </navigator>
60   - <navigator wx:if="{{index1 == 2}}" wx:if="{{item.type == 'job_opportunities'}}" url='../recruit/recruit?id={{item.id}}'><!--../detail/detail?id={{item.id}} -->
61   - <view class="bg">
62   - <image src='{{item.image.url}}' mode='widthFix'></image>
63   - </view>
64   - <view class="con">
65   - <view class="con1">
66   - <view class="top">{{item.title}}</view>
67   - <view class="bot">{{item.description}}</view>
68   - <text class="{{right?'display':'hide'}} right">{{item.label}}</text>
69   - <view class="bot">{{item.id}}</view>
70   - </view>
71   - </view>
72   - </navigator>
73   - </view>
74   - </block>
75   - </view>
76   - <!-- {{scrollTop>180 ? 'block' : 'hide'}} -->
77   - <view class="{{scrollTop>120 ? 'block' : 'hide'}} content3">
78   - <block wx:for="{{con}}">
79   - <view class="li">
80   - <text bindtap='getlist' data-index="{{index}}" data-current="{{index}}" class="{{currentTab==index ? 'on' : ''}}">{{item.name}}</text>
81   - </view>
82   - </block>
83   - <view class='cl'></view>
84   - </view>
85   - <view class="{{scrollTop>120 ? 'hide' : 'block'}} bott">
86   - <view class="{{block ? 'block' : 'hide'}} menu">
87   - <view class='tanbg'><image src='/static/images/tanbg1.png'></image></view>
88   - <view class="ol">
89   - <navigator url='../jobfair/jobfair' open-type="redirect">招聘会</navigator>
90   - </view>
91   - <view class="ol">
92   - <navigator url='../academiclist/academiclist' open-type="redirect">学术会议</navigator>
93   - </view>
94   - <view class="ol">
95   - <navigator url='../xzpx/xzpx' open-type="redirect">写作培训</navigator>
96   - </view>
97   - </view>
98   - <view class="{{block1 ? 'block' : 'hide'}} menu1">
99   - <view class='tanbg'><image src='/static/images/tanbg1.png'></image></view>
100   - <view class="ol">
101   - <navigator url='../zyjy/zyjy' open-type="redirect">职业建议</navigator>
102   - </view>
103   - <view class="ol">
104   - <navigator url='../gzjh/gzjh' open-type="redirect">工作机会</navigator>
105   - </view>
106   - </view>
107   - <view class="foot">
108   - <view class="li">
109   - <navigator url='../lwrs/lwrs' open-type="redirect">
110   - <image src='/static/images/001.png' mode='widthFix' class="top"></image>
111   - <text>润色</text>
112   - </navigator>
113   - </view>
114   - <view class="li">
115   - <view bindtap='getmenu' class='huodong'>
116   - <image src='/static/images/002.png' mode='widthFix' class="top"></image>
117   - <text>活动</text>
118   - </view>
119   - </view>
120   - <view class="li">
121   - <view bindtap='getmenu1' class='huodong'>
122   - <image src='/static/images/003.png' mode='widthFix' class="top"></image>
123   - <text>资讯</text>
124   - </view>
125   - </view>
126   - <view class="li">
127   - <navigator url='../contact/contact' open-type="redirect">
128   - <image src='/static/images/004.png' mode='widthFix' class="top"></image>
129   - <text>联系</text>
130   - </navigator>
131   - </view>
132   - <view class="li">
133   - <navigator url='../member/member' open-type="redirect">
134   - <image src='/static/images/005.png' mode='widthFix' class="top"></image>
135   - <text>我的</text>
136   - </navigator>
137   - </view>
138   - <view class="cl"></view>
139   - </view>
140   - </view>
141   - </view>
142   - <view class="{{meng ? 'hide' : 'block'}} meng" bindtap='meng'></view>
143   - <!-- <view class="weui-loadmore" hidden="{{isHideLoadMore}}">
144   - <view class="weui-loading"></view>
145   - <view class="weui-loadmore__tips">正在加载</view>
146   - </view> -->
147   -</scroll-view>
\ No newline at end of file
1   -
2   -
3   -page{
4   - width: 100%;
5   - height: 100%
6   -}
7   -.meng{
8   - width: 100%;
9   - height: 100%;
10   - background: rgba(76, 74, 75, 0.5);
11   - z-index: 999;
12   - position: fixed;
13   - left: 0;
14   - top: 0;
15   -}
16   -.fl {
17   - float: left;
18   -}
19   -
20   -.fr {
21   - float: right;
22   -}
23   -
24   -.cl {
25   - clear: both;
26   -}
27   -
28   -.display {
29   - display: block;
30   -}
31   -
32   -.hide {
33   - display: none;
34   -}
35   -
36   -.page-body-info {
37   - background-color: transparent;
38   -}
39   -
40   -.btn-area {
41   - margin-top: 300rpx;
42   -}
43   -
44   -.con .con1 .bot {
45   - overflow: hidden;
46   - text-overflow: ellipsis;
47   - display: -webkit-box;
48   - -webkit-line-clamp: 1;
49   - -webkit-box-orient: vertical;
50   -}
51   -
52   -.index-advs-navigator {
53   - height: 100%;
54   - width: 100%;
55   -}
56   -
57   -.content1 {
58   - font-weight: bold;
59   - padding: 30rpx 0;
60   - width: 92%;
61   - font-size: 32rpx;
62   - margin-left: 4%;
63   -}
64   -
65   -.content2 .li {
66   - position: relative;
67   - margin-top: 6rpx;
68   -}
69   -
70   -.content2 .li image {
71   - width: 100%;
72   -}
73   -
74   -.content2 .li .con {
75   - position: absolute;
76   - color: #fff;
77   - width: 100%;
78   - height: 100%;
79   - background: rgba(76, 74, 75, 0.5);
80   - top: 0;
81   - left: 0;
82   -}
83   -
84   -.content2 .li .con .con1 {
85   - margin-left: 40rpx;
86   - margin-top: 40rpx;
87   -}
88   -
89   -.content2 .li .con .con1 .top {
90   - font-size: 32rpx;
91   - margin-top: 15rpx;
92   - margin-bottom: 5rpx;
93   -}
94   -
95   -.content2 .li .con .con1 .bot {
96   - margin-top: 10rpx;
97   - font-size: 25rpx;
98   -}
99   -
100   -.content2 .li .con .con1 .right {
101   - position: absolute;
102   - right: 15rpx;
103   - top: 0;
104   - font-size: 26rpx;
105   - background: #c30d23;
106   - color: #fff;
107   - width: 166rpx;
108   - height: 46rpx;
109   - line-height: 46rpx;
110   - text-align: center;
111   -}
112   -
113   -.content3 {
114   - color: #adadad;
115   - position: fixed;
116   - top: 0;
117   - left: 0;
118   - width: 100%;
119   - z-index: 99;
120   - background: rgba(76, 74, 75, 0.9);
121   -}
122   -
123   -.content3 .li {
124   - float: left;
125   - padding: 10rpx 0;
126   - margin-top: 20rpx;
127   - margin-bottom: 20rpx;
128   - font-size: 28rpx;
129   - width: 33%;
130   - text-align: center;
131   -}
132   -
133   -.content3 .li:nth-child(2) {
134   - border-left: #c5c5c3 solid 2rpx;
135   - border-right: #c5c5c3 solid 2rpx;
136   -}
137   -
138   -.content3 .li text {
139   - margin: 0 auto;
140   - padding: 30rpx 10rpx 22rpx 10rpx;
141   -}
142   -
143   -.on {
144   - color: #fff;
145   - border-bottom: 9rpx solid #bc272b;
146   -}
147   -
148   -.bott {
149   - position: fixed;
150   - left: 0;
151   - bottom: 0;
152   - z-index: 9999;
153   - width: 100%;
154   -}
155   -
156   -.foot {
157   - width: 100%;
158   - background: #d81f25;
159   -}
160   -
161   -.foot .li navigator {
162   - display: block;
163   - padding: 10rpx 0 5rpx 0;
164   -}
165   -
166   -.foot .li .huodong {
167   - display: block;
168   - padding: 10rpx 0 5rpx 0;
169   -}
170   -
171   -.foot .li {
172   - text-align: center;
173   - color: #fff;
174   - width: 20%;
175   - float: left;
176   -}
177   -
178   -.foot .li .top {
179   - width: 30%;
180   - margin: 0 auto;
181   - display: block;
182   -}
183   -
184   -.foot .li text {
185   - font-size: 24rpx;
186   -}
187   -
188   -.menu {
189   - margin-left: 10%;
190   - background: #fff;
191   - width: 40%;
192   -}
193   -
194   -.menu .ol {
195   - padding-top: 5rpx;
196   - padding-bottom: 5rpx;
197   - border-top: #ececec solid 2rpx;
198   - width: 94%;
199   - margin-left: 3%;
200   - text-align: center;
201   -}
202   -
203   -.menu .ol:nth-child(1) {
204   - border-top: none;
205   -}
206   -
207   -.menu .ol navigator {
208   - padding: 25rpx 0;
209   - color: #787878;
210   -}
211   -
212   -.menu1 {
213   - margin-left: 30%;
214   - background: #fff;
215   - width: 40%;
216   -}
217   -
218   -.menu1 .ol {
219   - padding-top: 5rpx;
220   - padding-bottom: 5rpx;
221   - border-top: #ececec solid 2rpx;
222   - width: 94%;
223   - margin-left: 3%;
224   - text-align: center;
225   -}
226   -
227   -.menu1 .ol:nth-child(1) {
228   - border-top: none;
229   -}
230   -
231   -.menu1 .ol navigator {
232   - padding: 25rpx 0;
233   - color: #787878;
234   -
235   -}
236   -.tanbg image{
237   - height: 22rpx;
238   - width:100%;
239   - position: absolute;
240   - bottom: 0;
241   -}
242   -.menu{
243   - position: relative;
244   -}
245   -.menu1{
246   - position: relative;
247   -}
248   -.wenzi {
249   - font-weight: bold;
250   - padding: 20rpx 0;
251   - width: 92%;
252   - font-size: 32rpx;
253   - bottom: -150rpx;
254   - margin-left: 4%;
255   -}
256   -swiper-item{
257   - overflow:visible;
258   -}
259   -swiper{
260   - position: relative;
261   -}
262   -.shijian{
263   - font-size: 24rpx;
264   -}
265   -.jiantou{
266   - width: 30rpx;
267   - height: 30rpx;
268   -}
Please register or login to post a comment