custRecMoney.vue 6.3 KB

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