hcInvoice.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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.companyName"></el-input>
  9. <el-input placeholder="月份 2021-07" class="input-demo" v-model="formCondition.month"></el-input>
  10. <el-button type="success" style="margin-left: 1%;" @click="loadData">查询</el-button>
  11. </div>
  12. </el-col>
  13. </el-row>
  14. </div>
  15. <!-- 表格部分 -->
  16. <template>
  17. <el-table
  18. v-loading="loading"
  19. ref="multipleTable"
  20. :data="invoiceTable"
  21. height="370px"
  22. border
  23. tooltip-effect="dark">
  24. <el-table-column
  25. prop="sellerName"
  26. label="销方名称"
  27. show-overflow-tooltip>
  28. </el-table-column>
  29. <el-table-column
  30. prop="sellerTaxpayerCode"
  31. label="销方税号"
  32. show-overflow-tooltip>
  33. </el-table-column>
  34. <el-table-column
  35. prop="buyerName"
  36. label="购方名称"
  37. show-overflow-tooltip>
  38. </el-table-column>
  39. <el-table-column
  40. prop="buyerTaxpayerCode"
  41. label="购方税号"
  42. show-overflow-tooltip>
  43. </el-table-column>
  44. <el-table-column
  45. prop="amount"
  46. label="金额"
  47. show-overflow-tooltip>
  48. </el-table-column>
  49. <el-table-column
  50. prop="rawInvoiceId"
  51. label="原票id"
  52. width="120"
  53. show-overflow-tooltip>
  54. </el-table-column>
  55. <el-table-column
  56. prop="rawInvoiceCode"
  57. label="原票发票代码"
  58. width="140"
  59. show-overflow-tooltip>
  60. </el-table-column>
  61. <el-table-column
  62. prop="rawInvoiceNum"
  63. label="原票发票号码"
  64. show-overflow-tooltip>
  65. </el-table-column>
  66. </el-table>
  67. </template>
  68. </div>
  69. </template>
  70. <script type="text/javascript">
  71. export default {
  72. data(){
  73. return{
  74. formCondition:{
  75. companyName:'',
  76. customerName:'',
  77. month:''
  78. },
  79. invoiceTable:[],
  80. }
  81. },
  82. created() {
  83. },
  84. methods:{
  85. // 列表展示
  86. async loadData() {
  87. const formData = new FormData();
  88. formData.append('current', this.current);
  89. formData.append('size', this.pagesize);
  90. const response = await this.$http.post('noCarService/hCVoiceQuery', this.formCondition);
  91. if (response.data.code === 0) {
  92. this.invoiceTable = response.data.data.records;
  93. }else{
  94. this.$message({
  95. type: 'error',
  96. message: ''+response.data.msg
  97. });
  98. }
  99. },
  100. // 分页方法
  101. handleSizeChange(val) {
  102. this.pagesize = val;
  103. this.loadData();
  104. console.log(`每页 ${val} 条`);
  105. },
  106. handleCurrentChange(val) {
  107. this.current = val;
  108. this.loadData();
  109. // console.log(`当前页: ${val}`);
  110. }
  111. }
  112. };
  113. </script>
  114. <style>
  115. .invoice_container {
  116. border: 1px solid #d9d9d9;
  117. border-radius: 10px;
  118. }
  119. .invoice_container .title {
  120. font-size: 5px;
  121. margin-bottom: 20px;
  122. }
  123. .invoice_container .top {
  124. padding-top: 20px;
  125. padding-left: 20px;
  126. }
  127. .invoice_container .text {
  128. display: inline-block;
  129. color: #000;
  130. font-size: 16px ;
  131. margin-left: 1%;
  132. }
  133. .invoice_container .input-demo {
  134. display: inline-block;
  135. width: 20%;
  136. margin-left: 1%;
  137. }
  138. .invoice_container .block {
  139. font-size: 5px;
  140. text-align: center;
  141. margin-top: 25px;
  142. margin-bottom: 25px;
  143. }
  144. .invoice_container .el-dialog {
  145. width: 60%;
  146. }
  147. .invoice_container .el-dialog__header, .el-dialog__body {
  148. padding: 0 20px;
  149. }
  150. .invoice_container .tou {
  151. font-size: 20px;
  152. height: 30px;
  153. line-height: 30px;
  154. padding-top: 15px;
  155. }
  156. .invoice_container .line {
  157. margin-top: 15px;
  158. margin-bottom: 15px;
  159. width: 100%;
  160. height: 2px;
  161. background-color: #d9d9d9;
  162. }
  163. .invoice_container .xinxi {
  164. text-align: center;
  165. margin: 15px auto;
  166. font-size: 18px;
  167. }
  168. </style>