invoice.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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. <u-tabs
  9. :list="tabsList"
  10. lineColor="#EE0D0D"
  11. :current="tabsCurrent"
  12. :activeStyle="{color:'#EE0D0D','font-weight': '600','font-size':'30rpx'}"
  13. :inactiveStyle="{color:'#7F7F7F'}"
  14. itemStyle="width:50%;box-sizing:border-box;padding:24rpx;"
  15. @click="tabsClick"></u-tabs>
  16. <view class="block-wrap" style="margin-top: 32rpx;">
  17. <view class="form-item" v-if="tabsCurrent===0" @click="showInvoiceLine=true">
  18. <view class="til">
  19. <text>*</text>申请类型
  20. </view>
  21. <u--input placeholder="请选择申请类型" readonly border="surround" v-model="invoiceLineName" ></u--input>
  22. <!-- <view class="item-value">
  23. <text>{{formData.invoiceLine}}</text>
  24. </view> -->
  25. </view>
  26. <u-picker :show="showInvoiceLine" :columns="invoiceLineList" keyName="label" :immediateChange="true" @cancel="cancelInvoiceLine" @confirm="confirmInvoiceLine" ></u-picker>
  27. <view class="form-item">
  28. <view class="til">
  29. <text>*</text>抬头名称
  30. </view>
  31. <u--input placeholder="请输入名称" border="surround" v-model="formData.name" ></u--input>
  32. </view>
  33. <view class="form-item" v-if="tabsCurrent===0">
  34. <view class="til">
  35. <text>*</text>税号
  36. </view>
  37. <u--input placeholder="请输入税号 " border="surround" v-model="formData.creditCode" ></u--input>
  38. </view>
  39. </view>
  40. <view class="block-wrap amount u-flex u-row-between">
  41. <view class="til">发票金额</view>
  42. <view class="con">¥{{invoiceInfo.invoiceAmount}}</view>
  43. </view>
  44. <view class="block-wrap">
  45. <view class="form-item">
  46. <view class="til">
  47. <text>*</text>电子邮箱
  48. </view>
  49. <u--input placeholder="请输入电子邮箱" border="surround" v-model="formData.email" ></u--input>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="page-bottom">
  54. <view class="inner">
  55. <view class="btn active" v-if="cansubmit" @click="submitorder">提交</view>
  56. <view class="btn" @click="$u.toast('请完整填写表单')" v-else>提交</view>
  57. </view>
  58. </view>
  59. </view>
  60. </template>
  61. <script>
  62. import { systemInfo } from "@/mixin.js";
  63. export default {
  64. mixins: [systemInfo], // 使用mixin
  65. data() {
  66. return {
  67. staticUrl:this.$commonConfig.staticUrl,
  68. orderId:'',
  69. tabsCurrent:0,
  70. tabsList:[
  71. {name:'企业',status:'0'},
  72. {name:'个人',status:'1'}
  73. ],
  74. invoiceInfo:{},
  75. handlerList:[],
  76. formData:{
  77. name:'',
  78. creditCode :'',
  79. email:'',
  80. invoiceLine:'',
  81. },
  82. invoiceLine:'',
  83. showInvoiceLine:false,
  84. invoiceLineName:'',
  85. invoiceLineList:[[{label:'数电专票',id:'bs'},{label:'数电普票',id:'pc'}]]
  86. }
  87. },
  88. onShow() {
  89. },
  90. onLoad(page) {
  91. this.orderId = page.id;
  92. this.invoiceLine = page.invoiceLine;
  93. this.getSystemInfo();
  94. this.getInvoiceInfo();
  95. },
  96. computed: {
  97. // 是否全选
  98. cansubmit() {
  99. if(this.tabsCurrent===0){
  100. return this.formData.name && this.formData.creditCode && uni.$u.test.email(this.formData.email)&& this.invoiceLineName;
  101. }else{
  102. return this.formData.name && uni.$u.test.email(this.formData.email);
  103. }
  104. },
  105. },
  106. methods: {
  107. leftClick(e){
  108. let pages = getCurrentPages();
  109. if(pages.length==1){
  110. uni.$u.route('/pages/index/index')
  111. }else{
  112. uni.navigateBack()
  113. };
  114. },
  115. tabsClick(item){
  116. this.tabsCurrent = item.index;
  117. // console.log('item',item);
  118. this.setDefault();
  119. },
  120. getInvoiceInfo(){
  121. this.$u.api.getInvoiceInfo({orderId:this.orderId}).then(res=>{
  122. // console.log('res',res);
  123. this.invoiceInfo = res.data;
  124. this.handlerList = res.data.handlerList||[];
  125. this.setDefault();
  126. }).catch(err=>{
  127. console.log('getInvoiceInfo',err);
  128. })
  129. },
  130. setDefault(){
  131. if(this.handlerList.length>0){
  132. let handlerType1 = this.handlerList.find(handler => handler.handlerType === 1) || {};//个人
  133. let handlerType2 = this.handlerList.find(handler => handler.handlerType === 2) || {};//企业
  134. if(this.tabsCurrent===0){//企业
  135. this.formData.name = handlerType2.name||null;
  136. this.formData.creditCode = handlerType2.creditCode||null;
  137. this.formData.email = handlerType2.email||null;
  138. this.formData.invoiceLine = this.invoiceLine||null;
  139. if(this.formData.invoiceLine=='bs'){
  140. this.invoiceLineName = '数电专票'
  141. }else if(this.formData.invoiceLine=='pc'){
  142. this.invoiceLineName = '数电普票'
  143. }
  144. }else{
  145. this.formData.name = handlerType1.name||null;
  146. this.formData.email = handlerType1.email||null;
  147. }
  148. }
  149. },
  150. submitorder(){
  151. let params = {
  152. orderId:this.orderId,
  153. invoiceAmount:this.invoiceInfo.invoiceAmount,
  154. invoiceHandler:{
  155. handlerType:this.tabsCurrent===0?2:1,
  156. name:this.formData.name,
  157. email:this.formData.email,
  158. // mobile:this.formData.mobile
  159. },
  160. invoiceSource:0,//开票来源;0-小程序 1-团购H5 2-线下
  161. };
  162. if(this.tabsCurrent===0){//企业
  163. params.invoiceHandler.creditCode = this.formData.creditCode;
  164. params.invoiceLine = this.formData.invoiceLine;
  165. }
  166. this.$u.api.submitInvoice(params).then(res=>{
  167. uni.$u.toast(res.msg)
  168. // uni.navigateBack()
  169. setTimeout(()=>{
  170. uni.redirectTo({
  171. url: `/center/orderdetails?id=${this.orderId}`
  172. })
  173. },1500)
  174. }).catch(err=>{
  175. console.log('submitorder',err);
  176. })
  177. },
  178. cancelInvoiceLine(){
  179. this.showInvoiceLine = false;
  180. },
  181. confirmInvoiceLine(e){
  182. this.showInvoiceLine = false;
  183. console.log('confirmInvoiceLine id',e.value[0].id);
  184. console.log('confirmInvoiceLine label',e.value[0].label);
  185. this.formData.invoiceLine = e.value[0].id;
  186. this.invoiceLineName = e.value[0].label;
  187. }
  188. }
  189. }
  190. </script>
  191. <style>
  192. page{background-color: #F7F7F9;}
  193. </style>
  194. <style lang="scss" scoped>
  195. .block-wrap{
  196. background-color: #fff;
  197. border-radius: 16rpx;
  198. padding: 22rpx 32rpx 30rpx;
  199. margin-bottom: 24rpx;
  200. .form-item{
  201. margin-bottom: 22rpx;
  202. .til{
  203. font-size: 28rpx;
  204. font-family: PingFangSC, PingFang SC;
  205. font-weight: 400;
  206. color: #333;
  207. margin-bottom: 12rpx;
  208. text{
  209. color: #EF0E0E;
  210. }
  211. }
  212. }
  213. &.amount{
  214. padding: 26rpx 32rpx;
  215. .til{
  216. margin-bottom: 0;
  217. }
  218. .con{
  219. font-size: 28rpx;
  220. font-family: SourceHanSansCN, SourceHanSansCN;
  221. font-weight: bold;
  222. color: #EF0E0E;
  223. }
  224. }
  225. }
  226. .page-bottom{
  227. $height:98rpx;
  228. position: relative;
  229. z-index: 1001;
  230. height: $height;
  231. padding: 24rpx 20rpx;
  232. .inner{
  233. position: fixed;
  234. background-color: transparent;
  235. height: $height;
  236. left: 0;
  237. right: 0;
  238. bottom: 0;
  239. padding: 24rpx 20rpx;
  240. // box-shadow: 0rpx -4rpx 12rpx 0rpx rgba(215,215,215,0.5);
  241. .btn{
  242. font-size: 28rpx;
  243. height: 100%;
  244. line-height: $height;
  245. border-radius: 50rpx;
  246. padding: 0 50rpx;
  247. background-color: #eee;
  248. color: #333;
  249. text-align: center;
  250. &.active{
  251. background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
  252. color: #fff;
  253. }
  254. }
  255. }
  256. }
  257. </style>