index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. <template>
  2. <view :style="viewColor">
  3. <view class="add_invoicing" :class="invoice.invoice==true?'on':''">
  4. <view class='title'>选择发票<text class='iconfont icon-guanbi' @tap='close'></text></view>
  5. <form @submit="formSubmit" report-submit="true">
  6. <view class="panel">
  7. <view v-if="receipt_title_type == '1'" class="acea-row row-middle">
  8. <view>发票类型</view>
  9. <input name="receipt_type" :value="typeName" disabled="true" />
  10. </view>
  11. <view v-if="receipt_title_type == '2'" class="acea-row row-middle">
  12. <view>发票类型</view>
  13. <input name="receipt_type" :value="typeName" disabled="true" @click="callType" />
  14. <text class="iconfont icon-xiangyou"></text>
  15. </view>
  16. <view class="acea-row row-middle">
  17. <view>抬头类型</view>
  18. <radio-group name="receipt_title_type" @change="changeHeader">
  19. <label>
  20. <radio value="1" :checked="receipt_title_type == '1' ? true : false" /><text>个人</text>
  21. </label>
  22. <label>
  23. <radio value="2" :checked="receipt_title_type == '2' ? true : false" /><text>企业</text>
  24. </label>
  25. </radio-group>
  26. </view>
  27. <view class="acea-row row-middle">
  28. <view>发票抬头</view>
  29. <input name="receipt_title" :value="receipt_title" :maxlength="20" placeholder="需要开具发票的企业名称"/>
  30. <text class="iconfont icon-xiangyou" @click="callTitle" ></text>
  31. </view>
  32. <view v-show="receipt_title_type == '2'" class="acea-row row-middle">
  33. <view>税号</view>
  34. <input name="duty_paragraph" :value="duty_paragraph" placeholder="纳税人识别号" />
  35. </view>
  36. <view class="acea-row row-middle">
  37. <view>邮箱</view>
  38. <input name="email" :value="email" placeholder="您的联系邮箱" />
  39. </view>
  40. </view>
  41. <view v-show="receipt_title_type == '2' && receipt_type == '2'" class="panel">
  42. <view class="acea-row row-middle">
  43. <view>开户银行</view>
  44. <input name="bank_name" :value="bank_name" placeholder="您的开户银行" />
  45. </view>
  46. <view class="acea-row row-middle">
  47. <view>银行账号</view>
  48. <input name="bank_code" :value="bank_code" placeholder="您的银行账号" />
  49. </view>
  50. <view class="acea-row row-middle">
  51. <view>企业地址</view>
  52. <input name="address" :value="address" placeholder="您所在的企业地址" />
  53. </view>
  54. <view class="acea-row row-middle">
  55. <view>企业电话</view>
  56. <input name="tel" :value="tel" placeholder="您的企业电话" />
  57. </view>
  58. </view>
  59. <view class="btn-wrap">
  60. <button class="button" form-type="submit">提交申请</button>
  61. <button class="back" @tap="noInvoice">不开发票</button>
  62. </view>
  63. </form>
  64. <view :class="{ mask: popupType || popupTitle }"></view>
  65. <view class="popup" :class="{ on: popupType }">
  66. <view class="title">发票类型选择<text class="iconfont icon-guanbi" @click="closeType"></text></view>
  67. <scroll-view scroll-y="true">
  68. <radio-group name="invoice-type" @change="changeType">
  69. <label v-for="item in invoiceTypeList" :key="item.type" class="acea-row row-middle">
  70. <view class="text">
  71. <view>{{ item.name }}</view>
  72. <view class="info">{{ item.info }}</view>
  73. </view>
  74. <radio :value="item.type" :checked="receipt_type == item.type ? true : false" />
  75. </label>
  76. </radio-group>
  77. </scroll-view>
  78. <button @tap="closeType">确定</button>
  79. </view>
  80. <view class="popup" :class="{ on: popupTitle }">
  81. <view class="title">抬头选择<text class="iconfont icon-guanbi" @click="closeTitle"></text></view>
  82. <scroll-view v-if="invoiceList.length > 0" scroll-y="true">
  83. <radio-group name="invoice-title" @change="changeTitle">
  84. <template v-for="item in invoiceList">
  85. <label :key="item.user_receipt_id" class="acea-row row-middle">
  86. <view class="text">
  87. <view class="acea-row row-middle">
  88. <view class="name">{{ item.receipt_title }}</view>
  89. <view v-if="item.is_default" class="label">默认</view>
  90. </view>
  91. <view class="type" :class="{ special: item.receipt_type == '2'}">{{ item.receipt_type == 1 ? '普通发票' : '专用发票'}}</view>
  92. </view>
  93. <radio :value="item.user_receipt_id" :checked="item.user_receipt_id == invoice_id ? true : false" />
  94. </label>
  95. </template>
  96. </radio-group>
  97. </scroll-view>
  98. <view v-else class="nothing">
  99. <image src="../../static/images/noInvoice.png"></image>
  100. <view class="nothing_text">您还没有添加发票信息哟~</view>
  101. </view>
  102. <button v-if="invoice.add" @tap="addTitle">添加新的抬头</button>
  103. <button v-else @tap="close" class="btn-default">不开发票</button>
  104. </view>
  105. </view>
  106. <view class='mask' catchtouchmove="true" :hidden='invoice.invoice==false' @tap='close'></view>
  107. </view>
  108. </template>
  109. <script>
  110. // +----------------------------------------------------------------------
  111. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  112. // +----------------------------------------------------------------------
  113. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  114. // +----------------------------------------------------------------------
  115. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  116. // +----------------------------------------------------------------------
  117. // | Author: CRMEB Team <admin@crmeb.com>
  118. // +----------------------------------------------------------------------
  119. import { invoiceDefault, invoice, invoiceDetail } from '@/api/user.js';
  120. import { mapGetters } from "vuex";
  121. export default {
  122. props: {
  123. invoice: {
  124. type: Object,
  125. default: function() {
  126. return {
  127. invoice: false,
  128. mer_id: 0,
  129. };
  130. }
  131. }
  132. },
  133. computed: { ...mapGetters(['viewColor'])},
  134. data() {
  135. return {
  136. id: '',
  137. receipt_title_type: '1',
  138. receipt_type: '1',
  139. drawer_phone: '',
  140. receipt_title: '',
  141. duty_paragraph: '',
  142. tel: '',
  143. address: '',
  144. bank_name: '',
  145. bank_code: '',
  146. is_default: 0,
  147. email: '',
  148. isDefault: [],
  149. typeName: '增值税电子普通发票',
  150. popupType: false,
  151. popupTitle: false,
  152. invoiceTypeList: [{
  153. type: '1',
  154. name: '增值税电子普通发票',
  155. info: '默认发送至所提供的电子邮件'
  156. },
  157. {
  158. type: '2',
  159. name: '增值税专用发票',
  160. info: '纸质发票开出后将以邮寄形式交付'
  161. }
  162. ],
  163. special_invoice: true,
  164. invoice_func: true,
  165. invoiceList: [],
  166. invoice_checked: '',
  167. invoice_id: '',
  168. order_id: '',
  169. news: '',
  170. cartId: '',
  171. pinkId: '',
  172. couponId: '',
  173. addressId: '',
  174. invoiceData: {},
  175. formvalidate: false
  176. }
  177. },
  178. watch: {
  179. },
  180. onLoad(option) {
  181. this.news = option.news;
  182. this.cartId = option.cartId;
  183. this.pinkId = option.pinkId;
  184. this.couponId = option.couponId;
  185. this.addressId = option.addressId;
  186. if (option.special_invoice == 'false') {
  187. this.$set(this, 'special_invoice', false);
  188. }
  189. },
  190. onShow(){
  191. this.getInvoiceDefault();
  192. this.popupTitle = false;
  193. },
  194. methods: {
  195. getInvoiceList() {
  196. let params = {
  197. // receipt_title_type: this.receipt_title_type,
  198. // receipt_type: this.receipt_type
  199. }
  200. invoice().then(res => {
  201. for (let i = 0; i < res.data.length; i++) {
  202. res.data[i].user_receipt_id = res.data[i].user_receipt_id.toString();
  203. if (res.data[i].is_default) {
  204. this.invoice_id = res.data[i].user_receipt_id;
  205. }
  206. }
  207. this.$set(this, 'invoiceList', res.data);
  208. }).catch(err => {
  209. this.$util.Tips({
  210. title: err
  211. });
  212. });
  213. },
  214. getInvoiceDefault() {
  215. let params = {
  216. is_default: 1,
  217. // receipt_title_type: this.receipt_title_type,
  218. // receipt_type: this.receipt_type
  219. }
  220. invoice(params).then(res => {
  221. let data = res.data[0];
  222. this.typeName = data.receipt_type == '1' ? '增值税电子普通发票' : '增值税专用发票'
  223. this.receipt_title_type = data.receipt_title_type;
  224. this.receipt_type = data.receipt_type ;
  225. this.receipt_title = data.receipt_title;
  226. // this.drawer_phone = res.data.drawer_phone;
  227. this.email = data.email;
  228. this.duty_paragraph = data.duty_paragraph;
  229. this.bank_name = data.bank_name;
  230. this.bank_code = data.bank_code;
  231. this.address = data.address;
  232. this.tel = data.tel;
  233. // this.is_default = data.is_default;
  234. this.invoice_id = data.user_receipt_id.toString();
  235. }).catch(err => {});
  236. },
  237. getInvoiceDetail(id){
  238. invoiceDetail(id).then(res => {
  239. uni.hideLoading();
  240. this.receipt_title_type = res.data.receipt_title_type;
  241. this.receipt_type = res.data.receipt_type;
  242. this.typeName = this.receipt_type == '1' ? '增值税电子普通发票' : '增值税专用发票'
  243. this.receipt_title = res.data.receipt_title;
  244. // this.drawer_phone = res.data.drawer_phone;
  245. this.email = res.data.email;
  246. this.duty_paragraph = res.data.duty_paragraph;
  247. this.bank_name = res.data.bank_name;
  248. this.bank_code = res.data.bank_code;
  249. this.address = res.data.address;
  250. this.tel = res.data.tel;
  251. this.is_default = res.data.is_default;
  252. }).catch(err => {
  253. uni.hideLoading();
  254. this.$util.Tips({
  255. title: err
  256. });
  257. });
  258. },
  259. close: function() {
  260. if(this.formvalidate){
  261. this.$emit('changeInvoiceClose',this.invoiceData)
  262. }else{
  263. this.$emit('changeInvoiceClose','');
  264. }
  265. },
  266. noInvoice: function(){
  267. uni.setStorage({
  268. key:'invoice_Data',
  269. data:{},
  270. success: function(){}
  271. })
  272. this.$emit('changeInvoiceClose','');
  273. },
  274. callType() {
  275. this.popupType = true;
  276. },
  277. changeType(e) {
  278. this.receipt_type = e.detail.value;
  279. this.typeName = this.invoiceTypeList.find(value => {
  280. return value.type == this.receipt_type;
  281. }).name;
  282. },
  283. closeType() {
  284. this.popupType = false;
  285. },
  286. callTitle() {
  287. this.popupTitle = true;
  288. },
  289. changeTitle(e) {
  290. this.invoice_id = e.detail.value.toString();
  291. this.getInvoiceDetail(e.detail.value)
  292. this.popupTitle = false;
  293. },
  294. addTitle() {
  295. this.popupType = false;
  296. this.popupTitle = false;
  297. uni.navigateTo({
  298. url: '/pages/users/user_invoice_form/index?mer_id='+this.invoice.mer_id
  299. });
  300. },
  301. closeTitle() {
  302. this.popupTitle = false;
  303. },
  304. changeHeader(e) {
  305. this.receipt_title_type = e.detail.value;
  306. if(e.detail.value == 1){
  307. this.receipt_type = 1;
  308. this.typeName = '增值税电子普通发票'
  309. }
  310. this.receipt_type
  311. },
  312. changeDefault(e) {
  313. this.is_default = e.detail.value.length ? 1 : 0;
  314. },
  315. // 提交发票数据
  316. formSubmit(e) {
  317. let that = this,
  318. value = e.detail.value;
  319. if (!value.receipt_title_type) return that.$util.Tips({
  320. title: '请填写发票抬头'
  321. });
  322. if (!value.email) return that.$util.Tips({
  323. title: '请填写邮箱'
  324. });
  325. if (!/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test(value.email)) return that.$util.Tips({
  326. title: '请输入正确的邮箱'
  327. });
  328. if(value.receipt_title_type == 2){
  329. if (!value.duty_paragraph) return that.$util.Tips({
  330. title: '请填写税号'
  331. });
  332. if(value.receipt_type == '增值税专用发票'){
  333. if (!value.bank_name) return that.$util.Tips({
  334. title: '请填写开户行'
  335. });
  336. if (!value.bank_code) return that.$util.Tips({
  337. title: '请填写银行账号'
  338. });
  339. if (!value.address) return that.$util.Tips({
  340. title: '请填写企业地址'
  341. });
  342. if (!value.tel) return that.$util.Tips({
  343. title: '请填写企业电话'
  344. });
  345. if(!/^(\d{9}|\d{14}|\d{18})$/.test(value.bank_code)){
  346. return this.$util.Tips({
  347. title: '请输入正确的银行账号'
  348. });
  349. }
  350. if(!/(^(\d{3,4})?\d{7,8})$|(13[0-9]{9})/.test(value.tel)){
  351. return this.$util.Tips({
  352. title: '请输入正确的电话号码'
  353. });
  354. }
  355. }
  356. }
  357. that.formvalidate = true;
  358. value.mer_id = that.invoice.mer_id;
  359. value.receipt_type = that.receipt_type;
  360. that.invoiceData = value
  361. uni.setStorage({
  362. key:'invoice_Data',
  363. data: [that.invoiceData],
  364. success: function(){
  365. }
  366. })
  367. that.$emit('changeInvoiceClose',that.invoiceData)
  368. }
  369. }
  370. }
  371. </script>
  372. <style lang="scss" scoped>
  373. .add_invoicing{
  374. position: fixed;
  375. bottom: 0;
  376. width: 100%;
  377. left: 0;
  378. background-color: #fff;
  379. z-index: 77;
  380. border-radius: 16rpx 16rpx 0 0;
  381. padding-bottom: 20rpx;
  382. transform: translate3d(0, 100%, 0);
  383. transition: all .3s cubic-bezier(.25, .5, .5, .9);
  384. }
  385. .add_invoicing.on {
  386. transform: translate3d(0, 0, 0);
  387. }
  388. .add_invoicing .title {
  389. font-size: 32rpx;
  390. font-weight: bold;
  391. text-align: center;
  392. height: 123rpx;
  393. line-height: 123rpx;
  394. position: relative;
  395. }
  396. .add_invoicing .title .iconfont {
  397. position: absolute;
  398. right: 30rpx;
  399. color: #8a8a8a;
  400. font-size: 35rpx;
  401. }
  402. form {
  403. font-size: 28rpx;
  404. color: #282828;
  405. }
  406. form input, form radio-group {
  407. flex: 1;
  408. text-align: right;
  409. }
  410. form input {
  411. font-size: 26rpx;
  412. }
  413. form label {
  414. margin-right: 50rpx;
  415. }
  416. form radio {
  417. margin-right: 8rpx;
  418. }
  419. form checkbox-group {
  420. height: 90rpx;
  421. }
  422. form checkbox {
  423. margin-right: 20rpx;
  424. }
  425. /deep/radio .uni-radio-input.uni-radio-input-checked {
  426. border: 1px solid var(--view-theme) !important;
  427. background-color: var(--view-theme) !important
  428. }
  429. form button {
  430. height: 76rpx;
  431. border-radius: 38rpx;
  432. margin: 16rpx 30rpx;
  433. background-color: var(--view-theme);
  434. font-size: 30rpx;
  435. line-height: 76rpx;
  436. color: #FFFFFF;
  437. }
  438. .panel {
  439. padding-right: 30rpx;
  440. padding-left: 30rpx;
  441. background-color: #FFFFFF;
  442. }
  443. .panel~.panel {
  444. margin-top: 14rpx;
  445. }
  446. .panel .acea-row {
  447. height: 90rpx;
  448. }
  449. .panel .acea-row~.acea-row {
  450. border-top: 1px solid #EEEEEE;
  451. }
  452. .input-placeholder {
  453. font-size: 26rpx;
  454. color: #BBBBBB;
  455. }
  456. .icon-xiangyou {
  457. margin-left: 25rpx;
  458. font-size: 18rpx;
  459. color: #BFBFBF;
  460. }
  461. .btn-wrap {
  462. width: 100%;
  463. border-top: 1px solid #F5F5F5;
  464. }
  465. .btn-wrap .button{
  466. height: 86rpx;
  467. line-height: 86rpx;
  468. border-radius: 50rpx;
  469. }
  470. .btn-wrap .back {
  471. border-radius: 50rpx;
  472. height: 86rpx;
  473. line-height: 86rpx;
  474. border: 1rpx solid var(--view-theme);
  475. background: none;
  476. color: var(--view-theme);
  477. }
  478. .popup {
  479. position: fixed;
  480. bottom: 0;
  481. left: 0;
  482. z-index: 99;
  483. width: 100%;
  484. padding-bottom: 100rpx;
  485. border-top-left-radius: 16rpx;
  486. border-top-right-radius: 16rpx;
  487. background-color: #F5F5F5;
  488. overflow: hidden;
  489. transform: translateY(100%);
  490. transition: 0.3s;
  491. }
  492. .popup.on {
  493. transform: translateY(0);
  494. }
  495. .popup .title {
  496. position: relative;
  497. height: 137rpx;
  498. font-size: 32rpx;
  499. line-height: 137rpx;
  500. text-align: center;
  501. }
  502. .popup scroll-view {
  503. height: 466rpx;
  504. padding-right: 30rpx;
  505. padding-left: 30rpx;
  506. box-sizing: border-box;
  507. }
  508. .popup label {
  509. padding: 35rpx 30rpx;
  510. border-radius: 16rpx;
  511. margin-bottom: 20rpx;
  512. background-color: #FFFFFF;
  513. }
  514. .popup .text {
  515. flex: 1;
  516. min-width: 0;
  517. font-size: 28rpx;
  518. color: #282828;
  519. }
  520. .popup .info {
  521. margin-top: 10rpx;
  522. font-size: 22rpx;
  523. color: #909090;
  524. }
  525. .popup .icon-guanbi {
  526. position: absolute;
  527. top: 50%;
  528. right: 30rpx;
  529. z-index: 2;
  530. transform: translateY(-50%);
  531. font-size: 30rpx;
  532. color: #707070;
  533. cursor: pointer;
  534. }
  535. .popup button {
  536. height: 86rpx;
  537. border-radius: 43rpx;
  538. margin-right: 30rpx;
  539. margin-left: 30rpx;
  540. background-color: var(--view-theme);
  541. font-size: 30rpx;
  542. line-height: 86rpx;
  543. color: #FFFFFF;
  544. }
  545. button.btn-default{
  546. background-color: transparent;
  547. color: var(--view-theme);
  548. border: 1px solid var(--view-theme);
  549. }
  550. .popup .text .acea-row {
  551. display: inline-flex;
  552. max-width: 100%;
  553. }
  554. .popup .name {
  555. flex: 1;
  556. overflow: hidden;
  557. white-space: nowrap;
  558. text-overflow: ellipsis;
  559. font-size: 30rpx;
  560. }
  561. .popup .label {
  562. width: 70rpx;
  563. height: 28rpx;
  564. border: 1px solid #E93323;
  565. margin-left: 18rpx;
  566. font-size: 16rpx;
  567. line-height: 26rpx;
  568. text-align: center;
  569. color: #E93323;
  570. }
  571. .popup .type {
  572. width: 124rpx;
  573. height: 42rpx;
  574. margin-top: 14rpx;
  575. background-color: #FCF0E0;
  576. font-size: 24rpx;
  577. line-height: 42rpx;
  578. text-align: center;
  579. color: #D67300;
  580. }
  581. .popup .type.special {
  582. background-color: #FDE9E7;
  583. color: #E93323;
  584. }
  585. .nothing {
  586. margin: 50rpx 0;
  587. text-align: center;
  588. image, uni-image{
  589. width: 400rpx;
  590. height: 260rpx;
  591. }
  592. }
  593. .nothing_text{
  594. margin-top: 20rpx;
  595. color: #999999;
  596. }
  597. </style>