diff --git a/04.系统编码/Frontend/.idea/workspace.xml b/04.系统编码/Frontend/.idea/workspace.xml
index eb7e067..2445d01 100644
--- a/04.系统编码/Frontend/.idea/workspace.xml
+++ b/04.系统编码/Frontend/.idea/workspace.xml
@@ -3,7 +3,6 @@
   <component name="ChangeListManager">
     <list default="true" id="4b7d7b72-f5b8-41e4-85d5-6267bdc12fc5" name="默认变更列表" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/src/components/Login.vue" beforeDir="false" afterPath="$PROJECT_DIR$/src/components/Login.vue" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/src/components/SystemManagement.vue" beforeDir="false" afterPath="$PROJECT_DIR$/src/components/SystemManagement.vue" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
@@ -79,6 +78,7 @@
       <workItem from="1638441956659" duration="5371000" />
       <workItem from="1638447904778" duration="262000" />
       <workItem from="1638496246090" duration="1527000" />
+      <workItem from="1638497917929" duration="616000" />
     </task>
     <task id="LOCAL-00001" summary="2021 12 01">
       <created>1638357539757</created>
diff --git a/04.系统编码/Frontend/src/components/SystemManagement.vue b/04.系统编码/Frontend/src/components/SystemManagement.vue
index e978a78..1df1462 100644
--- a/04.系统编码/Frontend/src/components/SystemManagement.vue
+++ b/04.系统编码/Frontend/src/components/SystemManagement.vue
@@ -44,7 +44,6 @@
               <el-pagination background
                              layout="prev, pager, next"
                              :total="total"
-                             page-size="2"
                              @prev-click="prev"
                              @next-click="next"
                              @current-change="changEnum">
@@ -53,7 +52,7 @@
           </div>
         </div>
       <!--弹出框--->
-      <el-dialog v-model="dialogFormVisible" :title="title" show-close=false center=true width="900px" top="17%">
+      <el-dialog v-model="dialogFormVisible" :title="title"  center=true width="900px" top="17%">
         <el-form :model="form">
           <el-form-item label="用户账号:" :label-width="formLabelWidth" >
             <el-input v-model="form.userAccountNumber" autocomplete="off" style="width: 260px" :disabled="isDisabled"></el-input>
@@ -98,7 +97,7 @@ export default {
             isDisabled:false,
             title:'',
             formLabelWidth:"100px",
-            total:"",
+            total:null,
             current:1,
             size:10,
             form:{
@@ -115,7 +114,8 @@ export default {
               current:option.current,
               size:option.size
             }).then((res:any)=>{
-              option.tableData=res.data
+              console.log(res,'1111')
+              // option.tableData=res.data
             })
           }