Browse Source

余额告警

MSY 3 năm trước cách đây
mục cha
commit
12aec0a226

+ 3 - 0
src/router/index.js

@@ -11,6 +11,8 @@ const Main = () => import('@/views/main/main');
 const Customer = () => import('@/views/customer/Customer');
 const CustomerRecharge = () => import('@/views/customer/customerRecharge');
 const custRecTime = () => import('@/views/customer/custRecTime');
+const custRecMoney = () => import('@/views/customer/custRecMoney');
+
 // 系统管理部分
 const User = () => import('@/views/sys/user');
 
@@ -51,6 +53,7 @@ const router = new Router({
         { name: 'Customer', path: '/customer', component: Customer },
         { name: 'customerRecharge', path: '/CustomerRecharge', component: CustomerRecharge },
         { name: 'custRecTime', path: '/custRecTime', component: custRecTime },
+        { name: 'custRecMoney', path: '/custRecMoney', component: custRecMoney },
         // 系统管理部分
         { name: 'User', path: '/user', component: User },
         // 无车部分

+ 4 - 0
src/views/Home.vue

@@ -172,6 +172,10 @@ export default {
               id:3,
               path:"custRecTime",
               authName:"备案预警查询"
+            },{
+              id:4,
+              path:"custRecMoney",
+              authName:"余额预警查询"
             }
           ]
          },

+ 198 - 0
src/views/customer/custRecMoney.vue

@@ -0,0 +1,198 @@
+<template>
+    <div class="custRecMoney_container">
+      <div class="title">
+        <el-row>
+          <el-col :span="24">
+            <div class="top">
+               <el-input  placeholder="客户名称" class="input-demo" v-model="formCondition.customerName"></el-input>
+               <el-button type="success" style="margin-left: 1%;" @click="loadData">查询</el-button>
+               <el-button type="primary" style="margin-left: 1%;" @click="exportExcel">导出报表</el-button>
+            </div>
+          </el-col>
+        </el-row>
+      </div>
+      <!-- 表格部分 -->
+        <template>
+        <el-table
+         class="table"
+          v-loading="loading"
+          ref="multipleTable"
+          :data="customeRecMoneyListTable"
+           height="370px"
+          border
+          tooltip-effect="dark">
+          <el-table-column
+            label="客户名称"
+            prop="customerName"
+            show-overflow-tooltip>
+          </el-table-column>
+           <!-- <el-table-column
+            prop="companyLeader"
+            label="公司负责人"
+            show-overflow-tooltip>
+          </el-table-column> -->
+          <el-table-column
+            prop="company"
+            label="公司名称"
+            show-overflow-tooltip>
+          </el-table-column>
+          <el-table-column
+            prop="accountBalance"
+            label="账号余额"
+            show-overflow-tooltip>
+          </el-table-column>
+           <el-table-column
+            prop="accountBalanceValue"
+            label="余额告警"
+            show-overflow-tooltip
+            :formatter="formatterBannerOs"
+          >
+          </el-table-column>
+        </el-table>
+      </template> 
+      <!-- 分页 -->
+      <div class="block">
+        <el-pagination
+        @size-change="handleSizeChange"
+        @current-change="handleCurrentChange"
+        :current-page="current"
+        :page-sizes="[6, 8, 10, 20, 50, 100]"
+        :page-size="pagesize"
+        layout="total, sizes, prev, pager, next, jumper"
+        :total="total">
+        </el-pagination>
+      </div>
+    </div>
+</template>
+<script type="text/javascript">
+import FileSaver from "file-saver";
+import XLSX from "xlsx";
+      export default {
+        data(){
+          return{
+            formCondition:{
+              customrName:''
+            },
+            customeRecMoneyListTable:[],
+            current: 1,
+            pagesize: 8,
+            total:''
+          }
+        },
+        created() {
+          this.loadData();
+        },
+        methods:{
+          // 列表展示
+          async loadData() {
+            const formData = new FormData();
+            formData.append('current', this.current);
+            formData.append('size', this.pagesize);
+
+            const response = await this.$http.post(`customer/findCustomerMoney`, formData);
+            if (response.data.code === 0) {
+              this.customeRecMoneyListTable = response.data.data.records;
+              this.total = response.data.data.total;
+            }
+          },
+          formatterBannerOs: function() {
+          return '余额不足,请提醒客户充值'
+          },
+          // 分页方法
+          handleSizeChange(val) {
+            this.pagesize = val;
+            this.loadData();
+            console.log(`每页 ${val} 条`);
+          },
+          handleCurrentChange(val) {
+            this.current = val;
+              this.loadData();
+            // console.log(`当前页: ${val}`);
+          },
+           exportExcel() {
+      // 设置当前日期
+      let time = new Date();
+      //console.log(time);
+      let year = time.getFullYear();
+      let month = time.getMonth() + 1;
+      let day = time.getDate();
+      let name = "客户余额预警查询列表_"+year + "" + month + "" + day;
+      // console.log(name)
+      /* generate workbook object from table */
+      //  .table要导出的是哪一个表格
+      var wb = XLSX.utils.table_to_book(document.querySelector(".table"));
+      /* get binary string as output */
+      var wbout = XLSX.write(wb, {
+        bookType: "xlsx",
+        bookSST: true,
+        type: "array"
+      });
+      try {
+        //  name+'.xlsx'表示导出的excel表格名字
+        FileSaver.saveAs(
+          new Blob([wbout], { type: "application/octet-stream" }),
+          name + ".xlsx"
+        );
+      } catch (e) {
+        if (typeof console !== "undefined") console.log(e, wbout);
+      }
+      return wbout;
+    },
+        }
+      };
+</script>
+<style>
+.custRecMoney_container {
+  border: 1px solid #d9d9d9;
+  border-radius: 10px;
+}
+.custRecMoney_container .title {
+  font-size: 5px;
+  margin-bottom: 20px;
+}
+.custRecMoney_container .top {
+  padding-top: 20px;
+  padding-left: 20px;
+}
+.custRecMoney_container .text {
+  display: inline-block;
+  color: #000;
+  font-size: 16px ;
+  margin-left: 1%;
+}
+.custRecMoney_container .input-demo {
+  display: inline-block;
+  width: 20%;
+  margin-left: 1%;
+}
+.custRecMoney_container .block {
+  font-size: 5px;
+  text-align: center;
+  margin-top: 25px;
+  margin-bottom: 25px;
+}
+.custRecMoney_container .el-dialog {
+  width: 60%;
+}
+.custRecMoney_container .el-dialog__header, .el-dialog__body {
+  padding: 0 20px;
+}
+.custRecMoney_container .tou {
+  font-size: 20px;
+  height: 30px;
+  line-height: 30px;
+  padding-top: 15px;
+}
+.custRecMoney_container .line {
+  margin-top: 15px;
+  margin-bottom: 15px;
+  width: 100%;
+  height: 2px;
+  background-color: #d9d9d9;
+}
+.custRecMoney_container .xinxi {
+  text-align: center;
+  margin: 15px auto;
+  font-size: 18px;
+}
+</style>

+ 2 - 2
src/views/customer/custRecTime.vue

@@ -101,7 +101,7 @@ import XLSX from "xlsx";
             formData.append('current', this.current);
             formData.append('size', this.pagesize);
 
-            const response = await this.$http.post(`customer/findCustomerRecList`, formData);
+            const response = await this.$http.post(`customer/findCustomerRecTimeList`, formData);
             if (response.data.code === 0) {
               this.customeRecTimeListTable = response.data.data.records;
               this.total = response.data.data.total;
@@ -125,7 +125,7 @@ import XLSX from "xlsx";
       let year = time.getFullYear();
       let month = time.getMonth() + 1;
       let day = time.getDate();
-      let name = "客户备案预警查询查询列表_"+year + "" + month + "" + day;
+      let name = "客户备案预警查询列表_"+year + "" + month + "" + day;
       // console.log(name)
       /* generate workbook object from table */
       //  .table要导出的是哪一个表格

+ 2 - 2
src/views/manager/paramMagager.vue

@@ -141,7 +141,7 @@ export default{
       rules: {
           paramName: [
             { required: true, message: '请输入参数名称', trigger: 'blur' },
-            { min: 3, max: 15, message: '长度在 3 到 15 个字符', trigger: 'blur' }
+            { min: 3, max: 50, message: '长度在 3 到 50 个字符', trigger: 'blur' }
           ],
           paramValue: [
             { required: true, message: '请输入参数值', trigger: 'blur' },
@@ -149,7 +149,7 @@ export default{
           ],
           paramNote: [
             { required: true, message: '请输入备注信息', trigger: 'blur' },
-            { min: 2, max: 15, message: '长度在 2 到 15 个字符', trigger: 'blur' }
+            { min: 2, max: 50, message: '长度在 2 到 50 个字符', trigger: 'blur' }
           ]
         },
       paramName: '',