提交 39eab68e6bcc24d291f6176e0a870e376de56493

作者 wangyu
1 个父辈 71122b65

自然人2.0

1 1 {
2 2 "pages": [
3 3 "pages/main/guide/guide",
4   - "pages/main/home/home",
5 4 "pages/getPhone/getPhone",
  5 + "pages/main/home/home",
6 6 "pages/main/editinfo/editinfo",
7 7 "pages/main/addinfo/addinfo",
8 8 "pages/main/idinfo/idinfo",
... ...
... ... @@ -29,14 +29,40 @@ Page({
29 29
30 30 },
31 31
  32 +/**
  33 + * 自然人信息采集
  34 + */
32 35 gotaxPerson:function(){
33 36 wx.navigateTo({
34 37 url: '../home/home',
35 38 })
36 39 },
37 40
38   - gotaxCalculate: function () {
  41 + /**
  42 + * 专项附加扣除
  43 + */
  44 + goAdditionalDiduction: function () {
  45 + wx.navigateTo({
  46 + url: '../home/home',
  47 + })
  48 + },
  49 +
  50 + /**
  51 + * 预扣预缴
  52 + */
  53 + goAdvancePayment: function () {
  54 + wx.navigateTo({
  55 + url: '../home/home',
  56 + })
  57 + },
39 58
  59 + /**
  60 + * 汇算清缴
  61 + */
  62 + goFinalPayment: function () {
  63 + wx.navigateTo({
  64 + url: '../home/home',
  65 + })
40 66 },
41 67
42 68 /**
... ...
1 1 {
2   - "navigationBarTitleText": "自然人税收"
  2 + "navigationBarTitleText": "自然人税收",
  3 + "navigationBarTextStyle": "black",
  4 + "navigationBarBackgroundColor": "#FFFFFF"
3 5 }
\ No newline at end of file
... ...
... ... @@ -2,9 +2,9 @@
2 2
3 3 <view class='page'>
4 4 <view class="bg_wrap">
5   - <image class='bgimg' src='/images/guide_bg.png'></image>
  5 + <image class='bgimg' src='/images/guide_bg.jpg'></image>
6 6
7   - <view class='card_rectangle_bg' style='margin-top:360rpx;padding:30rpx' bindtap='gotaxPerson'>
  7 + <view class='card_rectangle_bg' style='margin-top:280rpx;padding:30rpx' bindtap='gotaxPerson'>
8 8 <image class="icon_wrap" src="/images/tax_person.png"></image>
9 9 <view style='width:1px;height:140rpx;background-color:#e5e5e5;margin-left:40rpx'></view>
10 10 <view style='display:flex;flex-direction: column;width:432rpx;margin-left:30rpx;align-self:center;'>
... ... @@ -14,7 +14,37 @@
14 14 <image class='arrow_wrap' src='/images/arrow_right.png'></image>
15 15 </view>
16 16
17   - <view class='card_rectangle_bg' style='margin-top:30rpx;padding:30rpx' bindtap='gotaxCalculate'>
  17 + <view class='card_rectangle_bg' style='margin-top:30rpx;padding:30rpx' bindtap='goAdditionalDiduction'>
  18 + <image class="icon_wrap" src="/images/additional_deduction.png"></image>
  19 + <view style='width:1px;height:140rpx;background-color:#e5e5e5;margin-left:40rpx'></view>
  20 + <view style='display:flex;flex-direction: column;width:432rpx;margin-left:30rpx;align-self:center;'>
  21 + <text style='font-size: 36rpx;color: #000;font-weight:bold;'>专项附加扣除</text>
  22 + <text style='font-size:28rpx;color: #999;margin-top:6rpx'>上传可抵扣的专项附加扣除费用票据</text>
  23 + </view>
  24 + <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
  25 + </view>
  26 +
  27 + <view class='card_rectangle_bg' style='margin-top:30rpx;padding:30rpx' bindtap='goAdvancePayment'>
  28 + <image class="icon_wrap" src="/images/advance_payment.png"></image>
  29 + <view style='width:1px;height:140rpx;background-color:#e5e5e5;margin-left:40rpx'></view>
  30 + <view style='display:flex;flex-direction: column;width:432rpx;margin-left:30rpx;align-self:center;'>
  31 + <text style='font-size: 36rpx;color: #000;font-weight:bold;'>预扣预缴</text>
  32 + <text style='font-size:28rpx;color: #999;margin-top:6rpx'>查看本人的个税扣缴明细</text>
  33 + </view>
  34 + <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
  35 + </view>
  36 +
  37 + <view class='card_rectangle_bg' style='margin-top:30rpx;padding:30rpx' bindtap='goFinalPayment'>
  38 + <image class="icon_wrap" src="/images/final_payment.png"></image>
  39 + <view style='width:1px;height:140rpx;background-color:#e5e5e5;margin-left:40rpx'></view>
  40 + <view style='display:flex;flex-direction: column;width:432rpx;margin-left:30rpx;align-self:center;'>
  41 + <text style='font-size: 36rpx;color: #000;font-weight:bold;'>汇算清缴</text>
  42 + <text style='font-size:28rpx;color: #999;margin-top:6rpx'>查看个人年度税收信息,年度汇算清缴</text>
  43 + </view>
  44 + <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
  45 + </view>
  46 +
  47 + <!-- <view class='card_rectangle_bg' style='margin-top:30rpx;padding:30rpx' bindtap='gotaxCalculate'>
18 48 <image class="icon_wrap" src="/images/tax_calculate.png"></image>
19 49 <view style='width:1px;height:140rpx;background-color:#e5e5e5;margin-left:40rpx'></view>
20 50 <view style='display:flex;flex-direction: column;width:432rpx;margin-left:30rpx;align-self:center;'>
... ... @@ -22,7 +52,7 @@
22 52 <text style='font-size:28rpx;color: #999;margin-top:6rpx'>正在开发中</text>
23 53 </view>
24 54 <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
25   - </view>
  55 + </view> -->
26 56 </view>
27 57
28 58 </view>
\ No newline at end of file
... ...
1 1 /* pages/main/guide/guide.wxss */
2 2
  3 +
  4 +.page{
  5 + background-color: #fcfcfc;
  6 +}
  7 +
3 8 .bgimg {
4 9 position: absolute;
5   - height: 400rpx;
6   - width: 100%;
  10 + height: 280rpx;
  11 + width: 95%;
  12 + align-self: center;
7 13 }
8 14
9 15 .card_rectangle_bg {
... ... @@ -11,9 +17,8 @@
11 17 margin: 0 auto;
12 18 display: flex;
13 19 flex-direction: row;
14   - width: 86%;
15   - /* margin-left: 30rpx;
16   - margin-right: 30rpx; */
  20 + margin-left: 30rpx;
  21 + margin-right: 30rpx;
17 22 background: #fff;
18 23 box-shadow: 0 4px 14px 0 rgba(208, 208, 208, 0.50);
19 24 border-radius: 8px;
... ... @@ -22,7 +27,6 @@
22 27 .bg_wrap {
23 28 display: flex;
24 29 flex-direction: column;
25   - background-color: #fff;
26 30 width: 100%;
27 31 }
28 32
... ...
注册登录 后发表评论