calculateInfostatis.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <template>
  2. <div class="calculateInfo_container">
  3. <div class="title">
  4. <el-row>
  5. <el-col :span="24">
  6. <div class="top">
  7. <div class="demo-input-suffix">
  8. <el-input placeholder="主体名称" class="input-demo" v-model="formCondition.customId"></el-input>
  9. <el-input placeholder="购方税号" class="input-demo" v-model="formCondition.buyerTaxpayerCode"></el-input>
  10. <el-input placeholder="购方名称" class="input-demo" v-model="formCondition.buyerName"></el-input>
  11. </div>
  12. <div class="demo-input-suffix" style="margin-top: 5px;margin-left: 10px;">
  13. <el-date-picker v-model="formCondition.invoiceMakeTime" type="daterange" value-format="yyyy-MM-dd HH:mm:SS" range-separator="至" start-placeholder="开票时间始" end-placeholder="开票时间止"></el-date-picker>
  14. <el-date-picker v-model="formCondition.calculateTime" type="daterange" value-format="yyyy-MM-dd HH:mm:SS" range-separator="至" start-placeholder="计费时间始" end-placeholder="计费时间止"></el-date-picker>
  15. <el-button type="success" style="margin-left: 1%;" @click="firstLoadData">查询</el-button>
  16. <el-button type="primary" style="margin-left: 1%;" @click="exportExcel">导出报表</el-button>
  17. </div>
  18. </div>
  19. </el-col>
  20. </el-row>
  21. </div>
  22. <!-- 表格部分 -->
  23. <template>
  24. <el-table
  25. class="table"
  26. v-loading="loading"
  27. ref="multipleTable"
  28. :data="calculateInfo"
  29. :height="heightt"
  30. border
  31. tooltip-effect="dark">
  32. <el-table-column
  33. label="主体名称"
  34. prop="customId"
  35. show-overflow-tooltip>
  36. </el-table-column>
  37. <el-table-column
  38. label="购方名称"
  39. prop="buyerName"
  40. show-overflow-tooltip>
  41. </el-table-column>
  42. <el-table-column
  43. label="购方税号"
  44. prop="buyerTaxpayerCode"
  45. show-overflow-tooltip>
  46. </el-table-column>
  47. <el-table-column
  48. label="费用个数"
  49. prop="feeCount"
  50. show-overflow-tooltip>
  51. </el-table-column>
  52. </el-table>
  53. </template>
  54. </div>
  55. </template>
  56. <script type="text/javascript">
  57. import FileSaver from "file-saver";
  58. import XLSX from "xlsx";
  59. export default {
  60. data(){
  61. return{
  62. formCondition:{
  63. },
  64. calculateInfo:[],
  65. current: 1,
  66. hightt:'0px',
  67. pagesize: 8,
  68. total:''
  69. }
  70. },
  71. created() {
  72. this.heightt = tableHeight;
  73. this.loadData();
  74. },
  75. filters: {
  76. rounding (value) {
  77. return value.toFixed(2)
  78. }
  79. },
  80. methods:{
  81. firstLoadData(){
  82. this.current = 1;
  83. this.pagesize = 8;
  84. this.loadData();
  85. },
  86. // 列表展示
  87. async loadData() {
  88. const formData = new FormData();
  89. formData.append('current', this.current);
  90. formData.append('size', this.pagesize);
  91. for(var i in this.formCondition){
  92. formData.append(i,this.formCondition[i]);
  93. }
  94. const response = await this.$http.post(`noCar/findNocarCalculateInfoStatis`, formData);
  95. if (response.data.code === 0) {
  96. this.calculateInfo = response.data.data;
  97. }
  98. },
  99. async exportExcel() {
  100. let curr = this.current;
  101. let pagesize1 = this.pagesize;
  102. this.current = 1;
  103. this.pagesize = this.total;
  104. await this.loadData();
  105. // 设置当前日期
  106. let time = new Date();
  107. //console.log(time);
  108. let year = time.getFullYear();
  109. let month = time.getMonth() + 1;
  110. let day = time.getDate();
  111. let name = "无车计费查询列表_"+year + "" + month + "" + day;
  112. // console.log(name)
  113. /* generate workbook object from table */
  114. // .table要导出的是哪一个表格
  115. var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
  116. /* get binary string as output */
  117. var wbout = XLSX.write(wb, {
  118. bookType: "xlsx",
  119. bookSST: true,
  120. type: "array"
  121. });
  122. try {
  123. // name+'.xlsx'表示导出的excel表格名字
  124. FileSaver.saveAs(
  125. new Blob([wbout], { type: "application/octet-stream" }),
  126. name + ".xlsx"
  127. );
  128. } catch (e) {
  129. if (typeof console !== "undefined") console.log(e, wbout);
  130. }
  131. this.current = curr;
  132. this.pagesize = pagesize1;
  133. this.loadData();
  134. return wbout;
  135. },
  136. }
  137. };
  138. </script>
  139. <style>
  140. .calculateInfo_container {
  141. border: 1px solid #d9d9d9;
  142. border-radius: 10px;
  143. }
  144. .calculateInfo_container .title {
  145. font-size: 5px;
  146. margin-bottom: 20px;
  147. }
  148. .calculateInfo_container .top {
  149. padding-top: 20px;
  150. padding-left: 20px;
  151. }
  152. .calculateInfo_container .text {
  153. display: inline-block;
  154. color: #000;
  155. font-size: 16px ;
  156. margin-left: 1%;
  157. }
  158. .calculateInfo_container .input-demo {
  159. display: inline-block;
  160. width: 20%;
  161. margin-left: 1%;
  162. }
  163. .calculateInfo_container .block {
  164. font-size: 5px;
  165. text-align: center;
  166. margin-top: 25px;
  167. margin-bottom: 25px;
  168. }
  169. .calculateInfo_container .el-dialog {
  170. width: 60%;
  171. }
  172. .calculateInfo_container .el-dialog__header, .el-dialog__body {
  173. padding: 0 20px;
  174. }
  175. .calculateInfo_container .tou {
  176. font-size: 20px;
  177. height: 30px;
  178. line-height: 30px;
  179. padding-top: 15px;
  180. }
  181. .calculateInfo_container .line {
  182. margin-top: 15px;
  183. margin-bottom: 15px;
  184. width: 100%;
  185. height: 2px;
  186. background-color: #d9d9d9;
  187. }
  188. .calculateInfo_container .xinxi {
  189. text-align: center;
  190. margin: 15px auto;
  191. font-size: 18px;
  192. }
  193. </style>