form.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <template>
  2. <zj-page-layout bgColor="#ffffff" hasFooter>
  3. <view class="all-container">
  4. <view class="title">发票明细</view>
  5. <view class="list" v-if="orderType == 'ORDER'">
  6. <view class="item" v-for="(item, index) in orderDetail.orderDetails" :key="index">
  7. <view class="name">{{ item.goodsName }}</view>
  8. <view class="right">
  9. <view class="price">¥{{ item.price | priceFilter }}</view>
  10. <view class="num">x{{ item.num }}</view>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="list" v-else>
  15. <view class="item">
  16. <view class="name">{{ orderDetail.increContent }}</view>
  17. <view class="right">
  18. <view class="price">¥{{ orderDetail.amount | priceFilter }}</view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="title mt40">开票信息</view>
  23. <view class="form">
  24. <view class="row">
  25. <view class="label">发票类型</view>
  26. <view class="radio" :class="taxType == 1 ? 'active' : ''" @tap="taxType = 1">电子普通发票</view>
  27. <view class="radio" :class="taxType == 2 ? 'active' : ''" @tap="taxType = 2">专用发票</view>
  28. </view>
  29. <view class="row">
  30. <view class="label">发票内容</view>
  31. <view class="radio" :class="taxContent == 1 ? 'active' : ''" @tap="taxContent = 1">商品明细</view>
  32. <view class="radio" :class="taxContent == 2 ? 'active' : ''" @tap="taxContent = 2">商品类别</view>
  33. </view>
  34. <view class="row">
  35. <view class="label">抬头类型</view>
  36. <view class="radio" :class="headerType == 1 ? 'active' : ''" @tap="headerType = 1">个人</view>
  37. <view class="radio" :class="headerType == 2 ? 'active' : ''" @tap="headerType = 2">单位</view>
  38. </view>
  39. <view class="row">
  40. <view class="label">*抬头名称</view>
  41. <u--textarea placeholder="请输入抬头名称" border="none" autoHeight v-model="name"></u--textarea>
  42. <u-button type="primary" shape="circle" text="获取发票抬头" @click="getInvoice"></u-button>
  43. </view>
  44. <view class="row" v-if="headerType == 2">
  45. <view class="label">*单位税号</view>
  46. <u--input placeholder="请输入单位税号" border="none" v-model="payerNum"></u--input>
  47. </view>
  48. <view class="row">
  49. <view class="label">*收票邮箱</view>
  50. <u--input placeholder="请输入收票邮箱" border="none" v-model="email"></u--input>
  51. </view>
  52. </view>
  53. </view>
  54. <template slot="footer">
  55. <view class="footer-btn-group">
  56. <u-button type="primary" text="申请开票" @click="submitData"></u-button>
  57. </view>
  58. </template>
  59. </zj-page-layout>
  60. </template>
  61. <script>
  62. import wx from 'weixin-js-sdk'
  63. import { isEmail } from '@/common/utils/verify.js'
  64. import { wxConfig, mini_env } from '@/common/utils/util'
  65. export default {
  66. data() {
  67. return {
  68. orderType: null,
  69. orderId: null,
  70. orderDetail: {},
  71. taxType: 1,
  72. taxContent: 1,
  73. headerType: 1,
  74. name: '',
  75. payerNum: '',
  76. email: '',
  77. pamcs: ''
  78. }
  79. },
  80. onLoad(data) {
  81. mini_env(bool => {
  82. if (bool) {
  83. var { orderType, orderId } = data
  84. this.orderType = orderType
  85. this.orderId = orderId
  86. this.getOrderDetail()
  87. if (data.invoice_type) {
  88. this.headerType = data.invoice_type == 1 ? 1 : 2
  89. if (data.invoice_type == 0 && data.invoice_taxNumber) {
  90. this.payerNum = data.invoice_taxNumber || ''
  91. }
  92. }
  93. if (data.invoice_title) {
  94. this.name = data.invoice_title
  95. }
  96. if (data.invoice_taxType) {
  97. this.taxType = Number(data.invoice_taxType) || 1
  98. }
  99. if (data.invoice_taxContent) {
  100. this.taxContent = Number(data.invoice_taxContent) || 1
  101. }
  102. if (data.invoice_email) {
  103. this.email = data.invoice_email
  104. }
  105. } else {
  106. var { orderType, orderId } = data
  107. this.orderType = orderType
  108. this.orderId = orderId
  109. this.getOrderDetail()
  110. wxConfig()
  111. }
  112. })
  113. },
  114. methods: {
  115. getOrderDetail() {
  116. if (this.orderType == 'ORDER') {
  117. this.$api
  118. .get('/order/detail', {
  119. orderId: this.orderId
  120. })
  121. .then(res => {
  122. this.orderDetail = res.data || {}
  123. })
  124. } else {
  125. this.$api
  126. .post('/increConfig/detailIncre', {
  127. id: this.orderId
  128. })
  129. .then(res => {
  130. this.orderDetail = res.data || {}
  131. })
  132. }
  133. },
  134. submitData() {
  135. if (!this.name) return this.$toast('请输入抬头名称')
  136. if (this.headerType == 2 && !this.payerNum) return this.$toast('请输入单位税号')
  137. if (!this.email) return this.$toast('请输入收票邮箱')
  138. if (this.email && !isEmail(this.email)) return this.$toast('收票邮箱格式不正确')
  139. this.$api
  140. .postJson('/user/order/tax/save', {
  141. userId: this.$store.state.user.userId,
  142. orderType: this.orderType,
  143. orderId: this.orderId,
  144. taxType: this.taxType == 1 ? false : true,
  145. content: this.taxContent == 1 ? '商品明细' : '商品类别',
  146. type: this.headerType == 1 ? false : true,
  147. name: this.name,
  148. taxNo: this.payerNum,
  149. receiverEmail: this.email
  150. })
  151. .then(res => {
  152. this.$navToPage(
  153. {
  154. url: '/packageMine/pages/invoice/result?orderTaxId=' + res.data.orderTaxId
  155. },
  156. 'redirectTo'
  157. )
  158. })
  159. },
  160. getInvoice() {
  161. mini_env(bool => {
  162. if (bool) {
  163. uniWebview.navigateTo({
  164. url: `/pages/getInvoiceTitle/getInvoiceTitle?url=${encodeURIComponent(
  165. window.location.href +
  166. `&invoice_taxType=${this.taxType}&invoice_taxContent=${this.taxContent}&invoice_email=${this.email}`
  167. )}`
  168. })
  169. uni.navigateBack()
  170. } else {
  171. wx.invoke(
  172. 'chooseInvoiceTitle',
  173. {
  174. scene: 1
  175. },
  176. res => {
  177. if (res.choose_invoice_title_info || res.chooseInvoiceTitleInfo) {
  178. const data = JSON.parse(res.choose_invoice_title_info || res.chooseInvoiceTitleInfo)
  179. this.headerType = data.type == 1 ? 1 : 2
  180. this.name = data.title
  181. if (data.type == 0) {
  182. this.payerNum = data.taxNumber || ''
  183. }
  184. }
  185. }
  186. )
  187. }
  188. })
  189. }
  190. }
  191. }
  192. </script>
  193. <style scoped lang="scss">
  194. .all-container {
  195. padding: 30rpx;
  196. .title {
  197. font-weight: 600;
  198. font-size: 36rpx;
  199. }
  200. .list {
  201. .item {
  202. display: flex;
  203. margin-top: 20rpx;
  204. .name {
  205. font-size: 28rpx;
  206. flex: 1;
  207. }
  208. .right {
  209. margin-left: 30rpx;
  210. text-align: right;
  211. .price {
  212. font-size: 28rpx;
  213. }
  214. .num {
  215. font-size: 28rpx;
  216. color: $sec-font;
  217. margin-top: 10rpx;
  218. }
  219. }
  220. }
  221. }
  222. .form {
  223. .row {
  224. display: flex;
  225. align-items: center;
  226. margin-top: 30rpx;
  227. .label {
  228. font-size: 28rpx;
  229. color: $sec-font;
  230. margin-right: 30rpx;
  231. }
  232. .radio {
  233. width: 230rpx;
  234. height: 60rpx;
  235. border-radius: 60rpx;
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. background: #f1f1f1;
  240. margin-right: 30rpx;
  241. font-size: 28rpx;
  242. box-sizing: border-box;
  243. &:last-child {
  244. margin-right: 0;
  245. }
  246. &.disabled {
  247. background: #f8f8f8;
  248. color: $sec-font;
  249. }
  250. &.active {
  251. background: #ffffff;
  252. color: $theme-color;
  253. border: 1px solid $theme-color;
  254. }
  255. }
  256. ::v-deep .u-input {
  257. height: 60rpx;
  258. }
  259. ::v-deep .u-textarea {
  260. padding: 0;
  261. }
  262. ::v-deep .u-button {
  263. width: 190rpx;
  264. height: 60rpx;
  265. }
  266. }
  267. }
  268. }
  269. </style>