Browse Source

Merge branch 'superman' of http://git.shengws.com/zhangbj/xt_vue into superman

柳香萍 6 years ago
parent
commit
f12b241c31

+ 20 - 6
src/xt_pages/data/druguseTemplate.vue View File

@@ -28,6 +28,7 @@
28 28
             :row-class-name="tableRowClassNames"
29 29
             :span-method="merge"
30 30
             style="width: 100%;min-height:500px;"
31
+            :cell-class-name="adviceNameShow"
31 32
           >
32 33
             <el-table-column
33 34
               prop="id"
@@ -172,8 +173,8 @@
172 173
               </el-form>
173 174
               <div class="txsj" style="text-align: center;margin-bottom: 30px">
174 175
                 <el-button round @click="newRecordAction">新增医嘱内容</el-button>
175
-                <el-button round @click="deleteRecordAction">删除医嘱内容</el-button>
176 176
                 <el-button round @click="modifyRecordAction">修改医嘱内容</el-button>
177
+                <el-button round @click="deleteRecordAction">删除医嘱内容</el-button>
177 178
               </div>
178 179
               <el-table
179 180
                 ref="table" :data="adviceTableData"
@@ -241,7 +242,7 @@
241 242
                   </el-form-item>
242 243
                 </el-col>
243 244
                 <el-col :span="12">
244
-                  <el-form-item label="规格 :" required prop="advice_desc">
245
+                  <el-form-item label="规格 :" >
245 246
                     <el-input v-model="templateForm.advice_desc"></el-input>
246 247
                   </el-form-item>
247 248
 
@@ -377,7 +378,7 @@
377 378
 
378 379
                 </el-col>
379 380
                 <el-col :span="12">
380
-                  <el-form-item label="规格" prop="advice_desc">
381
+                  <el-form-item label="规格" >
381 382
                     <el-input v-model="templateFormEdit.advice_desc"></el-input>
382 383
                   </el-form-item>
383 384
                   <!-- <el-form-item label="药品规格 :" prop="drug_spec">
@@ -572,7 +573,7 @@
572 573
                   </el-form-item>
573 574
                 </el-col>
574 575
                 <el-col :span="12">
575
-                  <el-form-item label="规格 :" required prop="advice_desc">
576
+                  <el-form-item label="规格 :" >
576 577
                     <el-input v-model="templateForm.advice_desc"></el-input>
577 578
                   </el-form-item>
578 579
                   <!-- <el-form-item label="药品规格 :" prop="drug_spec">
@@ -1073,7 +1074,6 @@ export default {
1073 1074
         },
1074 1075
         templateRules: {
1075 1076
           advice_name: [{ required: true, message: '请填写医嘱内容' }],
1076
-          advice_desc: [{ required: true, message: '请填写规格' }]
1077 1077
 
1078 1078
         },
1079 1079
         templateEditRules: {
@@ -1152,7 +1152,13 @@ export default {
1152 1152
       this.unitsOption = getDataConfig('hemodialysis', 'units')
1153 1153
   },
1154 1154
     methods: {
1155
-
1155
+      adviceNameShow({row, column, rowIndex, columnIndex}){
1156
+        if(columnIndex==1) {
1157
+          return 'templateadvicenamedisplay';
1158
+        }else {
1159
+          return '';
1160
+        }
1161
+      },
1156 1162
       showCreatedTimes() {
1157 1163
         this.createdTimes = this.createdTimes + 1
1158 1164
       },
@@ -2173,3 +2179,11 @@ export default {
2173 2179
     }
2174 2180
   }
2175 2181
 </script>
2182
+<style>
2183
+
2184
+  .templateadvicenamedisplay .cell {
2185
+    float: left;
2186
+    text-align: left;
2187
+  }
2188
+</style>
2189
+

+ 14 - 3
src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue View File

@@ -5,7 +5,7 @@
5 5
       :visible.sync="isVisibility"
6 6
       width="1010px"
7 7
       @close="resetDialog"
8
-      modal-append-to-body=“false”
8
+      :modal-append-to-body="false"
9 9
     >
10 10
       <div class="txsj" v-show="showAdvicePanel">
11 11
         <el-button  round @click="openGroupFrom" :loading="deleLoading">新增医嘱</el-button>
@@ -29,7 +29,7 @@
29 29
       <!--&lt;!&ndash;:header-cell-style="{ backgroundColor: 'rgb(64, 158, 255)', color: 'white'}"&ndash;&gt;@current-change="selectRow"-->
30 30
       <el-table :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}" :data="doctor_advices" border style="width: 100%" v-show="showAdvicePanel"
31 31
                 ref="advices_list" :row-class-name="tableRowClassName" :span-method="mergeSpan"
32
-                @row-click="cellMouseEnter" modal-append-to-body=“false”
32
+                @row-click="cellMouseEnter" :cell-class-name="adviceNameShow" :modal-append-to-body="false"
33 33
       >
34 34
         <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
35 35
           <template slot-scope="scope">
@@ -192,7 +192,7 @@
192 192
       :show-close="isClose"
193 193
       :close-on-click-modal="isClose"
194 194
       :close-on-press-escape="isClose"
195
-      modal-append-to-body=“false”
195
+      :modal-append-to-body="false"
196 196
       >
197 197
       <el-date-picker
198 198
         v-model="execTime"
@@ -368,6 +368,13 @@ export default {
368 368
     },
369 369
     methods: {
370 370
 
371
+      adviceNameShow({row, column, rowIndex, columnIndex}){
372
+        if(columnIndex==2) {
373
+          return 'dialysisadvicenamedisplay';
374
+        }else {
375
+          return '';
376
+        }
377
+      },
371 378
       submitEditAdvice() {
372 379
         if (this.form.advice_name.length == 0) {
373 380
           this.$message.error('请填写医嘱名称')
@@ -1305,6 +1312,10 @@ export default {
1305 1312
     margin-bottom: 20px;
1306 1313
   }
1307 1314
 
1315
+  .dialysisadvicenamedisplay .cell {
1316
+    float: left;
1317
+    text-align: left;
1318
+  }
1308 1319
 </style>
1309 1320
 
1310 1321
 

+ 6 - 6
src/xt_pages/role/components/AdminInfoForm.vue View File

@@ -1,15 +1,15 @@
1 1
 <template>
2 2
     <el-dialog :title="formTitle" :visible.sync="dialogFormVisible">
3
-        <el-form :model="form" ref="form" :rules="rules" label-width="100px">
4
-                <el-form-item label="账号" prop="mobile">
3
+        <el-form :model="form" ref="form" :rules="rules" label-width="60px">
4
+                <el-form-item label="账号 : " prop="mobile">
5 5
                     <el-input v-model="form.mobile" placeholder="用户手机号" :disabled="form.id !==  0"></el-input>
6 6
                 </el-form-item>
7 7
 
8
-                <el-form-item label="姓名" prop="name">
8
+                <el-form-item label="姓名 : " prop="name">
9 9
                     <el-input v-model="form.name" placeholder="用户姓名"></el-input>
10 10
                 </el-form-item>
11 11
 
12
-                <el-form-item label="职称">
12
+                <el-form-item label="职称 : ">
13 13
                     <el-select v-model="form.user_type" placeholder="用户类型">
14 14
                         <el-option v-for="item in user_types" :label="item.name" :value="item.index" :key="item.index"></el-option>
15 15
                     </el-select>
@@ -19,13 +19,13 @@
19 19
                     </el-select>
20 20
                 </el-form-item>
21 21
 
22
-                <el-form-item label="角色">
22
+                <el-form-item label="角色 : ">
23 23
                     <el-select v-model="form.role" placeholder="角色">
24 24
                         <el-option v-for="item in roles" :key="item.id" :label="item.name" :value="item.id"></el-option>
25 25
                     </el-select>
26 26
                 </el-form-item>
27 27
 
28
-                <el-form-item label="介绍">
28
+                <el-form-item label="介绍 : ">
29 29
                     <Tinymce :height=400 menubar='' ref="editor" v-model="form.intro" :show_upload_img="false" />
30 30
                 </el-form-item>
31 31
 

+ 3 - 3
src/xt_pages/role/components/EditRole.vue View File

@@ -1,10 +1,10 @@
1 1
 <template>
2 2
     <el-dialog title='新增角色' width="600px" :visible.sync="visible" :before-close="_close">
3
-        <el-form :model="form" :rules="rules" ref="form" label-width="80px">
4
-            <el-form-item label="角色名称" prop="name">
3
+        <el-form :model="form" :rules="rules" ref="form" label-width="90px">
4
+            <el-form-item label="角色名称 : " prop="name">
5 5
                 <el-input v-model="form.name" placeholder="" maxlength="30" ></el-input>
6 6
             </el-form-item>
7
-            <el-form-item label="角色描述" prop="intro">
7
+            <el-form-item label="角色描述 : " prop="intro">
8 8
                 <el-input type="textarea" v-model="form.intro" placeholder="" resize="none" rows="4" ></el-input>
9 9
             </el-form-item>
10 10
         </el-form>

+ 8 - 8
src/xt_pages/sign/index.vue View File

@@ -10,7 +10,7 @@
10 10
                 <div class="dataTitle">患者列表</div>
11 11
                 <div style="margin-bottom: 10px;">
12 12
                     <el-input v-model="queryParams.keywords" placeholder="姓名/透析号" style="width: 180px;" @change="changeSearch"></el-input>&nbsp;
13
-                    <el-button type="primary" @change="changeSearch">搜索</el-button>
13
+                    <el-button type="primary" @change="changeSearch" icon="el-icon-search">搜索</el-button>
14 14
                     <el-select v-model="queryParams.schedule_type" style="width: 100px;" @change="changeSearch">
15 15
                     <el-option v-for="item in shiftOptions" :label="item.label" :value="item.value" :key="item.value"></el-option>
16 16
                     </el-select>
@@ -59,9 +59,9 @@
59 59
                     </div>
60 60
                     <div style="margin-bottom:12px;color:rgb(96,96,96);font-size:14px">
61 61
                      体温(℃):&nbsp;<el-input v-model="weigh_list.temperature" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp;
62
-                     脉搏(次/分):&nbsp;<el-input v-model="weigh_list.pulse_frequency" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp;
63
-                     呼吸(次/分):&nbsp;<el-input v-model="weigh_list.breathing_rate" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp;
64
-                     血压(mmHg):&nbsp;<el-input v-model="weigh_list.systolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input><span> / </span> <el-input v-model="weigh_list.diastolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input>
62
+                     <!-- 呼吸(次/分):&nbsp;<el-input v-model="weigh_list.breathing_rate" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp; -->
63
+                     血压(mmHg):&nbsp;<el-input v-model="weigh_list.systolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input><span> / </span> <el-input v-model="weigh_list.diastolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input>&nbsp;&nbsp;&nbsp;
64
+                     脉率(次/分):&nbsp;<el-input v-model="weigh_list.pulse_frequency" :disabled="disa" style="width:70px"></el-input>
65 65
                     </div>
66 66
                     <div class="border"></div>
67 67
                     <div style="margin-bottom:20px;color:rgb(96,96,96);font-size:14px">
@@ -70,9 +70,9 @@
70 70
                     </div>
71 71
                     <div style="margin-bottom:12px;color:rgb(96,96,96);font-size:14px">
72 72
                       体温(℃):&nbsp;<el-input v-model="weigh_infor.temperature" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp;
73
-                      脉搏(次/分):&nbsp;<el-input v-model="weigh_infor.pulse_frequency" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp;
74
-                      呼吸(次/分):&nbsp;<el-input v-model="weigh_infor.breathing_rate" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp;
75
-                      血压(mmHg):&nbsp;<el-input v-model="weigh_infor.systolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input> <span> / </span><el-input v-model="weigh_infor.diastolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input>
73
+                      <!-- 呼吸(次/分):&nbsp;<el-input v-model="weigh_infor.breathing_rate" :disabled="disa" style="width:70px"></el-input>&nbsp;&nbsp;&nbsp; -->
74
+                      血压(mmHg):&nbsp;<el-input v-model="weigh_infor.systolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input> <span> / </span><el-input v-model="weigh_infor.diastolic_blood_pressure" style="width: 70px" :disabled="disa"></el-input>&nbsp;&nbsp;&nbsp;
75
+                      脉率(次/分):&nbsp;<el-input v-model="weigh_infor.pulse_frequency" :disabled="disa" style="width:70px"></el-input>
76 76
                     </div>
77 77
 
78 78
                     <div class="border"></div>
@@ -198,7 +198,7 @@ export default {
198 198
         this.patients = []
199 199
         if (response.data.state === 1) {
200 200
           this.patients = response.data.data.patients
201
-          console.log('病人信息', this.patients[0].schedule)
201
+          // console.log('病人信息', this.patients[0].schedule)
202 202
           // 将没有排班的信息排除
203 203
           for (let i = this.patients.length - 1; i >= 0; i--) {
204 204
             if (this.patients[i].schedule.id == 0) {

+ 21 - 4
src/xt_pages/user/doctorAdvice.vue View File

@@ -4,7 +4,7 @@
4 4
         <div class="patient-app-container advice-container app-container">
5 5
             <div class="cellButton" style="float:right;">
6 6
               <el-button :disabled="$store.getters.xt_user.subscibe.state==3?true:false" size="small"   @click="openNew" type="primary" icon="el-icon-circle-plus-outline" >新增</el-button>
7
-                <el-button size="small"  @click="printThisInfo()" :type="adviceType==1 || adviceType == 3?'primary':'warning'" icon="el-icon-printer" >打印</el-button>            
7
+                <el-button size="small"  @click="printThisInfo()" :type="adviceType==1 || adviceType == 3?'primary':'warning'" icon="el-icon-printer" >打印</el-button>
8 8
             </div>
9 9
             <div class="cell clearfix">
10 10
                 <el-input   style="width: 400px;" v-model="listQuery.keywords" class="filter-item" size="small" />
@@ -32,7 +32,7 @@
32 32
                 <span class="cellLine"> - </span>
33 33
                 <el-date-picker size="small" v-model="listQuery.end_time"  prefix-icon="el-icon-date" @change="changeTime" :editable="false" style="width: 196px;" type="date" placeholder="选择日期时间" align="right" :picker-options="pickerOptions"  format="yyyy-MM-dd" value-format="yyyy-MM-dd"> </el-date-picker>
34 34
             </div>
35
-            <el-table @cell-click="clickuseradvicecell" :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"  row-class-name="user-advice-table-row" :span-method="mergeSpan" ref="multipleTable" :data="adviceTableData" border fit highlight-current-row @select="selectAdvice" @selection-change="changeAdvice" style="width: 100%;margin-top: 10px;" >
35
+            <el-table id="oictable" @cell-click="clickuseradvicecell" :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"  row-class-name="user-advice-table-row" :span-method="mergeSpan" ref="multipleTable" :data="adviceTableData" border fit highlight-current-row @select="selectAdvice" @selection-change="changeAdvice" style="width: 100%;margin-top: 10px;" :cell-class-name="adviceNameShow" >
36 36
 
37 37
                 <el-table-column align="center" label="全选" width="60px" type="selection" fixed></el-table-column>
38 38
                 <!--<el-table-column type="index" :index="indexMethod"  label="序号" width="60px" align="center"></el-table-column>-->
@@ -49,7 +49,7 @@
49 49
                     <span v-else></span>
50 50
                 </template>
51 51
                 </el-table-column>
52
-                <el-table-column  label="医嘱内容" property="advice_name" width="180"  style="word-break: keep-all;white-space:nowrap;">
52
+                <el-table-column  label="医嘱内容" property="advice_name" width="180" align="center" style="word-break: keep-all;white-space:nowrap;">
53 53
                     <template slot-scope="scope">
54 54
                     <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
55 55
                         <span class="el-dropdown-link" v-if="scope.row.parent_id == 0">
@@ -252,7 +252,7 @@
252 252
                         <el-col :span="5">
253 253
                             <el-button :disabled="$store.getters.xt_user.subscibe.state==3?true:false" round  @click="openGroupAdvice(1)">修改医嘱内容</el-button>
254 254
                         </el-col>
255
-                        
255
+
256 256
                     </el-row>
257 257
                     <el-row>
258 258
                       <el-col :span="24">
@@ -1178,6 +1178,13 @@ export default {
1178 1178
     onTranPatient: function(tranPatient) {
1179 1179
       this.currentPatient = tranPatient;
1180 1180
     },
1181
+    adviceNameShow({row, column, rowIndex, columnIndex}){
1182
+      if(columnIndex==3) {
1183
+        return 'advicenamedisplay';
1184
+      }else {
1185
+        return '';
1186
+      }
1187
+    },
1181 1188
     submitEditAdvice(formName) {
1182 1189
       this.$refs[formName].validate(valid => {
1183 1190
         if (valid) {
@@ -3022,8 +3029,14 @@ export default {
3022 3029
 };
3023 3030
 </script>
3024 3031
 
3032
+<style>
3033
+  #oictable ::-webkit-scrollbar {
3034
+    height: 15px;
3035
+  }
3036
+</style>
3025 3037
 
3026 3038
 <style rel="stylesheet/scss" lang="scss" scoped>
3039
+
3027 3040
 .printForm {
3028 3041
   width: 960px;
3029 3042
 }
@@ -3197,5 +3210,9 @@ export default {
3197 3210
   -webkit-transform: rotate(90deg) !important;
3198 3211
   transform: rotate(90deg) !important;
3199 3212
 }
3213
+.advicenamedisplay .cell {
3214
+    float: left;
3215
+    text-align: left;
3216
+}
3200 3217
 </style>
3201 3218
 

+ 28 - 18
src/xt_pages/user/inspection.vue View File

@@ -5,7 +5,7 @@
5 5
       <el-row :gutter="20">
6 6
         <el-col :span="7">
7 7
           <el-table :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}" :data="projects" border style="width: 100%" highlight-current-row @current-change="handleCurrentChange" ref="singleTable" >
8
-            <el-table-column label="检验检查项目">
8
+            <el-table-column label="检验检查项目" align="center">
9 9
               <el-table-column
10 10
                 prop="project_name"
11 11
                 label="检验项目"
@@ -31,10 +31,11 @@
31 31
           </div>
32 32
           <el-table :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
33 33
             :data="items" border style="width: 100%" id="user-inspection-order"  >
34
-         
34
+
35 35
             <el-table-column
36 36
               prop="item_name"
37 37
               label="检验项目"
38
+              align="center"
38 39
               min-width="180">
39 40
               <template slot-scope="scope">
40 41
                 {{scope.row.item_name}} {{scope.row.item_name_addition}}
@@ -43,6 +44,7 @@
43 44
             <el-table-column
44 45
               prop="name"
45 46
               label="结果"
47
+              align="center"
46 48
               min-width="80">
47 49
               <template slot-scope="scope">
48 50
                 <span>{{scope.row.value}}</span>
@@ -52,6 +54,7 @@
52 54
             <el-table-column
53 55
               prop="address"
54 56
               label="参考值"
57
+              align="center"
55 58
               min-width="120">
56 59
               <template slot-scope="scope">
57 60
                 <span v-if="scope.row.range_type==1">{{scope.row.range_min}}~{{scope.row.range_max}}</span>
@@ -61,6 +64,7 @@
61 64
             <el-table-column
62 65
               prop="unit"
63 66
               label="单位"
67
+              align="center"
64 68
               min-width="80">
65 69
             </el-table-column>
66 70
           </el-table>
@@ -100,13 +104,13 @@
100 104
 
101 105
           <template v-for="(item, index) in form.formItem" >
102 106
             <el-col :span="7" :key="index">
103
-              <el-form-item :label="item.item_name" v-if="item.range_type==1"  :key="item.item_id" :prop="'formItem.' + index + '.value'" 
107
+              <el-form-item :label="item.item_name" v-if="item.range_type==1"  :key="item.item_id" :prop="'formItem.' + index + '.value'"
104 108
              >
105 109
                 <el-input placeholder="请填入" v-model="item.value" style="width:95%" type="number">
106 110
                   <template slot="append">{{item.unit}}</template>
107 111
                 </el-input>
108
-              </el-form-item> 
109
-              <el-form-item :label="item.item_name" v-else :key="item.item_id" :prop="'formItem.' + index + '.value'"  
112
+              </el-form-item>
113
+              <el-form-item :label="item.item_name" v-else :key="item.item_id" :prop="'formItem.' + index + '.value'"
110 114
               >
111 115
                 <el-select  v-model="item.value" placeholder="请选择" style="width:95%">
112 116
                   <el-option
@@ -116,14 +120,14 @@
116 120
                     :value="optionItem">
117 121
                   </el-option>
118 122
                 </el-select>
119
-              </el-form-item> 
123
+              </el-form-item>
120 124
             </el-col>
121 125
             <el-col :span="1" :key="'form-col'+index">&nbsp;</el-col>
122 126
           </template>
123
-          
127
+
124 128
         </el-row>
125
-        
126
-        
129
+
130
+
127 131
       </el-form>
128 132
       <div slot="footer" class="dialog-footer">
129 133
         <el-button @click="dialogFormVisible = false">取 消</el-button>
@@ -180,12 +184,12 @@ export default {
180 184
   },
181 185
   methods:{
182 186
     deleteInspection(){
183
-      
187
+
184 188
       if(this.project == null || this.itemDate == "") {
185 189
         this.$message.error("请先选择删除删除的记录");
186 190
         return false;
187 191
       }
188
-      
192
+
189 193
       this.$confirm('确认删除此记录?', '删除', {
190 194
           confirmButtonText: '确定',
191 195
           cancelButtonText: '取消',
@@ -203,7 +207,7 @@ export default {
203 207
                     type: "success",
204 208
                     duration: 2000
205 209
                 });
206
-                
210
+
207 211
                 for( var index in this.projects) {
208 212
                   if (this.projects[index].project_id == params.project_id) {
209 213
                     this.projects[index].count --;
@@ -226,7 +230,7 @@ export default {
226 230
         this.$message.error("请先选择项目");
227 231
         return false;
228 232
       }
229
-      
233
+
230 234
       this.form.method = "edit";
231 235
       this.formTitle = "修改" + this.project.project_name;
232 236
       this.form.project_id = this.project.project_id;
@@ -268,7 +272,7 @@ export default {
268 272
         // formItem["value"] = '';
269 273
         // if (formItem.range_type==2) {
270 274
         //   formItem["select_options"] = formItem.range_options.split(",");
271
-        // } 
275
+        // }
272 276
         this.form.formItem.push({
273 277
           id:    0,
274 278
           project_id: this.project.inspection_reference[index].project_id,
@@ -340,7 +344,7 @@ export default {
340 344
                   this.items.push(item);
341 345
                 }
342 346
               }
343
-              
347
+
344 348
               this.resetForm(formName);
345 349
               this.dialogFormVisible = false;
346 350
 
@@ -421,7 +425,7 @@ export default {
421 425
                   this.items.push(item);
422 426
                 }
423 427
               }
424
-              
428
+
425 429
               this.resetForm(formName);
426 430
               this.dialogFormVisible = false;
427 431
 
@@ -439,7 +443,7 @@ export default {
439 443
           return false;
440 444
         }
441 445
       });
442
-      
446
+
443 447
     },
444 448
     fetchInspectionReference(){
445 449
       fetchInspectionReference(this.patientID).then(response=>{
@@ -480,7 +484,7 @@ export default {
480 484
         this.fetchPatientInspections(this.queryParams);
481 485
       }
482 486
     },
483
-    
487
+
484 488
     handleCurrentChangePage(val) {
485 489
         this.itemLoading = true;
486 490
       this.queryParams.page = val;
@@ -549,6 +553,12 @@ export default {
549 553
 };
550 554
 </script>
551 555
 
556
+<style>
557
+  #oictable ::-webkit-scrollbar {
558
+    height: 15px;
559
+  }
560
+</style>
561
+
552 562
 <style >
553 563
 #user-inspection-order td {
554 564
     border-bottom:0px !important;