InvoiceApplication.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. <template>
  2. <view class="container">
  3. <view v-show="menuCurrent === 0">
  4. <view class="header-box">
  5. <view class="search-box">
  6. <u-search
  7. v-model="searchForm.keyword"
  8. :clearabled="true"
  9. bg-color="#E5E5E5"
  10. :input-style="searchInputStyle"
  11. placeholder="搜索您想要的内容"
  12. ></u-search>
  13. </view>
  14. <view class="tab-box">
  15. <u-tabs
  16. name="label"
  17. :list="searchType"
  18. :is-scroll="true"
  19. v-model="searchForm.type"
  20. @change="onSearchTypeChange"
  21. font-size="24"
  22. :bold="false"
  23. inactive-color="#000000"
  24. active-color="#000000"
  25. :bar-style="{'background-color': '#2979ff'}"
  26. :gutter="25"
  27. height="45"
  28. ></u-tabs>
  29. </view>
  30. </view>
  31. <view class="list-box">
  32. <u-checkbox-group>
  33. <view class="list-item-box" v-for="(item, index) in list" :key="item.id">
  34. <view class="checkbox-box">
  35. <u-checkbox
  36. @change="onCheckboxChange(item)"
  37. v-model="item.checked"
  38. :name="item.id"
  39. shape="circle"
  40. ></u-checkbox>
  41. </view>
  42. <view class="main-box" @click="onListItemClick(item, index)">
  43. <view class="title-box">
  44. {{item.title}}
  45. </view>
  46. <view class="main-box">
  47. <view class="info-box">
  48. <view class="info-item-box">
  49. <view class="label">
  50. 订单编号:
  51. </view>
  52. <view class="text">
  53. {{item.number}}
  54. </view>
  55. </view>
  56. <view class="info-item-box">
  57. <view class="label">
  58. 订单时间:
  59. </view>
  60. <view class="text">
  61. {{item.time}}
  62. </view>
  63. </view>
  64. </view>
  65. <view class="price-box">
  66. <view class="text" v-if="item.status === 1">
  67. 实付款:&nbsp;¥{{item.price}}元
  68. </view>
  69. <view class="button" v-if="item.status === 0">
  70. 已关闭
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. </u-checkbox-group>
  77. </view>
  78. </view>
  79. <view v-show="menuCurrent === 1">
  80. <view class="header-box">
  81. <view class="search-box">
  82. <u-search
  83. v-model="searchForm2.keyword"
  84. :clearabled="true"
  85. bg-color="#E5E5E5"
  86. :input-style="searchInputStyle"
  87. placeholder="搜索您想要的内容"
  88. ></u-search>
  89. </view>
  90. </view>
  91. <view class="list-box">
  92. <view class="list-card-box" v-for="item in list2" :key="item.id" @click="onToInvoiceDetail(item)">
  93. <view class="main-box">
  94. <view class="info-box">
  95. <view class="title">
  96. {{item.name}}
  97. </view>
  98. <view class="type">
  99. {{item.type}}
  100. </view>
  101. <view class="info">
  102. <view class="info-item">
  103. <view class="label">
  104. 发票号码:
  105. </view>
  106. <view class="text">
  107. {{item.number}}
  108. </view>
  109. </view>
  110. <view class="info-item">
  111. <view class="label">
  112. 申请时间:
  113. </view>
  114. <view class="text">
  115. {{item.time}}
  116. </view>
  117. </view>
  118. </view>
  119. </view>
  120. <view class="price-box">
  121. <view class="text">
  122. 发票金额:&nbsp;¥{{item.price}}元
  123. </view>
  124. </view>
  125. </view>
  126. <view class="status-box">
  127. <view class="status-item error">
  128. {{ item.status ? '已开票' : '开票中' }}
  129. </view>
  130. <view :class="['status-item', item.status ? 'primary' : 'info']">
  131. 发送至邮箱
  132. </view>
  133. </view>
  134. </view>
  135. </view>
  136. </view>
  137. <view class="function-block" v-if="menuCurrent === 0"></view>
  138. <view class="menu-block"></view>
  139. <view class="bottom-box">
  140. <view class="function-box" v-if="menuCurrent === 0">
  141. <view class="checkbox-box">
  142. <u-checkbox
  143. @change="onAllCheckboxChange"
  144. v-model="isAllChecked"
  145. name="all"
  146. shape="circle"
  147. >
  148. <text class="text">全选</text>
  149. </u-checkbox>
  150. </view>
  151. <view class="price-box">
  152. <view class="desc-box" v-if="priceInfo.count > 0">
  153. 已选择{{priceInfo.count}}单
  154. </view>
  155. <view class="info-box">
  156. <view class="label">
  157. 总金额:
  158. </view>
  159. <view class="text">
  160. ¥{{priceInfo.price}}元
  161. </view>
  162. </view>
  163. </view>
  164. <view class="button-box">
  165. <u-button :disabled="priceInfo.count === 0" class="button" type="error" shape="circle" size="mini" :custom-style="customButtonStyle" @click="onApplyForBilling()">申请开票</u-button>
  166. </view>
  167. </view>
  168. <view class="menu-box">
  169. <view class="menu-item-box" :class="{'is-active': menuCurrent === 0}" @click="onMenuClick(0)">
  170. <view class="iconfont icon-kaipiao"></view>
  171. <view class="text">开票</view>
  172. </view>
  173. <view class="menu-item-box" :class="{'is-active': menuCurrent === 1}" @click="onMenuClick(1)">
  174. <view class="iconfont icon-kaipiaojilu"></view>
  175. <view class="text">开票记录</view>
  176. </view>
  177. </view>
  178. </view>
  179. </view>
  180. </template>
  181. <script setup>
  182. import { ref, computed } from 'vue'
  183. import { onLoad } from '@dcloudio/uni-app'
  184. const customButtonStyle = {
  185. height: '40rpx',
  186. lineHeight: '40rpx',
  187. padding: '0 30rpx'
  188. }
  189. const searchInputStyle = {
  190. backgroundColor: '#E5E5E5'
  191. }
  192. const searchType = [
  193. {
  194. label: '全部',
  195. value: 0
  196. },
  197. {
  198. label: '市场研究',
  199. value: 1
  200. },
  201. {
  202. label: '继续教育',
  203. value: 2
  204. },
  205. {
  206. label: '会费',
  207. value: 3
  208. },
  209. {
  210. label: '业务水平认证考试',
  211. value: 4
  212. },
  213. ]
  214. const searchForm = ref({
  215. keyword: '',
  216. type: 0
  217. })
  218. function onSearchTypeChange(val) {}
  219. // 点击选中
  220. function onListItemClick(val, index) {
  221. list.value[index].checked = !list.value[index].checked
  222. }
  223. // 单独选中
  224. function onCheckboxChange(val) {
  225. }
  226. // 全选变更
  227. function onAllCheckboxChange(val) {
  228. list.value.forEach(item => {
  229. item.checked = val.value
  230. })
  231. }
  232. // 申请开票
  233. function onApplyForBilling() {
  234. uni.navigateTo({
  235. url: `/pages/applyForBilling/applyForBilling?ids=${priceInfo.value.ids}&price=${priceInfo.value.price}`
  236. })
  237. }
  238. const priceInfo = computed(() => {
  239. const selectList = list.value.filter(item => item.checked)
  240. const sum = selectList.reduce((total, currentValue) => {
  241. return total + Number(currentValue.price);
  242. }, 0)
  243. const selectIds = selectList.map(item => item.id)
  244. return {
  245. count: selectList.length,
  246. price: sum.toFixed(2),
  247. ids: selectIds
  248. }
  249. })
  250. const list = ref([
  251. {
  252. id: '01',
  253. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  254. number: '123456789987654321',
  255. time: '2023年8月8日',
  256. price: '9.9',
  257. status: 1,
  258. checked: false
  259. },
  260. {
  261. id: '02',
  262. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  263. number: '123456789987654321',
  264. time: '2023年8月8日',
  265. price: '9.9',
  266. status: 1,
  267. checked: false
  268. },
  269. {
  270. id: '03',
  271. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  272. number: '123456789987654321',
  273. time: '2023年8月8日',
  274. price: '9.9',
  275. status: 1,
  276. checked: false
  277. },
  278. {
  279. id: '04',
  280. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  281. number: '123456789987654321',
  282. time: '2023年8月8日',
  283. price: '9.9',
  284. status: 1,
  285. checked: false
  286. },
  287. {
  288. id: '05',
  289. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  290. number: '123456789987654321',
  291. time: '2023年8月8日',
  292. price: '9.9',
  293. status: 1,
  294. checked: false
  295. },
  296. {
  297. id: '06',
  298. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  299. number: '123456789987654321',
  300. time: '2023年8月8日',
  301. price: '9.9',
  302. status: 1,
  303. checked: false
  304. },
  305. {
  306. id: '07',
  307. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  308. number: '123456789987654321',
  309. time: '2023年8月8日',
  310. price: '9.9',
  311. status: 1,
  312. checked: false
  313. },
  314. {
  315. id: '08',
  316. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  317. number: '123456789987654321',
  318. time: '2023年8月8日',
  319. price: '9.9',
  320. status: 1,
  321. checked: false
  322. },
  323. {
  324. id: '09',
  325. title: '【市场研究】2024年10月广州市中介促成二手住宅市场交易简报',
  326. number: '123456789987654321',
  327. time: '2023年8月8日',
  328. price: '9.9',
  329. status: 1,
  330. checked: false
  331. },
  332. ])
  333. const isAllChecked = ref(false)
  334. const searchForm2 = ref({
  335. keyword: ''
  336. })
  337. const list2 = ref([
  338. {
  339. id: '01',
  340. name: '广州市XXXXXXXXXXX公司',
  341. type: '全电普票',
  342. number: '123456789',
  343. time: '2024年12月1日',
  344. price: '9.9',
  345. status: 1,
  346. },
  347. {
  348. id: '02',
  349. name: '广州市XXXXXXXXXXX公司',
  350. type: '全电普票',
  351. number: '123456789',
  352. time: '2024年12月1日',
  353. price: '9.9',
  354. status: 0,
  355. },
  356. ])
  357. function onToInvoiceDetail(detail) {
  358. uni.navigateTo({
  359. url: `/pages/invoiceDetail/invoiceDetail?id=${detail.id}`
  360. })
  361. }
  362. const menuCurrent = ref(0)
  363. function onMenuClick(index) {
  364. menuCurrent.value = index
  365. uni.setNavigationBarTitle({
  366. title: index ? '开票记录' : '发票申请'
  367. })
  368. }
  369. onLoad((load) => {
  370. if (load.menuCurrent) {
  371. menuCurrent.value = Number(load.menuCurrent)
  372. uni.setNavigationBarTitle({
  373. title: '开票记录'
  374. })
  375. }
  376. })
  377. </script>
  378. <style lang="scss" scoped>
  379. .container {
  380. height: 100vh;
  381. width: 100vw;
  382. background-color: $uni-text-color-inverse;
  383. .header-box {
  384. padding: 0 20rpx;
  385. background-color: $uni-text-color-inverse;
  386. @include topMagnet();
  387. }
  388. .search-box {
  389. margin-bottom: 20rpx;
  390. ::v-deep(.u-search) {
  391. background-color: #e5e5e5;
  392. border-radius: 50rpx;
  393. .u-action {
  394. width: 18%;
  395. background-color: $uni-color-primary;
  396. border-radius: 50rpx;
  397. color: $uni-text-color-inverse;
  398. margin-right: 8rpx;
  399. font-size: 28rpx;
  400. line-height: 50rpx;
  401. letter-spacing: 3rpx;
  402. text-align: center;
  403. }
  404. }
  405. }
  406. .list-box {
  407. padding: 0 20rpx;
  408. .list-item-box {
  409. padding: 20rpx;
  410. border-bottom: 5rpx solid #E6E6E6;
  411. display: flex;
  412. &:active {
  413. background-color: $uni-bg-color-hover;
  414. }
  415. .checkbox-box {
  416. width: 5%;
  417. }
  418. .main-box {
  419. width: 95%;
  420. .title-box {
  421. font-size: $uni-title-font-size-3;
  422. font-weight: bold;
  423. margin-bottom: 20rpx;
  424. @include text-overflow()
  425. }
  426. .main-box {
  427. display: flex;
  428. justify-content: space-between;
  429. padding-left: 20rpx;
  430. .info-box {
  431. width: 50%;
  432. .info-item-box {
  433. display: flex;
  434. font-size: $uni-font-size-3;
  435. color: $uni-text-color-grey;
  436. line-height: 30rpx;
  437. .label {
  438. width: 80rpx;
  439. }
  440. }
  441. }
  442. .price-box {
  443. display: flex;
  444. align-items: flex-end;
  445. text-align: right;
  446. color: $uni-color-error;
  447. font-size: $uni-title-font-size-3;
  448. font-weight: bold;
  449. .button {
  450. background-color: #CCCCCC;
  451. color: $uni-text-color-inverse;
  452. padding: 6rpx 25rpx;
  453. border-radius: $uni-card-border-radius;
  454. }
  455. }
  456. }
  457. }
  458. }
  459. .list-card-box {
  460. padding: 20rpx;
  461. background-color: #F2F2F2;
  462. border-radius: $uni-card-border-radius;
  463. margin-bottom: 50rpx;
  464. &:active {
  465. background-color: #dddddd;
  466. }
  467. .main-box {
  468. display: flex;
  469. .info-box {
  470. width: 60%;
  471. .title {
  472. font-size: $uni-title-font-size-2;
  473. font-weight: bold;
  474. line-height: 50rpx;
  475. }
  476. .type {
  477. font-size: $uni-font-size-2;
  478. font-weight: bold;
  479. margin-bottom: 15rpx;
  480. }
  481. .info {
  482. .info-item {
  483. display: flex;
  484. font-size: $uni-font-size-3;
  485. color: $uni-text-color-grey;
  486. line-height: 30rpx;
  487. .label {
  488. width: 80rpx;
  489. }
  490. }
  491. }
  492. }
  493. .price-box {
  494. width: 40%;
  495. font-size: $uni-title-font-size-3;
  496. font-weight: bold;
  497. color: $uni-color-error;
  498. text-align: right;
  499. line-height: 50rpx;
  500. }
  501. }
  502. .status-box {
  503. display: flex;
  504. justify-content: flex-end;
  505. gap: 10rpx;
  506. .status-item {
  507. padding: 5rpx 15rpx;
  508. border-radius: $uni-card-border-radius;
  509. text-align: center;
  510. font-size: $uni-font-size-4;
  511. color: $uni-text-color-inverse;
  512. }
  513. .primary {
  514. background-color: $uni-color-primary;
  515. }
  516. .error {
  517. background-color: $uni-color-error;
  518. }
  519. .info {
  520. background-color: #999999;
  521. }
  522. }
  523. }
  524. }
  525. .function-block {
  526. height: 70rpx;
  527. padding-bottom: env(5rpx + safe-area-inset-bottom, 0);
  528. }
  529. .menu-block {
  530. height: 112rpx;
  531. padding-bottom: env(5rpx + safe-area-inset-bottom, 0);
  532. }
  533. .bottom-box {
  534. padding: 5rpx 20rpx;
  535. padding-left: 40rpx;
  536. background-color: $uni-bg-color-grey;
  537. border: 1rpx solid #E9E9E9;
  538. position: fixed;
  539. bottom: 0;
  540. width: 100%;
  541. .function-box {
  542. display: flex;
  543. align-items: center;
  544. height: 70rpx;
  545. .checkbox-box {
  546. width: 18%;
  547. .text {
  548. font-size: $uni-font-size-1;
  549. font-weight: bold;
  550. }
  551. }
  552. .price-box {
  553. width: 60%;
  554. .desc-box {
  555. color: $uni-text-color-grey;
  556. font-size: $uni-font-size-3;
  557. }
  558. .info-box {
  559. display: flex;
  560. font-size: $uni-font-size-1;
  561. font-weight: bold;
  562. gap: 5rpx;
  563. .text {
  564. color: $uni-color-error;
  565. }
  566. }
  567. }
  568. .buttom-box {
  569. width: 18%;
  570. display: flex;
  571. align-items: center;
  572. }
  573. }
  574. .menu-box {
  575. height: 100rpx;
  576. display: flex;
  577. align-items: center;
  578. .menu-item-box {
  579. width: 50%;
  580. text-align: center;
  581. .iconfont {
  582. font-size: 55rpx;
  583. }
  584. .text {
  585. font-size: $uni-font-size-2;
  586. }
  587. }
  588. .is-active {
  589. color: $uni-color-primary;
  590. }
  591. }
  592. }
  593. }
  594. </style>