提交 0c8c18fb75b7a535480ec96fb79a01b2b3d459f4

作者 wangyu
1 个父辈 91cb5b8b

添加附表及明细的相关页面

... ... @@ -30,6 +30,9 @@
30 30 "pages/main/finalpay/refundInfo/refundInfo",
31 31 "pages/main/finalpay/refundDetail/refundDetail",
32 32 "pages/main/finalpay/freeIncomeDetail/freeIncomeDetail",
  33 + "pages/main/finalpay/otherDeductDetail/otherDeductDetail",
  34 + "pages/main/finalpay/donationDetail/donationDetail",
  35 + "pages/main/finalpay/deductOrPayedDetail/deductOrPayedDetail",
33 36
34 37 "pages/login/login",
35 38 "pages/main/advancepayment/adPayDetails/adPayDetails",
... ...
  1 +// pages/main/finalpay/deductOrPayedDetail/deductOrPayedDetail.js
  2 +Page({
  3 +
  4 + /**
  5 + * Page initial data
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * Lifecycle function--Called when page load
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * Lifecycle function--Called when page is initially rendered
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * Lifecycle function--Called when page show
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * Lifecycle function--Called when page hide
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * Lifecycle function--Called when page unload
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * Page event handler function--Called when user drop down
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * Called when page reach bottom
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * Called when user click on the top right corner to share
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
\ No newline at end of file
... ...
  1 +{
  2 + "usingComponents": {}
  3 +}
\ No newline at end of file
... ...
  1 +<!--pages/main/finalpay/deductOrPayedDetail/deductOrPayedDetail.wxml-->
  2 +<text>pages/main/finalpay/deductOrPayedDetail/deductOrPayedDetail.wxml</text>
... ...
  1 +/* pages/main/finalpay/deductOrPayedDetail/deductOrPayedDetail.wxss */
\ No newline at end of file
... ...
  1 +// pages/main/finalpay/donationDetail/donationDetail.js
  2 +Page({
  3 +
  4 + /**
  5 + * Page initial data
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * Lifecycle function--Called when page load
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * Lifecycle function--Called when page is initially rendered
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * Lifecycle function--Called when page show
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * Lifecycle function--Called when page hide
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * Lifecycle function--Called when page unload
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * Page event handler function--Called when user drop down
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * Called when page reach bottom
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * Called when user click on the top right corner to share
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
\ No newline at end of file
... ...
  1 +{
  2 + "usingComponents": {}
  3 +}
\ No newline at end of file
... ...
  1 +<!--pages/main/finalpay/donationDetail/donationDetail.wxml-->
  2 +<text>pages/main/finalpay/donationDetail/donationDetail.wxml</text>
... ...
  1 +/* pages/main/finalpay/donationDetail/donationDetail.wxss */
\ No newline at end of file
... ...
... ... @@ -70,31 +70,32 @@ Page({
70 70 })
71 71 },
72 72
73   -// 免税收入
  73 +// 免税收入附表
74 74 freeIncomeDetail: function () {
75 75 wx.navigateTo({
76 76 url: '../freeIncomeDetail/freeIncomeDetail',
77 77 })
78 78 },
79 79
80   -// 其他扣除
  80 +// 其他扣除附表
81 81 otherDeductDetail:function(){
82   -
  82 + wx.navigateTo({
  83 + url: '../otherDeductDetail/otherDeductDetail',
  84 + })
83 85 },
84 86
85 87 // 捐赠明细
86 88 donationDetail:function(){
87   -
88   - },
89   -
90   - // 捐赠明细
91   - donationDetail: function () {
92   -
  89 + wx.navigateTo({
  90 + url: '../donationDetail/donationDetail',
  91 + })
93 92 },
94 93
95   -// 减免/已缴纳税额
  94 +// 减免/已缴纳税额明细
96 95 deductOrPayedDetail:function(){
97   -
  96 + wx.navigateTo({
  97 + url: '../deductOrPayedDetail/deductOrPayedDetail',
  98 + })
98 99 },
99 100
100 101 /**
... ...
  1 +// pages/main/finalpay/otherDeductDetail/otherDeductDetail.js
  2 +Page({
  3 +
  4 + /**
  5 + * Page initial data
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * Lifecycle function--Called when page load
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * Lifecycle function--Called when page is initially rendered
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * Lifecycle function--Called when page show
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * Lifecycle function--Called when page hide
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * Lifecycle function--Called when page unload
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * Page event handler function--Called when user drop down
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * Called when page reach bottom
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * Called when user click on the top right corner to share
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
\ No newline at end of file
... ...
  1 +{
  2 + "usingComponents": {}
  3 +}
\ No newline at end of file
... ...
  1 +<!--pages/main/finalpay/otherDeductDetail/otherDeductDetail.wxml-->
  2 +<text>pages/main/finalpay/otherDeductDetail/otherDeductDetail.wxml</text>
... ...
  1 +/* pages/main/finalpay/otherDeductDetail/otherDeductDetail.wxss */
\ No newline at end of file
... ...
注册登录 后发表评论