hcInvoice.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <template>
  2. <div class="invoice_container">
  3. <div class="title">
  4. <el-row>
  5. <el-col :span="24">
  6. <div class="top">
  7. <!-- <el-input placeholder="客户" class="input-demo" v-model="formCondition.customerName"></el-input> -->
  8. <el-input placeholder="企业编号" class="input-demo" v-model="formCondition.companyNum"></el-input>
  9. <el-date-picker v-model="formCondition.month" type="month" value-format="yyyy-MM" placeholder="选择月份"> </el-date-picker>
  10. <el-button type="success" style="margin-left: 1%;" @click="loadData">查询</el-button>
  11. <el-button type="primary" style="margin-left: 1%;" @click="exportExcel">导出报表</el-button>
  12. </div>
  13. </el-col>
  14. </el-row>
  15. </div>
  16. <!-- 表格部分 -->
  17. <template>
  18. <el-table
  19. class="table"
  20. v-loading="loading"
  21. ref="multipleTable"
  22. :data="invoiceTable"
  23. :height="heightt"
  24. border
  25. tooltip-effect="dark">
  26. <el-table-column
  27. prop="sellerName"
  28. label="销方名称"
  29. show-overflow-tooltip>
  30. </el-table-column>
  31. <el-table-column
  32. prop="sellerTaxpayerCode"
  33. label="销方税号"
  34. show-overflow-tooltip>
  35. </el-table-column>
  36. <el-table-column
  37. prop="buyerName"
  38. label="购方名称"
  39. show-overflow-tooltip>
  40. </el-table-column>
  41. <el-table-column
  42. prop="buyerTaxpayerCode"
  43. label="购方税号"
  44. show-overflow-tooltip>
  45. </el-table-column>
  46. <el-table-column
  47. prop="amount"
  48. label="金额"
  49. show-overflow-tooltip>
  50. <template slot-scope="scope">
  51. <span>{{scope.row.amount/100| rounding}}</span>
  52. </template>
  53. </el-table-column>
  54. <el-table-column
  55. prop="rawInvoiceId"
  56. label="原票id"
  57. width="120"
  58. show-overflow-tooltip>
  59. </el-table-column>
  60. <el-table-column
  61. prop="rawInvoiceCode"
  62. label="原票发票代码"
  63. width="140"
  64. show-overflow-tooltip>
  65. </el-table-column>
  66. <el-table-column
  67. prop="rawInvoiceNum"
  68. label="原票发票号码"
  69. show-overflow-tooltip>
  70. </el-table-column>
  71. </el-table>
  72. </template>
  73. </div>
  74. </template>
  75. <script type="text/javascript">
  76. import FileSaver from "file-saver";
  77. import XLSX from "xlsx";
  78. export default {
  79. data(){
  80. return{
  81. formCondition:{
  82. },
  83. invoiceTable:[],
  84. hightt:'0px',
  85. }
  86. },
  87. created() {
  88. this.heightt = tableHeight;
  89. },
  90. filters: {
  91. rounding (value) {
  92. return value.toFixed(2)
  93. }
  94. },
  95. methods:{
  96. // 列表展示
  97. async loadData() {
  98. const formData = new FormData();
  99. formData.append('current', this.current);
  100. formData.append('size', this.pagesize);
  101. const response = await this.$http.post('noCarService/hCVoiceQuery', this.formCondition);
  102. if (response.data.code === 0) {
  103. this.invoiceTable = response.data.data.records;
  104. }else{
  105. this.$message({
  106. type: 'error',
  107. message: ''+response.data.msg
  108. });
  109. }
  110. },
  111. // 分页方法
  112. handleSizeChange(val) {
  113. this.pagesize = val;
  114. this.loadData();
  115. console.log(`每页 ${val} 条`);
  116. },
  117. handleCurrentChange(val) {
  118. this.current = val;
  119. this.loadData();
  120. // console.log(`当前页: ${val}`);
  121. },
  122. async exportExcel() {
  123. let curr = this.current;
  124. let pagesize1 = this.pagesize;
  125. this.current = 1;
  126. this.pagesize = this.total;
  127. await this.loadData();
  128. // 设置当前日期
  129. let time = new Date();
  130. //console.log(time);
  131. let year = time.getFullYear();
  132. let month = time.getMonth() + 1;
  133. let day = time.getDate();
  134. let name = "无车红冲发票查询列表_"+year + "" + month + "" + day;
  135. // console.log(name)
  136. /* generate workbook object from table */
  137. // .table要导出的是哪一个表格
  138. var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
  139. /* get binary string as output */
  140. var wbout = XLSX.write(wb, {
  141. bookType: "xlsx",
  142. bookSST: true,
  143. type: "array"
  144. });
  145. try {
  146. // name+'.xlsx'表示导出的excel表格名字
  147. FileSaver.saveAs(
  148. new Blob([wbout], { type: "application/octet-stream" }),
  149. name + ".xlsx"
  150. );
  151. } catch (e) {
  152. if (typeof console !== "undefined") console.log(e, wbout);
  153. }
  154. this.current = curr;
  155. this.pagesize = pagesize1;
  156. this.loadData();
  157. return wbout;
  158. },
  159. }
  160. };
  161. </script>
  162. <style>
  163. .invoice_container {
  164. border: 1px solid #d9d9d9;
  165. border-radius: 10px;
  166. }
  167. .invoice_container .title {
  168. font-size: 5px;
  169. margin-bottom: 20px;
  170. }
  171. .invoice_container .top {
  172. padding-top: 20px;
  173. padding-left: 20px;
  174. }
  175. .invoice_container .text {
  176. display: inline-block;
  177. color: #000;
  178. font-size: 16px ;
  179. margin-left: 1%;
  180. }
  181. .invoice_container .input-demo {
  182. display: inline-block;
  183. width: 20%;
  184. margin-left: 1%;
  185. }
  186. .invoice_container .block {
  187. font-size: 5px;
  188. text-align: center;
  189. margin-top: 25px;
  190. margin-bottom: 25px;
  191. }
  192. .invoice_container .el-dialog {
  193. width: 60%;
  194. }
  195. .invoice_container .el-dialog__header, .el-dialog__body {
  196. padding: 0 20px;
  197. }
  198. .invoice_container .tou {
  199. font-size: 20px;
  200. height: 30px;
  201. line-height: 30px;
  202. padding-top: 15px;
  203. }
  204. .invoice_container .line {
  205. margin-top: 15px;
  206. margin-bottom: 15px;
  207. width: 100%;
  208. height: 2px;
  209. background-color: #d9d9d9;
  210. }
  211. .invoice_container .xinxi {
  212. text-align: center;
  213. margin: 15px auto;
  214. font-size: 18px;
  215. }
  216. </style>