소스 검색

Merge branch 'master' of http://git.shengws.com/csx/Vue_New

XMLWAN 5 년 전
부모
커밋
e9899734bb

+ 1 - 23
src/store/modules/xt_permission.js 파일 보기

47
     if (Object.prototype.toString.call(router.children) === '[object Array]') {
47
     if (Object.prototype.toString.call(router.children) === '[object Array]') {
48
       router.hidden = true
48
       router.hidden = true
49
       router.children.forEach(c_router => {
49
       router.children.forEach(c_router => {
50
-        if(router.path == "/slow"){
51
-          if(IndexOf(urls, router.path) != -1){
52
-            router.hidden = false
53
-          }else{
54
-            router.hidden = true
55
-          }
56
-        }
57
-        if(router.path == "/scrm"){
58
-          if(IndexOf(urls, router.path) != -1){
59
-            router.hidden = false
60
-          }else{
61
-            router.hidden = true
62
-          }
63
-        }
64
-        if(router.path == "/shop"){
65
-          if(IndexOf(urls, router.path) != -1){
66
-            router.hidden = false
67
-          }else{
68
-            router.hidden = true
69
-          }
70
-        }
71
-
72
         // console.log(c_router.path)
50
         // console.log(c_router.path)
73
         if (IndexOf(urls, c_router.path) !== -1) {
51
         if (IndexOf(urls, c_router.path) !== -1) {
74
         // if (urls.indexOf(c_router.path) !== -1) {
52
         // if (urls.indexOf(c_router.path) !== -1) {
79
           // console.log('router.children hide : ' + c_router.path)
57
           // console.log('router.children hide : ' + c_router.path)
80
           c_router.hidden = true
58
           c_router.hidden = true
81
         }
59
         }
82
-        
60
+
83
       })
61
       })
84
     } else {
62
     } else {
85
       router.hidden = true
63
       router.hidden = true

+ 16 - 15
src/views/layout/components/Sidebar/SidebarItem.vue 파일 보기

8
       "
8
       "
9
       @click="onClick(item)"
9
       @click="onClick(item)"
10
     >
10
     >
11
-      <router-link v-if="!onlyOneChild.meta.other" :to="resolvePath(onlyOneChild.path)">
11
+      <!--v-if="!onlyOneChild.meta.other"-->
12
+      <router-link  :to="resolvePath(onlyOneChild.path)">
12
         <el-menu-item
13
         <el-menu-item
13
           :index="resolvePath(onlyOneChild.path)"
14
           :index="resolvePath(onlyOneChild.path)"
14
           :class="{ 'submenu-title-noDropdown': !isNest }"
15
           :class="{ 'submenu-title-noDropdown': !isNest }"
23
           >{{ generateTitle(onlyOneChild.meta.title) }}</span>
24
           >{{ generateTitle(onlyOneChild.meta.title) }}</span>
24
         </el-menu-item>
25
         </el-menu-item>
25
       </router-link>
26
       </router-link>
26
-      <a v-else :href="onlyOneChild.path" target="_blank">
27
-        <el-menu-item
28
-          :index="resolvePath(onlyOneChild.path)"
29
-          :class="{ 'submenu-title-noDropdown': !isNest }"
30
-        >
31
-          <i v-if="onlyOneChild.name == 'slow'" class="icon iconfont icon-manbing-xuanzhong" style="margin-right:4px"></i>
32
-          <i v-if="onlyOneChild.name == 'scrm'" class="icon iconfont icon-pengyou" style="margin-right:4px"></i>
33
-          <i v-if="onlyOneChild.name == 'shop'" class="icon iconfont icon-service_fill" style="margin-right:4px"></i>
34
-          <span
35
-            v-if="onlyOneChild.meta && onlyOneChild.meta.title"
36
-            slot="title"
37
-          >{{ generateTitle(onlyOneChild.meta.title) }}</span>
38
-        </el-menu-item>
39
-      </a>
27
+      <!--<a v-else :href="onlyOneChild.path" target="_blank">-->
28
+        <!--<el-menu-item-->
29
+          <!--:index="resolvePath(onlyOneChild.path)"-->
30
+          <!--:class="{ 'submenu-title-noDropdown': !isNest }"-->
31
+        <!--&gt;-->
32
+          <!--<i v-if="onlyOneChild.name == 'slow'" class="icon iconfont icon-manbing-xuanzhong" style="margin-right:4px"></i>-->
33
+          <!--<i v-if="onlyOneChild.name == 'scrm'" class="icon iconfont icon-pengyou" style="margin-right:4px"></i>-->
34
+          <!--<i v-if="onlyOneChild.name == 'shop'" class="icon iconfont icon-service_fill" style="margin-right:4px"></i>-->
35
+          <!--<span-->
36
+            <!--v-if="onlyOneChild.meta && onlyOneChild.meta.title"-->
37
+            <!--slot="title"-->
38
+          <!--&gt;{{ generateTitle(onlyOneChild.meta.title) }}</span>-->
39
+        <!--</el-menu-item>-->
40
+      <!--</a>-->
40
     </div>
41
     </div>
41
 
42
 
42
     <div v-else>
43
     <div v-else>

+ 2 - 2
src/views/layout/components/Sidebar/index.vue 파일 보기

37
         :index="index"
37
         :index="index"
38
         @a="b"
38
         @a="b"
39
       ></sidebar-item>
39
       ></sidebar-item>
40
-     <!-- <el-menu-item v-if="this.$store.getters.xt_user.cdm_role_exist" index="100">
40
+ <el-menu-item v-if="this.$store.getters.xt_user.cdm_role_exist" index="100">
41
       <a :href="CDMWebsit()">
41
       <a :href="CDMWebsit()">
42
         <i class="icon iconfont icon-manbing-xuanzhong" style="margin-right:4px"></i>
42
         <i class="icon iconfont icon-manbing-xuanzhong" style="margin-right:4px"></i>
43
         <span
43
         <span
60
             slot="title"
60
             slot="title"
61
           >分销商城</span>
61
           >分销商城</span>
62
         </a>
62
         </a>
63
-      </el-menu-item> -->
63
+      </el-menu-item>
64
     </el-menu>
64
     </el-menu>
65
 
65
 
66
   </el-scrollbar>
66
   </el-scrollbar>

+ 3 - 3
src/xt_pages/dialysis/batch_print/batch_print_order.vue 파일 보기

1202
                         <label-box
1202
                         <label-box
1203
                           :isChecked="
1203
                           :isChecked="
1204
                             record.assessment_after_dislysis.internal_fistula.indexOf(
1204
                             record.assessment_after_dislysis.internal_fistula.indexOf(
1205
-                              '震颤-存在'
1205
+                              '存在'
1206
                             ) > -1
1206
                             ) > -1
1207
                               ? true
1207
                               ? true
1208
                               : false
1208
                               : false
1212
                         <label-box
1212
                         <label-box
1213
                           :isChecked="
1213
                           :isChecked="
1214
                             record.assessment_after_dislysis.internal_fistula.indexOf(
1214
                             record.assessment_after_dislysis.internal_fistula.indexOf(
1215
-                              '震颤-减弱'
1215
+                              '减弱'
1216
                             ) > -1
1216
                             ) > -1
1217
                               ? true
1217
                               ? true
1218
                               : false
1218
                               : false
1222
                         <label-box
1222
                         <label-box
1223
                           :isChecked="
1223
                           :isChecked="
1224
                             record.assessment_after_dislysis.internal_fistula.indexOf(
1224
                             record.assessment_after_dislysis.internal_fistula.indexOf(
1225
-                              '震颤-无'
1225
+                              '无'
1226
                             ) > -1
1226
                             ) > -1
1227
                               ? true
1227
                               ? true
1228
                               : false
1228
                               : false

+ 9 - 9
src/xt_pages/dialysis/batch_print/batch_print_order_other.vue 파일 보기

1863
                         穿刺者:
1863
                         穿刺者:
1864
                         <div
1864
                         <div
1865
                           class="under_line"
1865
                           class="under_line"
1866
-                          style="width: 80px;text-align: left"
1866
+                          style="width: 70px;text-align: left"
1867
                         >
1867
                         >
1868
                           <span
1868
                           <span
1869
                             v-if="
1869
                             v-if="
1898
                         &emsp;核对人:
1898
                         &emsp;核对人:
1899
                         <div
1899
                         <div
1900
                           class="under_line"
1900
                           class="under_line"
1901
-                          style="width: 80px;text-align: left"
1901
+                          style="width: 70px;text-align: left"
1902
                           v-if="record.dialysis_order == null"
1902
                           v-if="record.dialysis_order == null"
1903
                         ></div>
1903
                         ></div>
1904
                         <div
1904
                         <div
1905
                           class="under_line"
1905
                           class="under_line"
1906
-                          style="width: 80px;text-align: left"
1906
+                          style="width: 70px;text-align: left"
1907
                           v-if="
1907
                           v-if="
1908
                             record.dialysis_order != null &&
1908
                             record.dialysis_order != null &&
1909
                               record.dialysis_order.start_nurse ==
1909
                               record.dialysis_order.start_nurse ==
1926
                         </div>
1926
                         </div>
1927
                         <div
1927
                         <div
1928
                           class="under_line"
1928
                           class="under_line"
1929
-                          style="width: 80px;text-align: left"
1929
+                          style="width: 70px;text-align: left"
1930
                           v-if="
1930
                           v-if="
1931
                             record.dialysis_order != null &&
1931
                             record.dialysis_order != null &&
1932
                               record.dialysis_order.start_nurse ==
1932
                               record.dialysis_order.start_nurse ==
1947
                         </div>
1947
                         </div>
1948
                         <div
1948
                         <div
1949
                           class="under_line"
1949
                           class="under_line"
1950
-                          style="width: 80px;text-align: left"
1950
+                          style="width: 70px;text-align: left"
1951
                           v-if="
1951
                           v-if="
1952
                             record.dialysis_order != null &&
1952
                             record.dialysis_order != null &&
1953
                               record.dialysis_order.start_nurse !=
1953
                               record.dialysis_order.start_nurse !=
1974
                         &emsp;核对时间:
1974
                         &emsp;核对时间:
1975
                         <div
1975
                         <div
1976
                           class="under_line"
1976
                           class="under_line"
1977
-                          style="width: 180px;text-align: left"
1977
+                          style="width: 200px;text-align: left"
1978
                           v-if="record.check == null"
1978
                           v-if="record.check == null"
1979
                         >
1979
                         >
1980
                           <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
1980
                           <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
1982
 
1982
 
1983
                         <div
1983
                         <div
1984
                           class="under_line"
1984
                           class="under_line"
1985
-                          style="width: 180px;text-align: left"
1985
+                          style="width: 200px;text-align: left"
1986
                           v-if="
1986
                           v-if="
1987
                             record.check != null &&
1987
                             record.check != null &&
1988
                               record.check.first_check_time <
1988
                               record.check.first_check_time <
1999
 
1999
 
2000
                         <div
2000
                         <div
2001
                           class="under_line"
2001
                           class="under_line"
2002
-                          style="width: 180px;text-align: left"
2002
+                          style="width: 200px;text-align: left"
2003
                           v-if="
2003
                           v-if="
2004
                             record.check != null &&
2004
                             record.check != null &&
2005
                               record.check.check_time <
2005
                               record.check.check_time <
2025
                         收针者:
2025
                         收针者:
2026
                         <div
2026
                         <div
2027
                           class="under_line"
2027
                           class="under_line"
2028
-                          style="width: 80px;text-align: left"
2028
+                          style="width: 70px;text-align: left"
2029
                         >
2029
                         >
2030
                           <span
2030
                           <span
2031
                             v-if="
2031
                             v-if="

+ 8 - 8
src/xt_pages/dialysis/batch_print/batch_print_order_other_one.vue 파일 보기

1750
                         穿刺者:
1750
                         穿刺者:
1751
                         <div
1751
                         <div
1752
                           class="under_line"
1752
                           class="under_line"
1753
-                          style="width: 80px;text-align: left"
1753
+                          style="width: 70px;text-align: left"
1754
                         >
1754
                         >
1755
                           <span
1755
                           <span
1756
                             v-if="
1756
                             v-if="
1785
                         &emsp;核对人:
1785
                         &emsp;核对人:
1786
                         <div
1786
                         <div
1787
                           class="under_line"
1787
                           class="under_line"
1788
-                          style="width: 80px;text-align: left"
1788
+                          style="width: 70px;text-align: left"
1789
                           v-if="record.dialysis_order == null"
1789
                           v-if="record.dialysis_order == null"
1790
                         ></div>
1790
                         ></div>
1791
                         <div
1791
                         <div
1813
                         </div>
1813
                         </div>
1814
                         <div
1814
                         <div
1815
                           class="under_line"
1815
                           class="under_line"
1816
-                          style="width: 80px;text-align: left"
1816
+                          style="width: 70px;text-align: left"
1817
                           v-if="
1817
                           v-if="
1818
                             record.dialysis_order != null &&
1818
                             record.dialysis_order != null &&
1819
                               record.dialysis_order.start_nurse ==
1819
                               record.dialysis_order.start_nurse ==
1834
                         </div>
1834
                         </div>
1835
                         <div
1835
                         <div
1836
                           class="under_line"
1836
                           class="under_line"
1837
-                          style="width: 80px;text-align: left"
1837
+                          style="width: 70px;text-align: left"
1838
                           v-if="
1838
                           v-if="
1839
                             record.dialysis_order != null &&
1839
                             record.dialysis_order != null &&
1840
                               record.dialysis_order.start_nurse !=
1840
                               record.dialysis_order.start_nurse !=
1861
                         &emsp;核对时间:
1861
                         &emsp;核对时间:
1862
                         <div
1862
                         <div
1863
                           class="under_line"
1863
                           class="under_line"
1864
-                          style="width: 180px;text-align: left"
1864
+                          style="width: 200px;text-align: left"
1865
                           v-if="record.check == null"
1865
                           v-if="record.check == null"
1866
                         >
1866
                         >
1867
                           <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
1867
                           <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
1868
                         </div>
1868
                         </div>
1869
                         <div
1869
                         <div
1870
                           class="under_line"
1870
                           class="under_line"
1871
-                          style="width: 180px;text-align: left"
1871
+                          style="width: 200px;text-align: left"
1872
                           v-if="
1872
                           v-if="
1873
                             record.check != null &&
1873
                             record.check != null &&
1874
                               record.check.first_check_time <
1874
                               record.check.first_check_time <
1884
                         </div>
1884
                         </div>
1885
                         <div
1885
                         <div
1886
                           class="under_line"
1886
                           class="under_line"
1887
-                          style="width: 180px;text-align: left"
1887
+                          style="width: 200px;text-align: left"
1888
                           v-if="
1888
                           v-if="
1889
                             record.check != null &&
1889
                             record.check != null &&
1890
                               record.check.check_time <
1890
                               record.check.check_time <
1910
                         收针者:
1910
                         收针者:
1911
                         <div
1911
                         <div
1912
                           class="under_line"
1912
                           class="under_line"
1913
-                          style="width: 80px;text-align: left"
1913
+                          style="width: 70px;text-align: left"
1914
                         >
1914
                         >
1915
                           <span
1915
                           <span
1916
                             v-if="
1916
                             v-if="

+ 3 - 9
src/xt_pages/dialysis/dialysisPrintOrder.vue 파일 보기

88
           >
88
           >
89
         </div>
89
         </div>
90
       </template>
90
       </template>
91
-      <template v-if="org_template_info.template_id == 6">
91
+      <template v-if="org_template_info.template_id == 6 || org_template_info.template_id == 10">
92
         <el-button
92
         <el-button
93
           :loading="loading"
93
           :loading="loading"
94
           size="small"
94
           size="small"
98
           >打印</el-button
98
           >打印</el-button
99
         >
99
         >
100
       </template>
100
       </template>
101
+
101
       <template v-if="org_template_info.template_id == 7">
102
       <template v-if="org_template_info.template_id == 7">
102
         <el-button
103
         <el-button
103
           :loading="loading"
104
           :loading="loading"
393
           style: style2,
394
           style: style2,
394
           scanStyles: false
395
           scanStyles: false
395
         });
396
         });
396
-      } else if (this.org_template_info.template_id == 6) {
397
+      } else if (this.org_template_info.template_id == 6 || this.org_template_info.template_id == 10) {
397
         printJS({
398
         printJS({
398
           printable: "dialysis-print-box-1",
399
           printable: "dialysis-print-box-1",
399
           type: "html",
400
           type: "html",
414
           style: style,
415
           style: style,
415
           scanStyles: false
416
           scanStyles: false
416
         });
417
         });
417
-      } else if (this.org_template_info.template_id == 10) {
418
-        printJS({
419
-          printable: "dialysis-print-box",
420
-          type: "html",
421
-          style: style,
422
-          scanStyles: false
423
-        });
424
       }
418
       }
425
     },
419
     },
426
     printThisOnePage() {
420
     printThisOnePage() {

+ 9 - 9
src/xt_pages/dialysis/template/DialysisPrintOrderOne.vue 파일 보기

663
                 </td>
663
                 </td>
664
 
664
 
665
                 <td width="10"></td>
665
                 <td width="10"></td>
666
-                <td width="105" :colspan="2">压迫后内瘘震颤:
667
-                    <label-box :isChecked="afterdialysis.internal_fistula.indexOf('震颤-存在')>-1?true:false"
668
-                               showValue='存在'></label-box>
669
-                    &nbsp;
670
-                    <label-box :isChecked="afterdialysis.internal_fistula.indexOf('震颤-减弱')>-1?true:false"
671
-                               showValue='减弱'></label-box>
672
-                    &nbsp;
673
-                    <label-box :isChecked="afterdialysis.internal_fistula.indexOf('震颤-无')>-1?true:false"
674
-                               showValue='无'></label-box>
666
+                <td width="105" colspan="2">压迫后内瘘震颤:
667
+                  <label-box :isChecked="afterdialysis.internal_fistula.indexOf('存在')>-1?true:false"
668
+                             showValue='存在'></label-box>
669
+                  &nbsp;
670
+                  <label-box :isChecked="afterdialysis.internal_fistula.indexOf('减弱')>-1?true:false"
671
+                             showValue='减弱'></label-box>
672
+                  &nbsp;
673
+                  <label-box :isChecked="afterdialysis.internal_fistula.indexOf('无')>-1?true:false"
674
+                             showValue='无'></label-box>
675
                 </td>
675
                 </td>
676
                 <td>
676
                 <td>
677
                 </td>
677
                 </td>

+ 22 - 22
src/xt_pages/dialysis/template/dialysisPrintOrderTwo.vue 파일 보기

1184
                   </div>
1184
                   </div>
1185
                   <div class="inline_block">
1185
                   <div class="inline_block">
1186
1186
1187
-                    <label-box
1187
+                    <check-box
1188
                       :isChecked="
1188
                       :isChecked="
1189
                         afterdialysis.complication.indexOf('头晕') > -1
1189
                         afterdialysis.complication.indexOf('头晕') > -1
1190
                           ? true
1190
                           ? true
1191
                           : false
1191
                           : false
1192
                       "
1192
                       "
1193
-                      showValue="头晕"
1194
-                    ></label-box>
1195
-                    <label-box
1193
+                      text="头晕"
1194
+                    ></check-box>
1195
+                    <check-box
1196
                       :isChecked="
1196
                       :isChecked="
1197
                         afterdialysis.complication.indexOf('头痛') > -1
1197
                         afterdialysis.complication.indexOf('头痛') > -1
1198
                           ? true
1198
                           ? true
1199
                           : false
1199
                           : false
1200
                       "
1200
                       "
1201
-                      showValue="头痛"
1202
-                    ></label-box>
1203
-                    <label-box
1201
+                      text="头痛"
1202
+                    ></check-box>
1203
+                    <check-box
1204
                       :isChecked="
1204
                       :isChecked="
1205
                         afterdialysis.complication.indexOf('呕吐') > -1
1205
                         afterdialysis.complication.indexOf('呕吐') > -1
1206
                           ? true
1206
                           ? true
1207
                           : false
1207
                           : false
1208
                       "
1208
                       "
1209
-                      showValue="呕吐"
1210
-                    ></label-box>
1211
-                    <label-box
1209
+                      text="呕吐"
1210
+                    ></check-box>
1211
+                    <check-box
1212
                       :isChecked="
1212
                       :isChecked="
1213
                         afterdialysis.complication.indexOf('低血压') > -1
1213
                         afterdialysis.complication.indexOf('低血压') > -1
1214
                           ? true
1214
                           ? true
1215
                           : false
1215
                           : false
1216
                       "
1216
                       "
1217
-                      showValue="低血压"
1218
-                    ></label-box>
1217
+                      text="低血压"
1218
+                    ></check-box>
1219
1219
1220
                   </div>
1220
                   </div>
1221
                 </div>
1221
                 </div>
1286
                     责任护士:
1286
                     责任护士:
1287
                     <div
1287
                     <div
1288
                       class="under_line"
1288
                       class="under_line"
1289
-                      style="width: 80px;text-align: left"
1289
+                      style="width: 70px;text-align: left"
1290
                     >
1290
                     >
1291
                       <span
1291
                       <span
1292
                         v-if="
1292
                         v-if="
1324
                     穿刺者:
1324
                     穿刺者:
1325
                     <div
1325
                     <div
1326
                       class="under_line"
1326
                       class="under_line"
1327
-                      style="width: 80px;text-align: left"
1327
+                      style="width: 70px;text-align: left"
1328
                     >
1328
                     >
1329
                       <span
1329
                       <span
1330
                         v-if="
1330
                         v-if="
1361
                     &emsp;核对人:
1361
                     &emsp;核对人:
1362
                     <div
1362
                     <div
1363
                       class="under_line"
1363
                       class="under_line"
1364
-                      style="width: 80px;text-align: left"
1364
+                      style="width: 70px;text-align: left"
1365
                       v-if="dialysisOrder == null"
1365
                       v-if="dialysisOrder == null"
1366
                     >
1366
                     >
1367
                       <span
1367
                       <span
1383
                     </div>
1383
                     </div>
1384
                     <div
1384
                     <div
1385
                       class="under_line"
1385
                       class="under_line"
1386
-                      style="width: 80px;text-align: left"
1386
+                      style="width: 70px;text-align: left"
1387
                       v-if="
1387
                       v-if="
1388
                         dialysisOrder != null &&
1388
                         dialysisOrder != null &&
1389
                           dialysisOrder.start_nurse == check.modifier
1389
                           dialysisOrder.start_nurse == check.modifier
1408
                     </div>
1408
                     </div>
1409
                     <div
1409
                     <div
1410
                       class="under_line"
1410
                       class="under_line"
1411
-                      style="width: 80px;text-align: left"
1411
+                      style="width: 70px;text-align: left"
1412
                       v-if="
1412
                       v-if="
1413
                         dialysisOrder != null &&
1413
                         dialysisOrder != null &&
1414
                           dialysisOrder.start_nurse == check.creater
1414
                           dialysisOrder.start_nurse == check.creater
1435
                     </div>
1435
                     </div>
1436
                     <div
1436
                     <div
1437
                       class="under_line"
1437
                       class="under_line"
1438
-                      style="width: 80px;text-align: left"
1438
+                      style="width: 70px;text-align: left"
1439
                       v-if="
1439
                       v-if="
1440
                         dialysisOrder != null &&
1440
                         dialysisOrder != null &&
1441
                           dialysisOrder.start_nurse != check.creater &&
1441
                           dialysisOrder.start_nurse != check.creater &&
1464
                     &emsp;核对时间:
1464
                     &emsp;核对时间:
1465
                     <div
1465
                     <div
1466
                       class="under_line"
1466
                       class="under_line"
1467
-                      style="width: 200px;text-align: left"
1467
+                      style="width: 210px;text-align: left"
1468
                       v-if="check == null"
1468
                       v-if="check == null"
1469
                     >
1469
                     >
1470
                       <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
1470
                       <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
1472
 
1472
 
1473
                     <div
1473
                     <div
1474
                       class="under_line"
1474
                       class="under_line"
1475
-                      style="width: 200px;text-align: left"
1475
+                      style="width: 210px;text-align: left"
1476
                       v-if="
1476
                       v-if="
1477
                         check != null &&
1477
                         check != null &&
1478
                           check.first_check_time < check.check_time
1478
                           check.first_check_time < check.check_time
1485
 
1485
 
1486
                     <div
1486
                     <div
1487
                       class="under_line"
1487
                       class="under_line"
1488
-                      style="width: 200px;text-align: left"
1488
+                      style="width: 210px;text-align: left"
1489
                       v-if="
1489
                       v-if="
1490
                         check != null &&
1490
                         check != null &&
1491
                           check.check_time < check.first_check_time
1491
                           check.check_time < check.first_check_time
1503
                     &emsp;收针者:
1503
                     &emsp;收针者:
1504
                     <div
1504
                     <div
1505
                       class="under_line"
1505
                       class="under_line"
1506
-                      style="width: 80px;text-align: left"
1506
+                      style="width: 70px;text-align: left"
1507
                     >
1507
                     >
1508
                       <span
1508
                       <span
1509
                         v-if="
1509
                         v-if="