invoiceDetail.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. <template>
  2. <view class="container">
  3. <view class="info-card-box">
  4. <view class="title-box">
  5. <view class="title">
  6. {{info.name}}
  7. </view>
  8. <view class="status">
  9. <view class="text">
  10. {{info.status === 1 ? '已开票' : '开票中'}}
  11. </view>
  12. </view>
  13. </view>
  14. <view class="type-box">
  15. {{info.type}}
  16. </view>
  17. <view class="info-box">
  18. <view class="info-item-box">
  19. <view class="label">
  20. 抬头类型:
  21. </view>
  22. <view class="text">
  23. {{info.titleType}}
  24. </view>
  25. </view>
  26. <view class="info-item-box">
  27. <view class="label">
  28. 抬头名称:
  29. </view>
  30. <view class="text">
  31. {{info.name}}
  32. </view>
  33. </view>
  34. <view class="info-item-box">
  35. <view class="label">
  36. 纳税人识别号:
  37. </view>
  38. <view class="text">
  39. {{info.number}}
  40. </view>
  41. </view>
  42. <view class="info-item-box">
  43. <view class="label">
  44. 收票人邮箱:
  45. </view>
  46. <view class="text">
  47. {{info.email}}
  48. </view>
  49. </view>
  50. <view class="info-item-box">
  51. <view class="label">
  52. 手机号码:
  53. </view>
  54. <view class="text">
  55. {{info.tel}}
  56. </view>
  57. </view>
  58. <view class="info-item-box">
  59. <view class="label">
  60. 发票内容:
  61. </view>
  62. <view class="text">
  63. {{info.content}}
  64. </view>
  65. </view>
  66. <view class="info-item-box">
  67. <view class="label">
  68. 申请时间:
  69. </view>
  70. <view class="text">
  71. {{info.time}}
  72. </view>
  73. </view>
  74. </view>
  75. <view class="price-box">
  76. <view class="text">
  77. 发票金额:&nbsp;¥{{info.price}}元
  78. </view>
  79. </view>
  80. </view>
  81. <view class="list-card-box">
  82. <view class="hide-box" v-if="!showMore" @click="showMore = !showMore">
  83. <view class="label">
  84. 1张发票,含{{info.orderList.length}}个订单
  85. </view>
  86. <view class="suffix-box">
  87. <view class="text">
  88. 查看&nbsp;<span class="iconfont icon-chevron-up" :class="{'reversal': !showMore}"></span>
  89. </view>
  90. </view>
  91. </view>
  92. <view class="show-box" v-else>
  93. <u-checkbox-group>
  94. <view class="list-item-box" v-for="(item, index) in info.orderList" :key="item.id">
  95. <view class="checkbox-box">
  96. <u-checkbox
  97. @change="onCheckboxChange(item)"
  98. v-model="item.checked"
  99. :name="item.id"
  100. shape="circle"
  101. icon-size="16"
  102. label-size="16"
  103. ></u-checkbox>
  104. </view>
  105. <view class="main-box" @click="onListItemClick(item, index)">
  106. <view class="title-box">
  107. {{item.title}}
  108. </view>
  109. <view class="content-box">
  110. <view class="info-box">
  111. <view class="info-item-box">
  112. <view class="label">
  113. 订单编号:
  114. </view>
  115. <view class="text">
  116. {{item.number}}
  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>
  127. </view>
  128. </u-checkbox-group>
  129. <view class="list-item-box func" @click="showMore = !showMore">
  130. <view class="text">
  131. {{ showMore ? '收起' : '展开'}}&nbsp;<span class="iconfont icon-chevron-up" :class="{'reversal': !showMore}"></span>
  132. </view>
  133. </view>
  134. </view>
  135. </view>
  136. <view class="buttom-block"></view>
  137. <view class="bottom-box">
  138. <view class="button">
  139. 发送至邮箱
  140. </view>
  141. <view class="button">
  142. 申请重开发票
  143. </view>
  144. </view>
  145. </view>
  146. </template>
  147. <script setup>
  148. import { ref } from 'vue'
  149. import { onLoad } from '@dcloudio/uni-app'
  150. const id = ref()
  151. const info = ref({
  152. name: '广州市XXXXXXXXXXXXXXX公司', // 抬头名称
  153. type: '全电发票', // 发票类型
  154. titleType: '企业单位', // 抬头类型
  155. number: '', // 纳税人识别号
  156. email: '', // 收票人邮箱
  157. tel: '', // 手机号码
  158. content: '', // 发票内容
  159. time: '', // 申请时间
  160. price: '29.7', // 发票金额
  161. status: 1, // 状态
  162. orderList: [
  163. {
  164. id: '01',
  165. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  166. number: '123456789987654321',
  167. time: '2023年11月8日',
  168. price: '9.9',
  169. checked: false
  170. },
  171. {
  172. id: '02',
  173. title: '【市场研究】2024年10月广州市中介促成二手住宅市场交易简报',
  174. number: '123456789987654321',
  175. time: '2023年10月8日',
  176. price: '9.9',
  177. checked: false
  178. },
  179. {
  180. id: '03',
  181. title: '【市场研究】2024年9月广州市中介促成二手住宅市场交易简报',
  182. number: '123456789987654321',
  183. time: '2023年9月8日',
  184. price: '9.9',
  185. checked: false
  186. },
  187. ]
  188. })
  189. const showMore = ref(false)
  190. function onCheckboxChange(val) {}
  191. // 点击选中
  192. function onListItemClick(val, index) {
  193. info.value.orderList[index].checked = !info.value.orderList[index].checked
  194. }
  195. onLoad((load) => {
  196. id.value = load.id
  197. })
  198. </script>
  199. <style lang="scss" scoped>
  200. .container {
  201. height: 100vh;
  202. width: 100vw;
  203. background-color: $uni-bg-color;
  204. .info-card-box {
  205. margin: 0 20rpx;
  206. padding: 20rpx;
  207. background-color: #F2F2F2;
  208. border-radius: $uni-card-border-radius;
  209. margin-bottom: 30rpx;
  210. .title-box {
  211. display: flex;
  212. align-items: center;
  213. .title {
  214. width: 80%;
  215. font-size: $uni-title-font-size-2;
  216. font-weight: bold;
  217. }
  218. .status {
  219. width: 20%;
  220. display: flex;
  221. justify-content: flex-end;
  222. .text {
  223. font-size: $uni-font-size-1;
  224. border-radius: $uni-card-border-radius;
  225. padding: 3rpx 20rpx;
  226. background-color: $uni-color-error;
  227. text-align: center;
  228. color: $uni-text-color-inverse;
  229. }
  230. }
  231. }
  232. .type-box {
  233. line-height: 50rpx;
  234. font-size: $uni-font-size-2;
  235. font-weight: bold;
  236. margin-bottom: 5rpx;
  237. }
  238. .info-box {
  239. .info-item-box {
  240. display: flex;
  241. align-items: center;
  242. font-size: $uni-font-size-2;
  243. color: $uni-text-color-grey;
  244. margin-bottom: 10rpx;
  245. .label {
  246. width: 20%;
  247. }
  248. }
  249. }
  250. .price-box {
  251. font-size: $uni-font-size-1;
  252. font-weight: bold;
  253. text-align: right;
  254. color: $uni-color-error;
  255. }
  256. }
  257. .list-card-box {
  258. margin: 0 20rpx;
  259. padding: 20rpx;
  260. background-color: #F2F2F2;
  261. border-radius: $uni-card-border-radius;
  262. .hide-box {
  263. width: 100%;
  264. display: flex;
  265. font-size: $uni-font-size-1;
  266. .label {
  267. width: 70%;
  268. font-weight: bold;
  269. }
  270. .suffix-box {
  271. width: 30%;
  272. color: $uni-text-color-grey;
  273. display: flex;
  274. justify-content: flex-end;
  275. .text {
  276. }
  277. }
  278. }
  279. .show-box {
  280. .list-item-box {
  281. padding: 10rpx 0;
  282. border-top: 5rpx solid #E6E6E6;
  283. display: flex;
  284. &:first-child {
  285. border-top: 0rpx;
  286. }
  287. .checkbox-box {
  288. width: 5%;
  289. }
  290. .main-box {
  291. width: 95%;
  292. .title-box {
  293. font-size: $uni-title-font-size-3;
  294. font-weight: bold;
  295. margin-bottom: 10rpx;
  296. @include text-overflow()
  297. }
  298. .content-box {
  299. display: flex;
  300. justify-content: space-between;
  301. padding-left: 20rpx;
  302. .info-box {
  303. width: 60%;
  304. .info-item-box {
  305. display: flex;
  306. font-size: $uni-font-size-3;
  307. color: $uni-text-color-grey;
  308. line-height: 30rpx;
  309. .label {
  310. width: 80rpx;
  311. }
  312. }
  313. }
  314. .price-box {
  315. font-size: $uni-font-size-1;
  316. font-weight: bold;
  317. text-align: right;
  318. color: $uni-color-error;
  319. }
  320. }
  321. }
  322. }
  323. .func {
  324. border-top: 0rpx;
  325. display: flex;
  326. justify-content: center;
  327. align-items: flex-end;
  328. border-bottom: none;
  329. color: $uni-text-color-grey;
  330. }
  331. }
  332. .reversal {
  333. display: inline-block;
  334. transform: rotate(180deg);
  335. }
  336. }
  337. .buttom-block {
  338. height: 100rpx;
  339. padding-bottom: env(5rpx + safe-area-inset-bottom, 0);
  340. }
  341. .bottom-box {
  342. text-align: center;
  343. font-size: $uni-title-font-size-2;
  344. background-color: $uni-bg-color-grey;
  345. position: fixed;
  346. bottom: 0;
  347. width: 100%;
  348. display: flex;
  349. .button {
  350. width: 50%;
  351. height: 100rpx;
  352. line-height: 100rpx;
  353. color: $uni-color-primary;
  354. letter-spacing: 2rpx;
  355. border: 1rpx solid #E9E9E9;
  356. &:active {
  357. background-color: $uni-bg-color-hover;
  358. }
  359. &:last-child {
  360. color: $uni-color-error;
  361. }
  362. }
  363. }
  364. }
  365. </style>