From 7f3bad7f1b372bcb45adff63e5be69ce9365cdf9 Mon Sep 17 00:00:00 2001 From: chenbiao Date: Tue, 10 May 2022 16:25:10 +0800 Subject: [PATCH] add 发票抬头:查看 编辑 新增; 发票表单结算 填充 确认 --- common/uni.css | 16 ++++++++++++++++ pages.json | 36 ++++++++++++++++++++++++++++++++++++ pages/addTitle/addTitle.vue | 159 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ pages/billing/billing.vue | 5 ++++- pages/companyMsg/companyMsg.vue | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ pages/editTitle/editTitle.vue | 130 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ pages/index/index.vue | 8 +++++++- pages/invoiceTitle/invoiceTitle.vue | 130 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 603 insertions(+), 2 deletions(-) create mode 100644 pages/addTitle/addTitle.vue create mode 100644 pages/companyMsg/companyMsg.vue create mode 100644 pages/editTitle/editTitle.vue create mode 100644 pages/invoiceTitle/invoiceTitle.vue diff --git a/common/uni.css b/common/uni.css index 11a4cbf..66159dc 100644 --- a/common/uni.css +++ b/common/uni.css @@ -1748,6 +1748,10 @@ checkbox-group label { margin-left: 5px; } +.margin-bottom-5 { + margin-bottom: 5px; +} + .paddinglr30 { padding: 0 30px; } @@ -1772,6 +1776,10 @@ checkbox-group label { border-bottom: 1px solid #e5e5e5; } +.border-bottom-5 { + border-bottom: 5px solid #efeff4; +} + .pos-rel { position: relative; } @@ -1780,6 +1788,10 @@ checkbox-group label { position: absolute; } +.display-block { + display: block; +} + .display-none { display: none; } @@ -1825,3 +1837,7 @@ checkbox-group label { .fontweightBold { font-weight: bold; } + +.color-62c7ee { + background-color: #62c7ee !important; +} \ No newline at end of file diff --git a/pages.json b/pages.json index 364e0ee..0fe2502 100644 --- a/pages.json +++ b/pages.json @@ -186,6 +186,42 @@ } } + ,{ + "path" : "pages/invoiceTitle/invoiceTitle", + "style" : + { + "navigationBarTitleText": "发票抬头", + "enablePullDownRefresh": false + } + + } + ,{ + "path" : "pages/companyMsg/companyMsg", + "style" : + { + "navigationBarTitleText": "详情", + "enablePullDownRefresh": false + } + + } + ,{ + "path" : "pages/addTitle/addTitle", + "style" : + { + "navigationBarTitleText": "", + "enablePullDownRefresh": false + } + + } + ,{ + "path" : "pages/editTitle/editTitle", + "style" : + { + "navigationBarTitleText": "编辑抬头", + "enablePullDownRefresh": false + } + + } ], "globalStyle": { "navigationBarTextStyle": "black", diff --git a/pages/addTitle/addTitle.vue b/pages/addTitle/addTitle.vue new file mode 100644 index 0000000..877e86a --- /dev/null +++ b/pages/addTitle/addTitle.vue @@ -0,0 +1,159 @@ + + + + + diff --git a/pages/billing/billing.vue b/pages/billing/billing.vue index 70ee5cc..d9d447a 100644 --- a/pages/billing/billing.vue +++ b/pages/billing/billing.vue @@ -42,7 +42,7 @@ 备注: 111 - + @@ -154,7 +154,10 @@ } }, detailClick() { + uni.navigateTo({ + url: '../invoiceTitle/invoiceTitle' + }); }, // 全选 changeAll: function(e) { diff --git a/pages/companyMsg/companyMsg.vue b/pages/companyMsg/companyMsg.vue new file mode 100644 index 0000000..9319ef9 --- /dev/null +++ b/pages/companyMsg/companyMsg.vue @@ -0,0 +1,121 @@ + + + + + diff --git a/pages/editTitle/editTitle.vue b/pages/editTitle/editTitle.vue new file mode 100644 index 0000000..14c177b --- /dev/null +++ b/pages/editTitle/editTitle.vue @@ -0,0 +1,130 @@ + + + + + diff --git a/pages/index/index.vue b/pages/index/index.vue index 47bc91c..e289cd0 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -44,7 +44,7 @@ 卡券管理 - + @@ -77,6 +77,12 @@ url: '../setting/setting' }); + }, + toInvoicePage() { + uni.navigateTo({ + url: '../invoiceClaim/invoiceClaim' + + }); } } } diff --git a/pages/invoiceTitle/invoiceTitle.vue b/pages/invoiceTitle/invoiceTitle.vue new file mode 100644 index 0000000..012acbf --- /dev/null +++ b/pages/invoiceTitle/invoiceTitle.vue @@ -0,0 +1,130 @@ + + + + + -- libgit2 0.21.4