|
@@ -724,6 +724,24 @@
|
724
|
724
|
</template>
|
725
|
725
|
</el-table-column>
|
726
|
726
|
|
|
727
|
+ <el-table-column label="透中血压(mmHg)" align="center" width="180" v-if="isShow('血压1')">
|
|
728
|
+ <template slot-scope="scope">
|
|
729
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
730
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+ <span v-if="item.monitor_systolic_blood_pressure_one>=90 && item.monitor_systolic_blood_pressure_one<=140"> {{item.monitor_systolic_blood_pressure_one?item.monitor_systolic_blood_pressure_one:"未测"}}</span>
|
|
734
|
+ <span v-if="item.monitor_systolic_blood_pressure_one<90 || item.monitor_systolic_blood_pressure_one >140" style="color:red">{{item.monitor_systolic_blood_pressure_one?item.monitor_systolic_blood_pressure_one:"未测"}}</span>
|
|
735
|
+ <span v-if="item.monitor_diastolic_blood_pressure_one >0">/</span>
|
|
736
|
+ <span v-if="item.monitor_diastolic_blood_pressure_one >=60 &&item.monitor_diastolic_blood_pressure_one <=90">{{item.monitor_diastolic_blood_pressure_one?item.monitor_diastolic_blood_pressure_one:"未测"}}</span>
|
|
737
|
+ <span v-if="item.monitor_diastolic_blood_pressure_one <60 || item.monitor_diastolic_blood_pressure_one >90" style="color:red">{{item.monitor_diastolic_blood_pressure_one?item.monitor_diastolic_blood_pressure_one:"未测" }}</span>
|
|
738
|
+
|
|
739
|
+ </td>
|
|
740
|
+ </tr>
|
|
741
|
+
|
|
742
|
+ </template>
|
|
743
|
+ </el-table-column>
|
|
744
|
+
|
727
|
745
|
|
728
|
746
|
|
729
|
747
|
<el-table-column label="体温(℃)" align="center" width="120" v-if="isShow('体温')">
|
|
@@ -737,6 +755,17 @@
|
737
|
755
|
</template>
|
738
|
756
|
</el-table-column>
|
739
|
757
|
|
|
758
|
+ <el-table-column label="体温(℃)" align="center" width="120" v-if="isShow('体温1')">
|
|
759
|
+ <template slot-scope="scope">
|
|
760
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
761
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
762
|
+ {{ item.monitor_temperature_one ? item.monitor_temperature_one : "/" }}
|
|
763
|
+ </td>
|
|
764
|
+ </tr>
|
|
765
|
+
|
|
766
|
+ </template>
|
|
767
|
+ </el-table-column>
|
|
768
|
+
|
740
|
769
|
|
741
|
770
|
|
742
|
771
|
<el-table-column label="脉搏(次/分)" align="center" width="120" v-if="isShow('脉搏')">
|
|
@@ -750,12 +779,23 @@
|
750
|
779
|
</template>
|
751
|
780
|
</el-table-column>
|
752
|
781
|
|
|
782
|
+ <el-table-column label="脉搏(次/分)" align="center" width="120" v-if="isShow('脉搏1')">
|
|
783
|
+ <template slot-scope="scope">
|
|
784
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
785
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
786
|
+ {{ item.pulse_frequency_one ? item.pulse_frequency_one : "/" }}
|
|
787
|
+ </td>
|
|
788
|
+ </tr>
|
|
789
|
+
|
|
790
|
+ </template>
|
|
791
|
+ </el-table-column>
|
|
792
|
+
|
753
|
793
|
|
754
|
794
|
<el-table-column label="呼吸频率(次/分)" align="center" width="120" v-if="isShow('呼吸频率')">
|
755
|
795
|
<template slot-scope="scope">
|
756
|
796
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
757
|
797
|
<td style="border-right: none; border-inline-end: none;text-align: center">
|
758
|
|
- {{ item.breathing_rate ? item.breathing_rate : "" }}
|
|
798
|
+ {{ item.breathing_rate ? item.breathing_rate : "/" }}
|
759
|
799
|
</td>
|
760
|
800
|
</tr>
|
761
|
801
|
|
|
@@ -767,8 +807,15 @@
|
767
|
807
|
<template slot-scope="scope">
|
768
|
808
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
769
|
809
|
<td style="border-right: none; border-inline-end: none;text-align: center">
|
770
|
|
- <span>{{item.venous_pressure ? item.venous_pressure : ""}}/
|
|
810
|
+ <span v-if="org_id !=10693"> <span>{{item.venous_pressure ? item.venous_pressure : ""}}/
|
771
|
811
|
{{item.arterial_pressure ? item.arterial_pressure : ""}}</span>
|
|
812
|
+
|
|
813
|
+ </span>
|
|
814
|
+
|
|
815
|
+ <span v-if="org_id ==10693"> <span>{{item.venous_pressure_one ? item.venous_pressure_one : "/"}}/
|
|
816
|
+ {{item.arterial_pressure_one ? item.arterial_pressure_one : "/"}}</span>
|
|
817
|
+
|
|
818
|
+ </span>
|
772
|
819
|
</td>
|
773
|
820
|
</tr>
|
774
|
821
|
|
|
@@ -787,6 +834,17 @@
|
787
|
834
|
</template>
|
788
|
835
|
</el-table-column>
|
789
|
836
|
|
|
837
|
+ <el-table-column label="血流量1" align="center" width="120" v-if="isShow('血流量')">
|
|
838
|
+ <template slot-scope="scope">
|
|
839
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
840
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
841
|
+ {{item.dialysate_flow_one?item.dialysate_flow_one:"/"}}
|
|
842
|
+ </td>
|
|
843
|
+ </tr>
|
|
844
|
+
|
|
845
|
+ </template>
|
|
846
|
+ </el-table-column>
|
|
847
|
+
|
790
|
848
|
|
791
|
849
|
<el-table-column label="跨膜压(mmHg)" align="center" width="120" v-if="isShow('跨膜压')">
|
792
|
850
|
<template slot-scope="scope">
|
|
@@ -800,6 +858,18 @@
|
800
|
858
|
</el-table-column>
|
801
|
859
|
|
802
|
860
|
|
|
861
|
+ <el-table-column label="跨膜压(mmHg)" align="center" width="120" v-if="isShow('跨膜压1')">
|
|
862
|
+ <template slot-scope="scope">
|
|
863
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
864
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
865
|
+ {{item.transmembrane_pressure_one?item.transmembrane_pressure_one:"/"}}
|
|
866
|
+ </td>
|
|
867
|
+ </tr>
|
|
868
|
+
|
|
869
|
+ </template>
|
|
870
|
+ </el-table-column>
|
|
871
|
+
|
|
872
|
+
|
803
|
873
|
<el-table-column label="超滤量(ml)" align="center"
|
804
|
874
|
v-if="
|
805
|
875
|
isShow('超滤量') &&
|
|
@@ -910,6 +980,20 @@
|
910
|
980
|
</template>
|
911
|
981
|
</el-table-column>
|
912
|
982
|
|
|
983
|
+
|
|
984
|
+ <el-table-column label="超滤量(ml)" align="center"
|
|
985
|
+ v-if="
|
|
986
|
+ isShow('超滤量1')">
|
|
987
|
+ <template slot-scope="scope">
|
|
988
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
989
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
990
|
+ {{item.ultrafiltration_volume_one?item.ultrafiltration_volume_one:"/"}}
|
|
991
|
+ </td>
|
|
992
|
+ </tr>
|
|
993
|
+
|
|
994
|
+ </template>
|
|
995
|
+ </el-table-column>
|
|
996
|
+
|
913
|
997
|
<el-table-column label="超滤率(ml/h)" align="center"
|
914
|
998
|
v-if="isShow('超滤率') &&
|
915
|
999
|
(template_id == 6 ||
|
|
@@ -1004,6 +1088,20 @@
|
1004
|
1088
|
|
1005
|
1089
|
</el-table-column>
|
1006
|
1090
|
|
|
1091
|
+ <el-table-column label="超滤率(ml/h)" align="center"
|
|
1092
|
+ v-if="
|
|
1093
|
+ isShow('超滤率2')">
|
|
1094
|
+ <template slot-scope="scope">
|
|
1095
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1096
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1097
|
+ {{item.ultrafiltration_rate_one?item.ultrafiltration_rate_one:"/"}}
|
|
1098
|
+ </td>
|
|
1099
|
+ </tr>
|
|
1100
|
+
|
|
1101
|
+ </template>
|
|
1102
|
+ </el-table-column>
|
|
1103
|
+
|
|
1104
|
+
|
1007
|
1105
|
<el-table-column label="钠浓度(mmol/L)" align="center" v-if="isShow('钠浓度')">
|
1008
|
1106
|
|
1009
|
1107
|
<template slot-scope="scope">
|
|
@@ -1016,6 +1114,19 @@
|
1016
|
1114
|
</template>
|
1017
|
1115
|
</el-table-column>
|
1018
|
1116
|
|
|
1117
|
+
|
|
1118
|
+ <el-table-column label="钠浓度(mmol/L)" align="center" v-if="isShow('钠浓度1')">
|
|
1119
|
+
|
|
1120
|
+ <template slot-scope="scope">
|
|
1121
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1122
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1123
|
+ {{item.sodium_concentration_one? item.sodium_concentration_one: "/"}}
|
|
1124
|
+ </td>
|
|
1125
|
+ </tr>
|
|
1126
|
+
|
|
1127
|
+ </template>
|
|
1128
|
+ </el-table-column>
|
|
1129
|
+
|
1019
|
1130
|
<el-table-column label="透析液温度(℃)" align="center" v-if="isShow('透析液温度')">
|
1020
|
1131
|
<template slot-scope="scope">
|
1021
|
1132
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
@@ -1026,6 +1137,19 @@
|
1026
|
1137
|
|
1027
|
1138
|
</template>
|
1028
|
1139
|
|
|
1140
|
+ </el-table-column>
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+ <el-table-column label="透析液温度(℃)" align="center" v-if="isShow('透析液温度1')">
|
|
1144
|
+ <template slot-scope="scope">
|
|
1145
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1146
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1147
|
+ {{item.dialysate_temperature_one? item.dialysate_temperature_one: "/"}}
|
|
1148
|
+ </td>
|
|
1149
|
+ </tr>
|
|
1150
|
+
|
|
1151
|
+ </template>
|
|
1152
|
+
|
1029
|
1153
|
</el-table-column>
|
1030
|
1154
|
|
1031
|
1155
|
<el-table-column label="置换率(ml/min)" align="center"
|
|
@@ -1083,7 +1207,21 @@
|
1083
|
1207
|
</template>
|
1084
|
1208
|
</el-table-column>
|
1085
|
1209
|
|
1086
|
|
- <el-table-column label="置换量(ml/h)" align="center"
|
|
1210
|
+ <el-table-column label="置换率(ml/h)" align="center"
|
|
1211
|
+ v-if="isShow('置换率1')"
|
|
1212
|
+ >
|
|
1213
|
+ <template slot-scope="scope">
|
|
1214
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1215
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1216
|
+ {{item.replacement_rate_one? item.replacement_rate_one: "/"}}
|
|
1217
|
+ </td>
|
|
1218
|
+ </tr>
|
|
1219
|
+
|
|
1220
|
+ </template>
|
|
1221
|
+ </el-table-column>
|
|
1222
|
+
|
|
1223
|
+
|
|
1224
|
+ <el-table-column label="置换量(L)" align="center"
|
1087
|
1225
|
v-if="isShow('置换量') && (template_id == 43 || template_id == 48)"
|
1088
|
1226
|
>
|
1089
|
1227
|
<template slot-scope="scope">
|
|
@@ -1156,6 +1294,20 @@
|
1156
|
1294
|
</template>
|
1157
|
1295
|
</el-table-column>
|
1158
|
1296
|
|
|
1297
|
+
|
|
1298
|
+ <el-table-column label="置换量(ml)" align="center"
|
|
1299
|
+ v-if="isShow('置换量1')"
|
|
1300
|
+ >
|
|
1301
|
+ <template slot-scope="scope">
|
|
1302
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1303
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1304
|
+ {{item.displacement_quantity_one? item.displacement_quantity_one: "/"}}
|
|
1305
|
+ </td>
|
|
1306
|
+ </tr>
|
|
1307
|
+
|
|
1308
|
+ </template>
|
|
1309
|
+ </el-table-column>
|
|
1310
|
+
|
1159
|
1311
|
<el-table-column label="SpO₂(%)" align="center"
|
1160
|
1312
|
v-if="
|
1161
|
1313
|
isShow('SpO₂') &&
|
|
@@ -1174,6 +1326,22 @@
|
1174
|
1326
|
</template>
|
1175
|
1327
|
</el-table-column>
|
1176
|
1328
|
|
|
1329
|
+
|
|
1330
|
+ <el-table-column label="SpO₂(%)" align="center"
|
|
1331
|
+ v-if="
|
|
1332
|
+ isShow('SpO₂1')
|
|
1333
|
+ "
|
|
1334
|
+ >
|
|
1335
|
+ <template slot-scope="scope">
|
|
1336
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1337
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1338
|
+ {{item.blood_oxygen_saturation_one? item.blood_oxygen_saturation_one: "/"}}
|
|
1339
|
+ </td>
|
|
1340
|
+ </tr>
|
|
1341
|
+
|
|
1342
|
+ </template>
|
|
1343
|
+ </el-table-column>
|
|
1344
|
+
|
1177
|
1345
|
<el-table-column label="电导度(mS/cm)" align="center"
|
1178
|
1346
|
v-if="isShow('电导度')">
|
1179
|
1347
|
|
|
@@ -1187,6 +1355,20 @@
|
1187
|
1355
|
</template>
|
1188
|
1356
|
</el-table-column>
|
1189
|
1357
|
|
|
1358
|
+
|
|
1359
|
+ <el-table-column label="电导度(mS/cm)" align="center"
|
|
1360
|
+ v-if="isShow('电导度1')">
|
|
1361
|
+
|
|
1362
|
+ <template slot-scope="scope">
|
|
1363
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1364
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1365
|
+ {{item.conductivity_one? item.conductivity_one: "/"}}
|
|
1366
|
+ </td>
|
|
1367
|
+ </tr>
|
|
1368
|
+
|
|
1369
|
+ </template>
|
|
1370
|
+ </el-table-column>
|
|
1371
|
+
|
1190
|
1372
|
<el-table-column label="置换液流量(ml/h)" align="center"
|
1191
|
1373
|
v-if="isShow('置换液流量') && template_id != 27"
|
1192
|
1374
|
>
|
|
@@ -1214,6 +1396,19 @@
|
1214
|
1396
|
</template>
|
1215
|
1397
|
</el-table-column>
|
1216
|
1398
|
|
|
1399
|
+ <el-table-column label="置换液流量(ml/min)" align="center"
|
|
1400
|
+ v-if="isShow('置换液流量1')"
|
|
1401
|
+ >
|
|
1402
|
+ <template slot-scope="scope">
|
|
1403
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1404
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1405
|
+ {{item.displacement_flow_quantity_one? item.displacement_flow_quantity_one: "/"}}
|
|
1406
|
+ </td>
|
|
1407
|
+ </tr>
|
|
1408
|
+
|
|
1409
|
+ </template>
|
|
1410
|
+ </el-table-column>
|
|
1411
|
+
|
1217
|
1412
|
<el-table-column label="透析液流量(ml/h)" align="center" v-if="isShow('透析液流量')">
|
1218
|
1413
|
<template slot-scope="scope">
|
1219
|
1414
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
@@ -1225,6 +1420,17 @@
|
1225
|
1420
|
</template>
|
1226
|
1421
|
</el-table-column>
|
1227
|
1422
|
|
|
1423
|
+ <el-table-column label="透析液流量(ml/h)" align="center" v-if="isShow('透析液流量1')">
|
|
1424
|
+ <template slot-scope="scope">
|
|
1425
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1426
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1427
|
+ {{item.dialysate_flow_one? item.dialysate_flow_one: "/"}}
|
|
1428
|
+ </td>
|
|
1429
|
+ </tr>
|
|
1430
|
+
|
|
1431
|
+ </template>
|
|
1432
|
+ </el-table-column>
|
|
1433
|
+
|
1228
|
1434
|
<el-table-column label="肝素用量余量(ml)" align="center" v-if="isShow('肝素用量余量')">
|
1229
|
1435
|
<template slot-scope="scope">
|
1230
|
1436
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
@@ -1236,6 +1442,17 @@
|
1236
|
1442
|
</template>
|
1237
|
1443
|
</el-table-column>
|
1238
|
1444
|
|
|
1445
|
+ <el-table-column label="剩余肝素(ml)" align="center" v-if="isShow('剩余肝素')">
|
|
1446
|
+ <template slot-scope="scope">
|
|
1447
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1448
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1449
|
+ {{item.heparin_one? item.heparin_one: "/"}}
|
|
1450
|
+ </td>
|
|
1451
|
+ </tr>
|
|
1452
|
+
|
|
1453
|
+ </template>
|
|
1454
|
+ </el-table-column>
|
|
1455
|
+
|
1239
|
1456
|
|
1240
|
1457
|
|
1241
|
1458
|
<el-table-column label="血压监测部位" align="center" v-if="isShow('血压监测部位')">
|
|
@@ -1298,6 +1515,19 @@
|
1298
|
1515
|
</template>
|
1299
|
1516
|
</el-table-column>
|
1300
|
1517
|
|
|
1518
|
+
|
|
1519
|
+ <el-table-column label="血容量" align="center" v-if="isShow('血容量1')">
|
|
1520
|
+
|
|
1521
|
+ <template slot-scope="scope">
|
|
1522
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1523
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1524
|
+ {{item.accumulated_blood_volume_one?item.accumulated_blood_volume_one:"/"}}
|
|
1525
|
+ </td>
|
|
1526
|
+ </tr>
|
|
1527
|
+
|
|
1528
|
+ </template>
|
|
1529
|
+ </el-table-column>
|
|
1530
|
+
|
1301
|
1531
|
<el-table-column label="血温监测" align="center" v-if="isShow('血温监测')">
|
1302
|
1532
|
<template slot-scope="scope">
|
1303
|
1533
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
@@ -1309,6 +1539,17 @@
|
1309
|
1539
|
</template>
|
1310
|
1540
|
</el-table-column>
|
1311
|
1541
|
|
|
1542
|
+ <el-table-column label="血温监测" align="center" v-if="isShow('血温监测1')">
|
|
1543
|
+ <template slot-scope="scope">
|
|
1544
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1545
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1546
|
+ {{item.blood_temperature_one?item.blood_temperature_one:"/"}}
|
|
1547
|
+ </td>
|
|
1548
|
+ </tr>
|
|
1549
|
+
|
|
1550
|
+ </template>
|
|
1551
|
+ </el-table-column>
|
|
1552
|
+
|
1312
|
1553
|
<el-table-column label="尿素监测" align="center" v-if="isShow('尿素监测')" >
|
1313
|
1554
|
<template slot-scope="scope">
|
1314
|
1555
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
@@ -1320,6 +1561,17 @@
|
1320
|
1561
|
</template>
|
1321
|
1562
|
</el-table-column>
|
1322
|
1563
|
|
|
1564
|
+ <el-table-column label="尿素监测" align="center" v-if="isShow('尿素监测1')" >
|
|
1565
|
+ <template slot-scope="scope">
|
|
1566
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1567
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1568
|
+ {{item.urea_monitoring_one?item.urea_monitoring_one:"/"}}
|
|
1569
|
+ </td>
|
|
1570
|
+ </tr>
|
|
1571
|
+
|
|
1572
|
+ </template>
|
|
1573
|
+ </el-table-column>
|
|
1574
|
+
|
1323
|
1575
|
<el-table-column label="血压监测" align="center" v-if="isShow('血压监测')">
|
1324
|
1576
|
<template slot-scope="scope">
|
1325
|
1577
|
<tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
@@ -1366,6 +1618,19 @@
|
1366
|
1618
|
|
1367
|
1619
|
</template>
|
1368
|
1620
|
</el-table-column>
|
|
1621
|
+
|
|
1622
|
+ <el-table-column label="KT/V" align="center"
|
|
1623
|
+ v-if="isShow('kt/v1')"
|
|
1624
|
+ >
|
|
1625
|
+ <template slot-scope="scope">
|
|
1626
|
+ <tr style="background: none" v-for="(item,index) in scope.row.monitoring_record" :key="index">
|
|
1627
|
+ <td style="border-right: none; border-inline-end: none;text-align: center">
|
|
1628
|
+ {{item.ktv_one?item.ktv_one:"/"}}
|
|
1629
|
+ </td>
|
|
1630
|
+ </tr>
|
|
1631
|
+
|
|
1632
|
+ </template>
|
|
1633
|
+ </el-table-column>
|
1369
|
1634
|
</el-table>
|
1370
|
1635
|
|
1371
|
1636
|
<el-pagination
|