HuaJingwen 7 years ago
parent
commit
b5a0e26020
4 changed files with 123 additions and 0 deletions
  1. 67 0
      pages/getIt/getIt.js
  2. 1 0
      pages/getIt/getIt.json
  3. 5 0
      pages/getIt/getIt.wxml
  4. 50 0
      pages/getIt/getIt.wxss

+ 67 - 0
pages/getIt/getIt.js

@@ -0,0 +1,67 @@
1
+// pages/logs_to/logs_to.js
2
+Page({
3
+
4
+  /**
5
+   * 页面的初始数据
6
+   */
7
+  data: {
8
+    phone_number:'18888888888'
9
+  },
10
+
11
+  /**
12
+   * 生命周期函数--监听页面加载
13
+   */
14
+  onLoad: function (options) {
15
+    var that = this, tel = options.tel;
16
+    that.setData({phone_number: tel})
17
+  },
18
+
19
+  /**
20
+   * 生命周期函数--监听页面初次渲染完成
21
+   */
22
+  onReady: function () {
23
+
24
+  },
25
+
26
+  /**
27
+   * 生命周期函数--监听页面显示
28
+   */
29
+  onShow: function () {
30
+
31
+  },
32
+
33
+  /**
34
+   * 生命周期函数--监听页面隐藏
35
+   */
36
+  onHide: function () {
37
+
38
+  },
39
+
40
+  /**
41
+   * 生命周期函数--监听页面卸载
42
+   */
43
+  onUnload: function () {
44
+
45
+  },
46
+
47
+  /**
48
+   * 页面相关事件处理函数--监听用户下拉动作
49
+   */
50
+  onPullDownRefresh: function () {
51
+
52
+  },
53
+
54
+  /**
55
+   * 页面上拉触底事件的处理函数
56
+   */
57
+  onReachBottom: function () {
58
+
59
+  },
60
+
61
+  /**
62
+   * 用户点击右上角分享
63
+   */
64
+  onShareAppMessage: function () {
65
+
66
+  }
67
+})

+ 1 - 0
pages/getIt/getIt.json

@@ -0,0 +1 @@
1
+{}

+ 5 - 0
pages/getIt/getIt.wxml

@@ -0,0 +1,5 @@
1
+ <view class='pd64'> 
2
+  <image src='../resource/image/login_logo.png' class='logo_img'></image>
3
+  <view class='phone_number'>手机:<text>{{phone_number}}</text></view>
4
+ </view> 
5
+ <view class='details'>同时申请<text>3</text>款以上产品,成功率提升<text>90%</text></view> 

+ 50 - 0
pages/getIt/getIt.wxss

@@ -0,0 +1,50 @@
1
+page {
2
+  /* font-size: 100px; */
3
+  font-family: "PingFangSC-Regular, 微软雅黑, sans-serif";
4
+  background: #f5f4f9;
5
+}
6
+
7
+view {
8
+  background: #fff;
9
+}
10
+
11
+.pd64 {
12
+    border-top: 1px solid#f5f4f9;
13
+  padding-bottom: 46px;
14
+    text-align: center;
15
+}
16
+.phone_number{
17
+  display: block;
18
+  margin-top: 12px;
19
+  font-size: 18px;
20
+  color: #333;
21
+  text-align: center;
22
+}
23
+/* .phone_number text{
24
+  font-size: 18px;
25
+  color: #333;
26
+  text-align: center;
27
+} */
28
+.logo_img {
29
+  width: 68px;
30
+  height: 88px;
31
+  display: block;
32
+  margin: auto;
33
+  margin-top: 32px;
34
+}
35
+
36
+.details {
37
+  display: block;
38
+  height: 84px;
39
+  width: 100%;
40
+  font-size: 14px;
41
+  margin: auto;
42
+  text-align: center;
43
+  line-height: 84px;
44
+  margin-top: 10px;
45
+  color: #8c8c8c;
46
+}
47
+
48
+.details  text {
49
+  color: #db3232;
50
+}