Browse Source

统计分析接口联调

hm 2 months ago
parent
commit
cdf69e5534

+ 1 - 1
.env.development

@@ -12,6 +12,6 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true
 
 # VUE_APP_BASE_API  = 'http://10.1.161.127:8080'
 # VUE_APP_BASE_API  = 'http://10.1.161.183:6661'
-VUE_APP_BASE_API  = 'http://192.168.136.30:6661'
+VUE_APP_BASE_API  = 'http://192.168.136.166:6661'
 
 # VUE_APP_BASE_API  = 'http://10.1.162.158:6661'

+ 55 - 0
src/api/unified-access/access-statistical-analysis.js

@@ -0,0 +1,55 @@
+import request from "@/utils/request";
+
+// 获取 交换量 列表
+export function getExchangeCount(query) {
+  return request({
+    url: "/web/tab-system-msg/getExchangeCount",
+    method: "get",
+    params: query,
+  });
+}
+
+// 获取 Jkcloud实际量 列表
+export function getJkcloudCount(query) {
+  return request({
+    url: "/web/tab-system-msg/getJkcloudCount",
+    method: "get",
+    params: query,
+  });
+}
+
+// 获取 最新操作 列表
+export function getNew(query) {
+  return request({
+    url: "/web/tab-system-msg/getNew",
+    method: "get",
+    params: query,
+  });
+}
+
+// 获取 统一接入同步结果 列表
+export function getTabSystemMsgList(query) {
+  return request({
+    url: "/web/tab-system-msg/getTabSystemMsgList",
+    method: "get",
+    params: query,
+  });
+}
+
+// 获取 topic昨天交换量 列表
+export function getTopicCountYesterday(query) {
+  return request({
+    url: "/web/tab-system-msg/getTopicCountYesterday",
+    method: "get",
+    params: query,
+  });
+}
+
+// 获取 url当天交换量 列表
+export function getUrlDayCount(query) {
+  return request({
+    url: "/web/tab-system-msg/getUrlDayCount",
+    method: "get",
+    params: query,
+  });
+}

+ 5 - 0
src/components/MyTable/index.vue

@@ -15,6 +15,11 @@
             <el-tag type="success" v-if="+scope.row[item.fieldName] === 1">启用</el-tag>
             <el-tag type="danger" v-if="+scope.row[item.fieldName] === 0">停用</el-tag>
           </div>
+          <div v-else-if="item.fieldName === 'state'">
+            <el-tag type="success" v-if="+scope.row[item.fieldName] === 1">正常</el-tag>
+            <el-tag type="danger" v-if="+scope.row[item.fieldName] === 0">不正常</el-tag>
+          </div>
+          
           <el-tag type="success" v-else-if="item.fieldName ==='defaultSuccess'">正常</el-tag>
           <span v-else>{{ scope.row[item.fieldName] }}</span>
         </template>

+ 20 - 29
src/views/unified-access/access-statistical-analysis/daily-api-forwarding-volume/index.vue

@@ -1,9 +1,9 @@
 <template>
   <el-container>
-    <el-header height="80px" class="content-header">
+    <el-header height="30px" class="content-header">
       <div class="header-container">
         <div class="header-title">当天api转发量</div>
-        <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
+        <!-- <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
           inline>
           <el-form-item label="网址url" prop="name">
             <el-input v-model="searchformModel.name" placeholder="请输入网址url"></el-input>
@@ -48,7 +48,7 @@
             <el-button type="primary" size="mini" @click="handleSubmit">搜索</el-button>
             <el-button size="mini" @click="handleReset">重置</el-button>
           </el-form-item>
-        </el-form>
+        </el-form> -->
       </div>
     </el-header>
     <el-container>
@@ -57,9 +57,9 @@
           @buttonClick="handleButtonClick"></MyTableHeader>
 
         <MyTable :tableData="tableData" :formData="formData" :minWidth="60" ref="myTableRef"
-          @selection-change="handleSelectionChange" >
+          @selection-change="handleSelectionChange" :isOperate="isOperate">
                     <!-- 自定义操作按钮,传递 row 和 index -->
-          <template #operation="{ row, index }">
+          <!-- <template #operation="{ row, index }">
             <el-button
               size="mini"
               @click="handleView(row, 'view')"
@@ -68,7 +68,7 @@
             >
 
    
-          </template>
+          </template> -->
         </MyTable>
         <MyPagination :total="tableTotal" :page-size="pageSize" :current-page="currentPage"
           @pageChange="pagi_changePage" @sizeChange="pagi_changeSize"></MyPagination>
@@ -77,14 +77,7 @@
   </el-container>
 </template>
 <script>
-import {
-  getTabAccessConfigList,
-  addTabAccessConfig,
-  updateTabAccessConfigById,
-  viewTabAccessConfigById,
-  delTabAccessConfigById,
-  exportTabAccessConfig,
-} from "@/api/unified-access/access-config";
+import { getUrlDayCount } from "@/api/unified-access/access-statistical-analysis.js";
 import MyHeader from "@/components/MyHeader";
 import MyTable from "@/components/MyTable";
 import MyPagination from "@/components/MyPagination";
@@ -140,23 +133,23 @@ export default {
       formData: [
         {
           label: "网址url",
-          fieldName: "dataManner",
-          type: "input",
-          showInTable: true,
-          value: "",
-          width: "",
-        },
-        {
-          label: "网址id",
-          fieldName: "gatewayIp",
+          fieldName: "url",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
+        // {
+        //   label: "网址id",
+        //   fieldName: "gatewayIp",
+        //   type: "input",
+        //   showInTable: true,
+        //   value: "",
+        //   width: "",
+        // },
         {
           label: "场景",
-          fieldName: "gatewayPort",
+          fieldName: "system_name",
           type: "input",
           showInTable: true,
           value: "",
@@ -165,7 +158,7 @@ export default {
   
         {
           label: "请求成功数量",
-          fieldName: "runTime",
+          fieldName: "success",
           type: "input",
           showInTable: true,
           value: "",
@@ -173,7 +166,7 @@ export default {
         },
           {
           label: "请求失败数量",
-          fieldName: "runTime",
+          fieldName: "error",
           type: "input",
           showInTable: true,
           value: "",
@@ -318,7 +311,7 @@ export default {
     },
 
     getList () {
-      getTabAccessConfigList({
+      getUrlDayCount({
         pageNum: this.currentPage,
         pageSize: this.pageSize,
         ...this.searchForm,
@@ -424,12 +417,10 @@ export default {
             message: "已取消删除",
           });
         });
-      console.log(row, "row");
     },
   },
   created () { },
   mounted () {
-    console.log("接入配置");
     this.getList();
   },
 };

+ 96 - 72
src/views/unified-access/access-statistical-analysis/daily-exchange-volume/index.vue

@@ -1,9 +1,9 @@
 <template>
   <el-container>
-    <el-header height="80px" class="content-header">
+    <el-header height="30px" class="content-header">
       <div class="header-container">
         <div class="header-title">当天交换量</div>
-        <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
+        <!-- <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
           inline>
           <el-form-item label="表名" prop="name">
             <el-input v-model="searchformModel.name" placeholder="请输入表名"></el-input>
@@ -48,35 +48,41 @@
             <el-button type="primary" size="mini" @click="handleSubmit">搜索</el-button>
             <el-button size="mini" @click="handleReset">重置</el-button>
           </el-form-item>
-        </el-form>
+        </el-form> -->
       </div>
     </el-header>
     <el-container>
       <el-main>
-        <MyTableHeader :title="tableHeaderTitle" :tabs="tabs" :buttons="buttons" @tabClick="handleTabClick"
-          @buttonClick="handleButtonClick"></MyTableHeader>
+        <MyTableHeader
+          :title="tableHeaderTitle"
+          :tabs="tabs"
+          :buttons="buttons"
+          @tabClick="handleTabClick"
+          @buttonClick="handleButtonClick"
+        ></MyTableHeader>
 
-        <MyTable :tableData="tableData" :formData="formData" :minWidth="340" ref="myTableRef"
-          @selection-change="handleSelectionChange" :isOperate="isOperate">
-     
+        <MyTable
+          :tableData="tableData"
+          :formData="formData"
+          :minWidth="340"
+          ref="myTableRef"
+          @selection-change="handleSelectionChange"
+          :isOperate="isOperate"
+        >
         </MyTable>
-        <MyPagination :total="tableTotal" :page-size="pageSize" :current-page="currentPage"
-          @pageChange="pagi_changePage" @sizeChange="pagi_changeSize"></MyPagination>
+        <MyPagination
+          :total="tableTotal"
+          :page-size="pageSize"
+          :current-page="currentPage"
+          @pageChange="pagi_changePage"
+          @sizeChange="pagi_changeSize"
+        ></MyPagination>
       </el-main>
     </el-container>
-
- 
   </el-container>
 </template>
 <script>
-import {
-  getTabAccessConfigList,
-  addTabAccessConfig,
-  updateTabAccessConfigById,
-  viewTabAccessConfigById,
-  delTabAccessConfigById,
-  exportTabAccessConfig,
-} from "@/api/unified-access/access-config";
+import { getExchangeCount  } from "@/api/unified-access/access-statistical-analysis.js";
 import MyHeader from "@/components/MyHeader";
 import MyTable from "@/components/MyTable";
 import MyPagination from "@/components/MyPagination";
@@ -89,14 +95,14 @@ export default {
     MyTable,
     MyPagination,
   },
-  data () {
+  data() {
     return {
       searchformModel: {},
       pickerOptions: {
         shortcuts: [
           {
             text: "最近一周",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
@@ -105,7 +111,7 @@ export default {
           },
           {
             text: "最近一个月",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
@@ -114,7 +120,7 @@ export default {
           },
           {
             text: "最近三个月",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
@@ -127,11 +133,13 @@ export default {
       title: "新增",
       rowObj: {},
       type: "add",
+      today: "",
+      isOperate:false,
       tableData: [],
       formData: [
         {
           label: "操作表",
-          fieldName: "dataManner",
+          fieldName: "tableName",
           type: "input",
           showInTable: true,
           value: "",
@@ -139,39 +147,39 @@ export default {
         },
         {
           label: "inx",
-          fieldName: "gatewayIp",
+          fieldName: "inx",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
         {
-          label: "日志_Select数量",
-          fieldName: "gatewayPort",
+          label: "表当日实际Insert数量",
+          fieldName: "insertCount",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
         {
-          label: "日志_Insert数量",
-          fieldName: "sixIp",
+          label: "日志_Update数量",
+          fieldName: "updateCountLog",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
         {
-          label: "表当日实际Insert数量",
-          fieldName: "sixPort",
+          label: "表当日实际update数量",
+          fieldName: "updateCount",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
         {
-          label: "日志_Update数量",
-          fieldName: "offerSystem",
+          label: "日志_Delete数量",
+          fieldName: "deleteCountLog",
           type: "input",
           showInTable: true,
           value: "",
@@ -179,55 +187,63 @@ export default {
         },
 
         {
-          label: "表当日实际update数量",
-          fieldName: "receptionSystem",
+          label: "表当日实际Delete数量",
+          fieldName: "deleteCount",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
         {
-          label: "日志_Delete数量",
-          fieldName: "dataDetail",
+          label: "插入失败",
+          fieldName: "insertError",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
         {
-          label: "表当日实际Delete数量",
-          fieldName: "runTime",
+          label: "更新失败",
+          fieldName: "updateError",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
-          {
-          label: "插入失败",
-          fieldName: "runTime",
+        {
+          label: "删除失败",
+          fieldName: "deleteError",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
-          {
-          label: "更新失败",
-          fieldName: "runTime",
+        {
+          label: "操作时间",
+          fieldName: "time",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
-          {
-          label: "删除失败",
+        {
+          label: "插入_更新_删除总量",
+          fieldName: "allCount",
+          type: "input",
+          showInTable: true,
+          value: "",
+          width: "",
+        },
+        {
+          label: "jkcloud实际入库数量",
           fieldName: "runTime",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
-           {
-          label: "操作时间",
+        {
+          label: "数量对比差值",
           fieldName: "runTime",
           type: "input",
           showInTable: true,
@@ -305,14 +321,14 @@ export default {
 
   methods: {
     // 头部搜索框
-    handleHeaderFormSubmit (form) {
+    handleHeaderFormSubmit(form) {
       this.searchForm = form;
       this.getList();
     },
     // 树结构点击
-    handleNodeClick () { },
+    handleNodeClick() {},
     // 列表头部
-    handleTabClick (tab) {
+    handleTabClick(tab) {
       this.tabs.forEach((item) => {
         if (item.label === tab.label) {
           item.active = true;
@@ -322,7 +338,7 @@ export default {
       });
     },
     // 列表头部功能按钮
-    handleButtonClick (methodName) {
+    handleButtonClick(methodName) {
       console.log(methodName, "methodName");
 
       switch (methodName) {
@@ -357,8 +373,8 @@ export default {
               type: "warning",
               center: true,
             })
-              .then(() => { })
-              .catch(() => { });
+              .then(() => {})
+              .catch(() => {});
           }
           break;
 
@@ -367,14 +383,17 @@ export default {
       }
     },
     // 处理选中项变化
-    handleSelectionChange (selectedRows) {
+    handleSelectionChange(selectedRows) {
       this.selectedRows = selectedRows; // 获取选中的行
     },
 
-    getList () {
-      getTabAccessConfigList({
+    getList() {
+      const todayDate = new Date();
+      this.today = this.formatDate(todayDate);
+      getExchangeCount({
         pageNum: this.currentPage,
         pageSize: this.pageSize,
+        dateTime: this.today,
         ...this.searchForm,
       }).then((res) => {
         if (+res.code === 200) {
@@ -383,31 +402,37 @@ export default {
         }
       });
     },
+    formatDate(date) {
+      const year = date.getFullYear();
+      const month = String(date.getMonth() + 1).padStart(2, "0");
+      const day = String(date.getDate()).padStart(2, "0");
+      return `${year}-${month}-${day}`;
+    },
     // 列表分页
-    pagi_changePage (page) {
+    pagi_changePage(page) {
       this.currentPage = page;
       this.getList();
     },
-    pagi_changeSize (size) {
+    pagi_changeSize(size) {
       this.pageSize = size;
       this.getList();
     },
 
     // 弹窗
-    handleConfirm () {
+    handleConfirm() {
       this.dialogVisible = true;
     },
-    handleClose () {
+    handleClose() {
       this.dialogVisible = false;
     },
 
     // 编辑
-    handleView (row) {
+    handleView(row) {
       this.rowObj = row;
       this.title = "查看";
       this.showDialog = true;
     },
-    handleEdit (row) {
+    handleEdit(row) {
       console.log(row, "row");
       this.rowObj = row;
       console.log(this.rowObj, "this.rowObj");
@@ -416,11 +441,11 @@ export default {
       this.showDialog = true;
     },
 
-    beforeClose () {
+    beforeClose() {
       this.showDialog = false;
     },
 
-    handleStart (row) {
+    handleStart(row) {
       let pForm = {};
       pForm = { ...row };
       pForm.status = 1;
@@ -436,7 +461,7 @@ export default {
         }
       });
     },
-    handleStop (row) {
+    handleStop(row) {
       let pForm = {};
       pForm = { ...row };
       pForm.status = 0;
@@ -452,7 +477,7 @@ export default {
         }
       });
     },
-    handleDelete (row) {
+    handleDelete(row) {
       this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
         confirmButtonText: "确定",
         cancelButtonText: "取消",
@@ -481,9 +506,8 @@ export default {
       console.log(row, "row");
     },
   },
-  created () { },
-  mounted () {
-    console.log("接入配置");
+  created() {},
+  mounted() {
     this.getList();
   },
 };

+ 28 - 35
src/views/unified-access/access-statistical-analysis/daily-topic-consumption-volume/index.vue

@@ -1,9 +1,10 @@
 <template>
   <el-container>
-    <el-header height="80px" class="content-header">
+    <el-header height="30px" class="content-header">
       <div class="header-container">
-        <div class="header-title">当天TOPIC生成消费量</div>
-        <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
+        <!-- <div class="header-title">当天TOPIC生成消费量</div> -->
+        <div class="header-title">昨天TOPIC生成消费量</div>
+        <!-- <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
           inline>
           <el-form-item label="topic名称" prop="name">
             <el-input v-model="searchformModel.name" placeholder="请输入topic名称"></el-input>
@@ -48,7 +49,7 @@
             <el-button type="primary" size="mini" @click="handleSubmit">搜索</el-button>
             <el-button size="mini" @click="handleReset">重置</el-button>
           </el-form-item>
-        </el-form>
+        </el-form> -->
       </div>
     </el-header>
     <el-container>
@@ -57,9 +58,9 @@
           @buttonClick="handleButtonClick"></MyTableHeader>
 
         <MyTable :tableData="tableData" :formData="formData" :minWidth="60" ref="myTableRef"
-          @selection-change="handleSelectionChange" >
+          @selection-change="handleSelectionChange" :isOperate="isOperate">
                     <!-- 自定义操作按钮,传递 row 和 index -->
-          <template #operation="{ row, index }">
+          <!-- <template #operation="{ row, index }">
             <el-button
               size="mini"
               @click="handleView(row, 'view')"
@@ -68,7 +69,7 @@
             >
 
    
-          </template>
+          </template> -->
         </MyTable>
         <MyPagination :total="tableTotal" :page-size="pageSize" :current-page="currentPage"
           @pageChange="pagi_changePage" @sizeChange="pagi_changeSize"></MyPagination>
@@ -77,14 +78,7 @@
   </el-container>
 </template>
 <script>
-import {
-  getTabAccessConfigList,
-  addTabAccessConfig,
-  updateTabAccessConfigById,
-  viewTabAccessConfigById,
-  delTabAccessConfigById,
-  exportTabAccessConfig,
-} from "@/api/unified-access/access-config";
+import { getTopicCountYesterday } from "@/api/unified-access/access-statistical-analysis.js";
 import MyHeader from "@/components/MyHeader";
 import MyTable from "@/components/MyTable";
 import MyPagination from "@/components/MyPagination";
@@ -140,40 +134,41 @@ export default {
       formData: [
         {
           label: "主题topic名称",
-          fieldName: "dataManner",
+          fieldName: "tabName",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
+        // {
+        //   label: "表单中文名称",
+        //   fieldName: "gatewayIp",
+        //   type: "input",
+        //   showInTable: true,
+        //   value: "",
+        //   width: "",
+        // },
+    
+  
         {
-          label: "表单中文名称",
-          fieldName: "gatewayIp",
+          label: "发送量",
+          fieldName: "sendCount",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
-        {
-          label: "表单英文名称",
-          fieldName: "gatewayPort",
+          {
+          label: "topic接收量",
+          fieldName: "receiveCount",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
-  
         {
-          label: "场景",
-          fieldName: "runTime",
-          type: "input",
-          showInTable: true,
-          value: "",
-          width: "",
-        },
-          {
-          label: "topic接收量",
-          fieldName: "runTime",
+          label: "时间",
+          fieldName: "time",
           type: "input",
           showInTable: true,
           value: "",
@@ -318,7 +313,7 @@ export default {
     },
 
     getList () {
-      getTabAccessConfigList({
+      getTopicCountYesterday({
         pageNum: this.currentPage,
         pageSize: this.pageSize,
         ...this.searchForm,
@@ -424,12 +419,10 @@ export default {
             message: "已取消删除",
           });
         });
-      console.log(row, "row");
     },
   },
   created () { },
   mounted () {
-    console.log("接入配置");
     this.getList();
   },
 };

+ 117 - 75
src/views/unified-access/access-statistical-analysis/jkcloud-actual-number/index.vue

@@ -1,12 +1,20 @@
 <template>
   <el-container>
-    <el-header height="80px" class="content-header">
+    <el-header height="30px" class="content-header">
       <div class="header-container">
         <div class="header-title">jkcloud当前实际数量</div>
-        <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
-          inline>
+        <!-- <el-form
+          :model="searchformModel"
+          ref="searchForm"
+          label-position="left"
+          class="header-form-detail-inline"
+          inline
+        >
           <el-form-item label="表名" prop="name">
-            <el-input v-model="searchformModel.name" placeholder="请输入表名"></el-input>
+            <el-input
+              v-model="searchformModel.name"
+              placeholder="请输入表名"
+            ></el-input>
           </el-form-item>
           <el-form-item label="更新方式" prop="name">
             <el-radio-group v-model="searchformModel.radio4" size="mini">
@@ -16,27 +24,52 @@
             </el-radio-group>
           </el-form-item>
           <el-form-item label="六统一接口" prop="name">
-            <el-input v-model="searchformModel.name" placeholder="请输入六统一接口"></el-input>
+            <el-input
+              v-model="searchformModel.name"
+              placeholder="请输入六统一接口"
+            ></el-input>
           </el-form-item>
           <el-form-item label="数据源(系统名称)" prop="name">
-            <el-input v-model="searchformModel.name" placeholder="请输入数据源(系统名称)"></el-input>
+            <el-input
+              v-model="searchformModel.name"
+              placeholder="请输入数据源(系统名称)"
+            ></el-input>
           </el-form-item>
           <el-form-item label="数据源IP" prop="name">
-            <el-input v-model="searchformModel.name" placeholder="请输入数据源IP"></el-input>
+            <el-input
+              v-model="searchformModel.name"
+              placeholder="请输入数据源IP"
+            ></el-input>
           </el-form-item>
           <el-form-item label="数据源接收方(系统名称)" prop="name">
-            <el-input v-model="searchformModel.name" placeholder="请输入数据源接收方(系统名称)"></el-input>
+            <el-input
+              v-model="searchformModel.name"
+              placeholder="请输入数据源接收方(系统名称)"
+            ></el-input>
           </el-form-item>
           <el-form-item label="数据源接收方IP" prop="name">
-            <el-input v-model="searchformModel.name" placeholder="请输入数据源接收方IP"></el-input>
+            <el-input
+              v-model="searchformModel.name"
+              placeholder="请输入数据源接收方IP"
+            ></el-input>
           </el-form-item>
           <el-form-item label="时间" prop="name">
             <div style="display: flex; align-items: center; width: 100%">
-              <el-date-picker v-model="searchformModel.value2" type="datetimerange" :picker-options="pickerOptions"
-                range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" align="right">
+              <el-date-picker
+                v-model="searchformModel.value2"
+                type="datetimerange"
+                :picker-options="pickerOptions"
+                range-separator="至"
+                start-placeholder="开始日期"
+                end-placeholder="结束日期"
+                align="right"
+              >
               </el-date-picker>
-              <el-radio-group v-model="searchformModel.radio4" size="mini"
-                style="display: flex; width: 100%; margin-left: 10px">
+              <el-radio-group
+                v-model="searchformModel.radio4"
+                size="mini"
+                style="display: flex; width: 100%; margin-left: 10px"
+              >
                 <el-radio-button label="当天"></el-radio-button>
                 <el-radio-button label="当周"></el-radio-button>
                 <el-radio-button label="当月"></el-radio-button>
@@ -45,35 +78,46 @@
             </div>
           </el-form-item>
           <el-form-item label="" prop="">
-            <el-button type="primary" size="mini" @click="handleSubmit">搜索</el-button>
+            <el-button type="primary" size="mini" @click="handleSubmit"
+              >搜索</el-button
+            >
             <el-button size="mini" @click="handleReset">重置</el-button>
           </el-form-item>
-        </el-form>
+        </el-form> -->
       </div>
     </el-header>
     <el-container>
       <el-main>
-        <MyTableHeader :title="tableHeaderTitle" :tabs="tabs" :buttons="buttons" @tabClick="handleTabClick"
-          @buttonClick="handleButtonClick"></MyTableHeader>
+        <MyTableHeader
+          :title="tableHeaderTitle"
+          :tabs="tabs"
+          :buttons="buttons"
+          @tabClick="handleTabClick"
+          @buttonClick="handleButtonClick"
+        ></MyTableHeader>
 
-        <MyTable :tableData="tableData" :formData="formData" :minWidth="340" ref="myTableRef"
-          @selection-change="handleSelectionChange" :isOperate="isOperate">
+        <MyTable
+          :tableData="tableData"
+          :formData="formData"
+          :minWidth="340"
+          ref="myTableRef"
+          @selection-change="handleSelectionChange"
+          :isOperate="isOperate"
+        >
         </MyTable>
-        <MyPagination :total="tableTotal" :page-size="pageSize" :current-page="currentPage"
-          @pageChange="pagi_changePage" @sizeChange="pagi_changeSize"></MyPagination>
+        <MyPagination
+          :total="tableTotal"
+          :page-size="pageSize"
+          :current-page="currentPage"
+          @pageChange="pagi_changePage"
+          @sizeChange="pagi_changeSize"
+        ></MyPagination>
       </el-main>
     </el-container>
   </el-container>
 </template>
 <script>
-import {
-  getTabAccessConfigList,
-  addTabAccessConfig,
-  updateTabAccessConfigById,
-  viewTabAccessConfigById,
-  delTabAccessConfigById,
-  exportTabAccessConfig,
-} from "@/api/unified-access/access-config";
+import { getJkcloudCount } from "@/api/unified-access/access-statistical-analysis.js";
 import MyHeader from "@/components/MyHeader";
 import MyTable from "@/components/MyTable";
 import MyPagination from "@/components/MyPagination";
@@ -86,14 +130,14 @@ export default {
     MyTable,
     MyPagination,
   },
-  data () {
+  data() {
     return {
       searchformModel: {},
       pickerOptions: {
         shortcuts: [
           {
             text: "最近一周",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
@@ -102,7 +146,7 @@ export default {
           },
           {
             text: "最近一个月",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
@@ -111,7 +155,7 @@ export default {
           },
           {
             text: "最近三个月",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
@@ -129,38 +173,37 @@ export default {
       formData: [
         {
           label: "表名",
-          fieldName: "dataManner",
-          type: "input",
-          showInTable: true,
-          value: "",
-          width: "",
-        },
-        {
-          label: "inx",
-          fieldName: "gatewayIp",
+          fieldName: "tableName",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
+        // {
+        //   label: "inx",
+        //   fieldName: "gatewayIp",
+        //   type: "input",
+        //   showInTable: true,
+        //   value: "",
+        //   width: "",
+        // },
         {
           label: "表当前实际数量",
-          fieldName: "gatewayPort",
+          fieldName: "tableCount",
           type: "input",
           showInTable: true,
           value: "",
           width: "",
         },
-  
-        {
-          label: "操作时间",
-          fieldName: "runTime",
-          type: "input",
-          showInTable: true,
-          value: "",
-          width: "",
-        },
-       
+
+        // {
+        //   label: "操作时间",
+        //   fieldName: "runTime",
+        //   type: "input",
+        //   showInTable: true,
+        //   value: "",
+        //   width: "",
+        // },
       ],
       tableTotal: 0,
       pageSize: 10,
@@ -232,14 +275,14 @@ export default {
 
   methods: {
     // 头部搜索框
-    handleHeaderFormSubmit (form) {
+    handleHeaderFormSubmit(form) {
       this.searchForm = form;
       this.getList();
     },
     // 树结构点击
-    handleNodeClick () { },
+    handleNodeClick() {},
     // 列表头部
-    handleTabClick (tab) {
+    handleTabClick(tab) {
       this.tabs.forEach((item) => {
         if (item.label === tab.label) {
           item.active = true;
@@ -249,7 +292,7 @@ export default {
       });
     },
     // 列表头部功能按钮
-    handleButtonClick (methodName) {
+    handleButtonClick(methodName) {
       console.log(methodName, "methodName");
 
       switch (methodName) {
@@ -284,8 +327,8 @@ export default {
               type: "warning",
               center: true,
             })
-              .then(() => { })
-              .catch(() => { });
+              .then(() => {})
+              .catch(() => {});
           }
           break;
 
@@ -294,12 +337,12 @@ export default {
       }
     },
     // 处理选中项变化
-    handleSelectionChange (selectedRows) {
+    handleSelectionChange(selectedRows) {
       this.selectedRows = selectedRows; // 获取选中的行
     },
 
-    getList () {
-      getTabAccessConfigList({
+    getList() {
+      getJkcloudCount({
         pageNum: this.currentPage,
         pageSize: this.pageSize,
         ...this.searchForm,
@@ -311,30 +354,30 @@ export default {
       });
     },
     // 列表分页
-    pagi_changePage (page) {
+    pagi_changePage(page) {
       this.currentPage = page;
       this.getList();
     },
-    pagi_changeSize (size) {
+    pagi_changeSize(size) {
       this.pageSize = size;
       this.getList();
     },
 
     // 弹窗
-    handleConfirm () {
+    handleConfirm() {
       this.dialogVisible = true;
     },
-    handleClose () {
+    handleClose() {
       this.dialogVisible = false;
     },
 
     // 编辑
-    handleView (row) {
+    handleView(row) {
       this.rowObj = row;
       this.title = "查看";
       this.showDialog = true;
     },
-    handleEdit (row) {
+    handleEdit(row) {
       console.log(row, "row");
       this.rowObj = row;
       console.log(this.rowObj, "this.rowObj");
@@ -343,11 +386,11 @@ export default {
       this.showDialog = true;
     },
 
-    beforeClose () {
+    beforeClose() {
       this.showDialog = false;
     },
 
-    handleStart (row) {
+    handleStart(row) {
       let pForm = {};
       pForm = { ...row };
       pForm.status = 1;
@@ -363,7 +406,7 @@ export default {
         }
       });
     },
-    handleStop (row) {
+    handleStop(row) {
       let pForm = {};
       pForm = { ...row };
       pForm.status = 0;
@@ -379,7 +422,7 @@ export default {
         }
       });
     },
-    handleDelete (row) {
+    handleDelete(row) {
       this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
         confirmButtonText: "确定",
         cancelButtonText: "取消",
@@ -408,9 +451,8 @@ export default {
       console.log(row, "row");
     },
   },
-  created () { },
-  mounted () {
-    console.log("接入配置");
+  created() {},
+  mounted() {
     this.getList();
   },
 };

+ 8 - 17
src/views/unified-access/access-statistical-analysis/latest-data-push/index.vue

@@ -1,9 +1,9 @@
 <template>
   <el-container>
-    <el-header height="80px" class="content-header">
+    <el-header height="30px" class="content-header">
       <div class="header-container">
         <div class="header-title">最新数据推送</div>
-        <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
+        <!-- <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
           inline>
           <el-form-item label="表名" prop="name">
             <el-input v-model="searchformModel.name" placeholder="请输入表名"></el-input>
@@ -48,7 +48,7 @@
             <el-button type="primary" size="mini" @click="handleSubmit">搜索</el-button>
             <el-button size="mini" @click="handleReset">重置</el-button>
           </el-form-item>
-        </el-form>
+        </el-form> -->
       </div>
     </el-header>
     <el-container>
@@ -68,14 +68,7 @@
   </el-container>
 </template>
 <script>
-import {
-  getTabAccessConfigList,
-  addTabAccessConfig,
-  updateTabAccessConfigById,
-  viewTabAccessConfigById,
-  delTabAccessConfigById,
-  exportTabAccessConfig,
-} from "@/api/unified-access/access-config";
+import { getNew } from "@/api/unified-access/access-statistical-analysis.js";
 import MyHeader from "@/components/MyHeader";
 import MyTable from "@/components/MyTable";
 import MyPagination from "@/components/MyPagination";
@@ -131,7 +124,7 @@ export default {
       formData: [
         {
           label: "表名",
-          fieldName: "dataManner",
+          fieldName: "tableName",
           type: "input",
           showInTable: true,
           value: "",
@@ -139,7 +132,7 @@ export default {
         },
         {
           label: "操作时间",
-          fieldName: "gatewayIp",
+          fieldName: "time",
           type: "input",
           showInTable: true,
           value: "",
@@ -147,7 +140,7 @@ export default {
         },
         {
           label: "操作",
-          fieldName: "gatewayPort",
+          fieldName: "type",
           type: "input",
           showInTable: true,
           value: "",
@@ -299,7 +292,7 @@ export default {
     },
 
     getList () {
-      getTabAccessConfigList({
+      getNew({
         pageNum: this.currentPage,
         pageSize: this.pageSize,
         ...this.searchForm,
@@ -405,12 +398,10 @@ export default {
             message: "已取消删除",
           });
         });
-      console.log(row, "row");
     },
   },
   created () { },
   mounted () {
-    console.log("接入配置");
     this.getList();
   },
 };

+ 11 - 20
src/views/unified-access/access-statistical-analysis/sync-result/index.vue

@@ -1,9 +1,9 @@
 <template>
   <el-container>
-    <el-header height="80px" class="content-header">
+    <el-header height="30px" class="content-header">
       <div class="header-container">
         <div class="header-title">统一接入同步结果</div>
-        <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
+        <!-- <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
           inline>
           <el-form-item label="表名" prop="name">
             <el-input v-model="searchformModel.name" placeholder="请输入表名"></el-input>
@@ -48,7 +48,7 @@
             <el-button type="primary" size="mini" @click="handleSubmit">搜索</el-button>
             <el-button size="mini" @click="handleReset">重置</el-button>
           </el-form-item>
-        </el-form>
+        </el-form> -->
       </div>
     </el-header>
     <el-container>
@@ -68,14 +68,7 @@
   </el-container>
 </template>
 <script>
-import {
-  getTabAccessConfigList,
-  addTabAccessConfig,
-  updateTabAccessConfigById,
-  viewTabAccessConfigById,
-  delTabAccessConfigById,
-  exportTabAccessConfig,
-} from "@/api/unified-access/access-config";
+import { getTabSystemMsgList } from "@/api/unified-access/access-statistical-analysis.js";
 import MyHeader from "@/components/MyHeader";
 import MyTable from "@/components/MyTable";
 import MyPagination from "@/components/MyPagination";
@@ -131,7 +124,7 @@ export default {
       formData: [
         {
           label: "源系统分类",
-          fieldName: "dataManner",
+          fieldName: "systemName",
           type: "input",
           showInTable: true,
           value: "",
@@ -139,7 +132,7 @@ export default {
         },
         {
           label: "表单名称",
-          fieldName: "gatewayIp",
+          fieldName: "tableName",
           type: "input",
           showInTable: true,
           value: "",
@@ -147,7 +140,7 @@ export default {
         },
         {
           label: "表名",
-          fieldName: "gatewayPort",
+          fieldName: "tableEnglishName",
           type: "input",
           showInTable: true,
           value: "",
@@ -155,7 +148,7 @@ export default {
         },
         {
           label: "是否正常",
-          fieldName: "sixIp",
+          fieldName: "state",
           type: "input",
           showInTable: true,
           value: "",
@@ -163,7 +156,7 @@ export default {
         },
         {
           label: "更新方式",
-          fieldName: "sixPort",
+          fieldName: "updateType",
           type: "input",
           showInTable: true,
           value: "",
@@ -171,7 +164,7 @@ export default {
         },
         {
           label: "业务量",
-          fieldName: "offerSystem",
+          fieldName: "ps",
           type: "input",
           showInTable: true,
           value: "",
@@ -317,7 +310,7 @@ export default {
     },
 
     getList () {
-      getTabAccessConfigList({
+      getTabSystemMsgList({
         pageNum: this.currentPage,
         pageSize: this.pageSize,
         ...this.searchForm,
@@ -423,12 +416,10 @@ export default {
             message: "已取消删除",
           });
         });
-      console.log(row, "row");
     },
   },
   created () { },
   mounted () {
-    console.log("接入配置");
     this.getList();
   },
 };

+ 88 - 68
src/views/unified-access/access-statistical-analysis/yesterday-exchange-volume/index.vue

@@ -1,9 +1,9 @@
 <template>
   <el-container>
-    <el-header height="80px" class="content-header">
+    <el-header height="30px" class="content-header">
       <div class="header-container">
         <div class="header-title">昨天天交换量</div>
-        <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
+        <!-- <el-form :model="searchformModel" ref="searchForm" label-position="left" class="header-form-detail-inline"
           inline>
           <el-form-item label="表名" prop="name">
             <el-input v-model="searchformModel.name" placeholder="请输入表名"></el-input>
@@ -48,32 +48,41 @@
             <el-button type="primary" size="mini" @click="handleSubmit">搜索</el-button>
             <el-button size="mini" @click="handleReset">重置</el-button>
           </el-form-item>
-        </el-form>
+        </el-form> -->
       </div>
     </el-header>
     <el-container>
       <el-main>
-        <MyTableHeader :title="tableHeaderTitle" :tabs="tabs" :buttons="buttons" @tabClick="handleTabClick"
-          @buttonClick="handleButtonClick"></MyTableHeader>
+        <MyTableHeader
+          :title="tableHeaderTitle"
+          :tabs="tabs"
+          :buttons="buttons"
+          @tabClick="handleTabClick"
+          @buttonClick="handleButtonClick"
+        ></MyTableHeader>
 
-        <MyTable :tableData="tableData" :formData="formData" :minWidth="340" ref="myTableRef"
-          @selection-change="handleSelectionChange" :isOperate="isOperate">
+        <MyTable
+          :tableData="tableData"
+          :formData="formData"
+          :minWidth="340"
+          ref="myTableRef"
+          @selection-change="handleSelectionChange"
+          :isOperate="isOperate"
+        >
         </MyTable>
-        <MyPagination :total="tableTotal" :page-size="pageSize" :current-page="currentPage"
-          @pageChange="pagi_changePage" @sizeChange="pagi_changeSize"></MyPagination>
+        <MyPagination
+          :total="tableTotal"
+          :page-size="pageSize"
+          :current-page="currentPage"
+          @pageChange="pagi_changePage"
+          @sizeChange="pagi_changeSize"
+        ></MyPagination>
       </el-main>
     </el-container>
   </el-container>
 </template>
 <script>
-import {
-  getTabAccessConfigList,
-  addTabAccessConfig,
-  updateTabAccessConfigById,
-  viewTabAccessConfigById,
-  delTabAccessConfigById,
-  exportTabAccessConfig,
-} from "@/api/unified-access/access-config";
+import { getExchangeCount } from "@/api/unified-access/access-statistical-analysis.js";
 import MyHeader from "@/components/MyHeader";
 import MyTable from "@/components/MyTable";
 import MyPagination from "@/components/MyPagination";
@@ -86,14 +95,14 @@ export default {
     MyTable,
     MyPagination,
   },
-  data () {
+  data() {
     return {
       searchformModel: {},
       pickerOptions: {
         shortcuts: [
           {
             text: "最近一周",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
@@ -102,7 +111,7 @@ export default {
           },
           {
             text: "最近一个月",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
@@ -111,7 +120,7 @@ export default {
           },
           {
             text: "最近三个月",
-            onClick (picker) {
+            onClick(picker) {
               const end = new Date();
               const start = new Date();
               start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
@@ -125,11 +134,12 @@ export default {
       rowObj: {},
       type: "add",
       isOperate: false,
+      yesterday:'',
       tableData: [],
       formData: [
         {
           label: "操作表",
-          fieldName: "dataManner",
+          fieldName: "tableName",
           type: "input",
           showInTable: true,
           value: "",
@@ -137,7 +147,7 @@ export default {
         },
         {
           label: "inx",
-          fieldName: "gatewayIp",
+          fieldName: "inx",
           type: "input",
           showInTable: true,
           value: "",
@@ -145,7 +155,7 @@ export default {
         },
         {
           label: "表当日实际Insert数量",
-          fieldName: "gatewayPort",
+          fieldName: "insertCount",
           type: "input",
           showInTable: true,
           value: "",
@@ -153,7 +163,7 @@ export default {
         },
         {
           label: "日志_Update数量",
-          fieldName: "sixIp",
+          fieldName: "updateCountLog",
           type: "input",
           showInTable: true,
           value: "",
@@ -161,7 +171,7 @@ export default {
         },
         {
           label: "表当日实际update数量",
-          fieldName: "sixPort",
+          fieldName: "updateCount",
           type: "input",
           showInTable: true,
           value: "",
@@ -169,7 +179,7 @@ export default {
         },
         {
           label: "日志_Delete数量",
-          fieldName: "offerSystem",
+          fieldName: "deleteCountLog",
           type: "input",
           showInTable: true,
           value: "",
@@ -178,7 +188,7 @@ export default {
 
         {
           label: "表当日实际Delete数量",
-          fieldName: "receptionSystem",
+          fieldName: "deleteCount",
           type: "input",
           showInTable: true,
           value: "",
@@ -186,7 +196,7 @@ export default {
         },
         {
           label: "插入失败",
-          fieldName: "dataDetail",
+          fieldName: "insertError",
           type: "input",
           showInTable: true,
           value: "",
@@ -194,7 +204,7 @@ export default {
         },
         {
           label: "更新失败",
-          fieldName: "runTime",
+          fieldName: "updateError",
           type: "input",
           showInTable: true,
           value: "",
@@ -202,7 +212,7 @@ export default {
         },
         {
           label: "删除失败",
-          fieldName: "runTime",
+          fieldName: "deleteError",
           type: "input",
           showInTable: true,
           value: "",
@@ -210,7 +220,7 @@ export default {
         },
         {
           label: "操作时间",
-          fieldName: "runTime",
+          fieldName: "time",
           type: "input",
           showInTable: true,
           value: "",
@@ -218,7 +228,7 @@ export default {
         },
         {
           label: "插入_更新_删除总量",
-          fieldName: "runTime",
+          fieldName: "allCount",
           type: "input",
           showInTable: true,
           value: "",
@@ -250,18 +260,18 @@ export default {
       tableHeaderTitle: "项目列表",
       tabs: [],
       buttons: [
-        {
-          label: "导出",
-          type: "primary",
-          methodName: "action1",
-          icon: "el-icon-upload",
-        },
-        {
-          label: "对账",
-          type: "primary",
-          methodName: "action2",
-          icon: "el-icon-download",
-        },
+        // {
+        //   label: "导出",
+        //   type: "primary",
+        //   methodName: "action1",
+        //   icon: "el-icon-upload",
+        // },
+        // {
+        //   label: "对账",
+        //   type: "primary",
+        //   methodName: "action2",
+        //   icon: "el-icon-download",
+        // },
       ],
 
       headerFormData: [
@@ -311,14 +321,14 @@ export default {
 
   methods: {
     // 头部搜索框
-    handleHeaderFormSubmit (form) {
+    handleHeaderFormSubmit(form) {
       this.searchForm = form;
       this.getList();
     },
     // 树结构点击
-    handleNodeClick () { },
+    handleNodeClick() {},
     // 列表头部
-    handleTabClick (tab) {
+    handleTabClick(tab) {
       this.tabs.forEach((item) => {
         if (item.label === tab.label) {
           item.active = true;
@@ -328,7 +338,7 @@ export default {
       });
     },
     // 列表头部功能按钮
-    handleButtonClick (methodName) {
+    handleButtonClick(methodName) {
       console.log(methodName, "methodName");
 
       switch (methodName) {
@@ -363,8 +373,8 @@ export default {
               type: "warning",
               center: true,
             })
-              .then(() => { })
-              .catch(() => { });
+              .then(() => {})
+              .catch(() => {});
           }
           break;
 
@@ -373,14 +383,20 @@ export default {
       }
     },
     // 处理选中项变化
-    handleSelectionChange (selectedRows) {
+    handleSelectionChange(selectedRows) {
       this.selectedRows = selectedRows; // 获取选中的行
     },
 
-    getList () {
-      getTabAccessConfigList({
+    getList() {
+      const todayDate = new Date()
+      // 获取昨天的日期
+      const yesterdayDate = new Date(todayDate);
+      yesterdayDate.setDate(todayDate.getDate() - 1);
+      this.yesterday = this.formatDate(yesterdayDate);
+      getExchangeCount({
         pageNum: this.currentPage,
         pageSize: this.pageSize,
+        dateTime: this.yesterday,
         ...this.searchForm,
       }).then((res) => {
         if (+res.code === 200) {
@@ -389,31 +405,37 @@ export default {
         }
       });
     },
+    formatDate(date) {
+      const year = date.getFullYear();
+      const month = String(date.getMonth() + 1).padStart(2, "0");
+      const day = String(date.getDate()).padStart(2, "0");
+      return `${year}-${month}-${day}`;
+    },
     // 列表分页
-    pagi_changePage (page) {
+    pagi_changePage(page) {
       this.currentPage = page;
       this.getList();
     },
-    pagi_changeSize (size) {
+    pagi_changeSize(size) {
       this.pageSize = size;
       this.getList();
     },
 
     // 弹窗
-    handleConfirm () {
+    handleConfirm() {
       this.dialogVisible = true;
     },
-    handleClose () {
+    handleClose() {
       this.dialogVisible = false;
     },
 
     // 编辑
-    handleView (row) {
+    handleView(row) {
       this.rowObj = row;
       this.title = "查看";
       this.showDialog = true;
     },
-    handleEdit (row) {
+    handleEdit(row) {
       console.log(row, "row");
       this.rowObj = row;
       console.log(this.rowObj, "this.rowObj");
@@ -422,11 +444,11 @@ export default {
       this.showDialog = true;
     },
 
-    beforeClose () {
+    beforeClose() {
       this.showDialog = false;
     },
 
-    handleStart (row) {
+    handleStart(row) {
       let pForm = {};
       pForm = { ...row };
       pForm.status = 1;
@@ -442,7 +464,7 @@ export default {
         }
       });
     },
-    handleStop (row) {
+    handleStop(row) {
       let pForm = {};
       pForm = { ...row };
       pForm.status = 0;
@@ -458,7 +480,7 @@ export default {
         }
       });
     },
-    handleDelete (row) {
+    handleDelete(row) {
       this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
         confirmButtonText: "确定",
         cancelButtonText: "取消",
@@ -484,12 +506,10 @@ export default {
             message: "已取消删除",
           });
         });
-      console.log(row, "row");
     },
   },
-  created () { },
-  mounted () {
-    console.log("接入配置");
+  created() {},
+  mounted() {
     this.getList();
   },
 };

+ 1 - 1
vue.config.js

@@ -36,7 +36,7 @@ module.exports = {
       [process.env.VUE_APP_BASE_API]: {
         // target: `http://10.1.161.127:8080`,
         // target: `http://10.1.161.183:6661`,
-        target: `http://192.168.136.30:6661`,
+        target: `http://192.168.136.166:6661`,
         // target: `http://10.1.162.158:6661`,
 
         changeOrigin: true,