invoicedetails.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view class="pages">
  3. <view class="" :style="{height: navHeight+'px' }"></view>
  4. <view class="navbar-box">
  5. <u-navbar title="开票详情" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="#EF1818"></u-navbar>
  6. </view>
  7. <view class="page-wrap">
  8. <view class="block-wrap">
  9. <view class="title">开票详情</view>
  10. <!-- <view class="item u-flex">
  11. <view class="left">抬头类型 </view>
  12. <view class="right">{{抬头类型 }}</view>
  13. </view> -->
  14. <view class="item u-flex" v-for="(item,index) in detailsInfo[details.handlerType]" :key="index">
  15. <view class="left">{{item.name}}</view>
  16. <view class="con">
  17. <text v-if="item.key=='handlerType'">{{details[item.key]|filterHandlerType}}</text>
  18. <text :style="{color:details.status>2?'#EF0E0E':'#6CC079'}" class="status" v-else-if="item.key=='status'">{{details[item.key]|filterInvoiceState}}</text>
  19. <text v-else-if="item.key=='invoiceAmount'">¥ {{details[item.key]}}</text>
  20. <text v-else>{{details[item.key]}}</text>
  21. </view>
  22. </view>
  23. <view class="item u-flex" v-if="details.handlerType==2">
  24. <view class="left">申请类型</view>
  25. <view class="con">
  26. <text v-if="details.invoiceLine=='pc'">数电普票</text>
  27. <text v-if="details.invoiceLine=='bs'">数电专票</text>
  28. </view>
  29. </view>
  30. <view class="item u-flex" v-if="details.errReason&&details.status==3">
  31. <view class="left">开票失败原因</view>
  32. <view class="con">
  33. {{details.errReason}}
  34. </view>
  35. </view>
  36. <view class="item u-flex" v-if="details.redErrReason&&details.status==7">
  37. <view class="left">冲红失败原因</view>
  38. <view class="con">
  39. {{details.redErrReason}}
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="page-bottom" v-if="details.status===3||details.status===4||details.status===6">
  45. <view class="inner">
  46. <view class="btn active" v-if="cansubmit" @click="submitorder">重新开票</view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. import { systemInfo } from "@/mixin.js";
  53. export default {
  54. mixins: [systemInfo], // 使用mixin
  55. data() {
  56. return {
  57. staticUrl:this.$commonConfig.staticUrl,
  58. orderId:'',
  59. details:{},
  60. detailsInfo:{//1:个人,2:企业
  61. 1:[
  62. {name:'抬头类型',key:'handlerType'},
  63. {name:'抬头名称',key:'name'},
  64. // {name:'税 号',key:'creditCode'},
  65. {name:'开票金额 ',key:'invoiceAmount'},
  66. {name:'电子邮箱 ',key:'email'},
  67. {name:'开具状态 ',key:'status'},
  68. ],
  69. 2:[
  70. {name:'抬头类型',key:'handlerType'},
  71. {name:'抬头名称',key:'name'},
  72. {name:'税号',key:'creditCode'},
  73. {name:'开票金额 ',key:'invoiceAmount'},
  74. {name:'电子邮箱 ',key:'email'},
  75. {name:'开具状态 ',key:'status'},
  76. // {name:'失败原因 ',key:'errReason'}
  77. ],
  78. },
  79. cansubmit:true,
  80. formData:{
  81. orderId:'',
  82. invoiceAmount:'',
  83. invoiceHandler:{
  84. handlerType:'',
  85. name:'',
  86. email:''
  87. }
  88. }
  89. }
  90. },
  91. onShow() {
  92. if(this.orderId){
  93. this.getInvoiceDetail();
  94. }
  95. },
  96. onLoad(page) {
  97. this.orderId = page.id;
  98. this.getSystemInfo();
  99. },
  100. methods: {
  101. leftClick(e){
  102. let pages = getCurrentPages();
  103. if(pages.length==1){
  104. uni.$u.route('/pages/index/index')
  105. }else{
  106. uni.navigateBack()
  107. };
  108. },
  109. getInvoiceDetail(){
  110. this.$u.api.getInvoiceDetail({orderId:this.orderId}).then(res=>{
  111. // console.log('res',res);
  112. this.details = res.data;
  113. }).catch(err=>{
  114. console.log('getInvoiceInfo',err);
  115. })
  116. },
  117. submitorder(){
  118. uni.redirectTo({
  119. url: `/center/invoice?id=${this.orderId}&invoiceLine=${this.details.invoiceLine}`
  120. })
  121. return
  122. // this.formData.orderId =this.details.orderId;
  123. // this.formData.invoiceAmount = this.details.invoiceAmount;
  124. // this.formData.invoiceHandler.handlerType = this.details.handlerType;
  125. // this.formData.invoiceHandler.name = this.details.name;
  126. // this.formData.invoiceHandler.email = this.details.email;
  127. // if(this.details.handlerType===2){//企业
  128. // this.formData.invoiceHandler.creditCode = this.details.creditCode;
  129. // }
  130. // this.$u.api.submitInvoice(this.formData).then(res=>{
  131. // uni.$u.toast(res.msg)
  132. // // uni.navigateBack()
  133. // setTimeout(()=>{
  134. // uni.redirectTo({
  135. // url: `/center/orderdetails?id=${this.orderId}`
  136. // })
  137. // },1500)
  138. // }).catch(err=>{
  139. // console.log('submitorder',err);
  140. // })
  141. }
  142. }
  143. }
  144. </script>
  145. <style>
  146. page{background-color: #F7F7F9;}
  147. </style>
  148. <style lang="scss" scoped>
  149. .block-wrap{
  150. background-color: #fff;
  151. border-radius: 16rpx;
  152. padding: 30rpx 32rpx 30rpx;
  153. margin-bottom: 24rpx;
  154. .title{
  155. font-size: 28rpx;
  156. font-weight: 500;
  157. color: #363636;
  158. margin-bottom: 28rpx;
  159. }
  160. .item{
  161. margin-bottom: 12rpx;
  162. font-size: 28rpx;
  163. font-weight: 400;
  164. color: #363636;
  165. line-height: 40rpx;
  166. .left{
  167. color: #999999;
  168. width: 184rpx;
  169. }
  170. }
  171. }
  172. .page-bottom{
  173. $height:98rpx;
  174. position: relative;
  175. z-index: 1001;
  176. height: $height;
  177. padding: 24rpx 20rpx;
  178. .inner{
  179. position: fixed;
  180. background-color: transparent;
  181. height: $height;
  182. left: 0;
  183. right: 0;
  184. bottom: 0;
  185. padding: 24rpx 20rpx;
  186. // box-shadow: 0rpx -4rpx 12rpx 0rpx rgba(215,215,215,0.5);
  187. .btn{
  188. font-size: 28rpx;
  189. height: 100%;
  190. line-height: $height;
  191. border-radius: 50rpx;
  192. padding: 0 50rpx;
  193. background-color: #eee;
  194. color: #333;
  195. text-align: center;
  196. &.active{
  197. background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
  198. color: #fff;
  199. }
  200. }
  201. }
  202. }
  203. </style>