Explorar el Código

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

csx hace 2 años
padre
commit
1c6ff0bc98

+ 116 - 184
src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue Ver fichero

165
           :disabled="!is_has_exce"
165
           :disabled="!is_has_exce"
166
           @click="execAdvice"
166
           @click="execAdvice"
167
           :loading="deleLoading"
167
           :loading="deleLoading"
168
+
168
         >执行医嘱
169
         >执行医嘱
169
         </el-button>
170
         </el-button>
170
         <el-button v-else disabled round @click="execAdvice" :loading="deleLoading">执行医嘱</el-button>
171
         <el-button v-else disabled round @click="execAdvice" :loading="deleLoading">执行医嘱</el-button>
208
       <!-- 医嘱列表 -->
209
       <!-- 医嘱列表 -->
209
       <!--   @row-click="cellMouseEnter" -->
210
       <!--   @row-click="cellMouseEnter" -->
210
       <!--&lt;!&ndash;:header-cell-style="{ backgroundColor: 'rgb(64, 158, 255)', color: 'white'}"&ndash;&gt;@current-change="selectRow"-->
211
       <!--&lt;!&ndash;:header-cell-style="{ backgroundColor: 'rgb(64, 158, 255)', color: 'white'}"&ndash;&gt;@current-change="selectRow"-->
211
-      <!-- :span-method="objectSpanMethod" -->
212
       <el-table
212
       <el-table
213
         v-if="his_is_open !=1 && is_advice_open!=1"
213
         v-if="his_is_open !=1 && is_advice_open!=1"
214
         :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
214
         :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
219
         ref="advices_list"
219
         ref="advices_list"
220
         @row-click="cellMouseEnter"
220
         @row-click="cellMouseEnter"
221
         :row-class-name="tableRowClassName"
221
         :row-class-name="tableRowClassName"
222
-        
222
+        :span-method="objectSpanMethod"
223
         :cell-class-name="adviceNameShow"
223
         :cell-class-name="adviceNameShow"
224
         :modal-append-to-body="false"
224
         :modal-append-to-body="false"
225
-        @selection-change="handleSelectionChange"
226
         highlight-current-row
225
         highlight-current-row
226
+
227
       >
227
       >
228
-       <el-table-column type="selection"  width="55" ></el-table-column>
228
+      <!-- @selection-change="handleSelectionChange" -->
229
+        <!-- <el-table-column type="selection"  width="55"></el-table-column> -->
229
        <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
230
        <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
230
           <template slot-scope="scope">
231
           <template slot-scope="scope">
231
             <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
232
             <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
299
             <span>
300
             <span>
300
               {{getXuserName(scope.row.checker)}}
301
               {{getXuserName(scope.row.checker)}}
301
             </span>
302
             </span>
303
+
304
+
302
           </template>
305
           </template>
303
         </el-table-column>
306
         </el-table-column>
304
       </el-table>
307
       </el-table>
318
         :cell-class-name="adviceNameShow"
321
         :cell-class-name="adviceNameShow"
319
         :modal-append-to-body="false"
322
         :modal-append-to-body="false"
320
         highlight-current-row
323
         highlight-current-row
321
-        @selection-change="handleSelectionChange"
322
       >
324
       >
323
-        <el-table-column type="selection"  width="55"></el-table-column>
325
+        <!-- <el-table-column type="selection"  width="55"></el-table-column> -->
324
         <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
326
         <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
325
           <template slot-scope="scope">
327
           <template slot-scope="scope">
326
             <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
328
             <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
328
         </el-table-column>
330
         </el-table-column>
329
 
331
 
330
 
332
 
333
+        <!--===================================-->
334
+<!--        <el-table-column prop="date" label="调试" align="center" min-width="26px">-->
335
+<!--          <template slot-scope="scope">-->
336
+<!--            <span @click="lili(scope.$index,scope.row)">{{ scope.row.parent_id }}</span>-->
337
+<!--          </template>-->
338
+<!--        </el-table-column>-->
339
+
331
         <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
340
         <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
332
           <template slot-scope="scope">
341
           <template slot-scope="scope">
333
             <span>
342
             <span>
614
     EditDoctorAdvice,
623
     EditDoctorAdvice,
615
     ExecDoctorAdvice,
624
     ExecDoctorAdvice,
616
     getAdviceConfig,
625
     getAdviceConfig,
617
-    GetLastOrNextDoctorAdvice,
618
-    GetOrderDoctorAdvice
626
+    GetLastOrNextDoctorAdvice
619
   } from '@/api/advice'
627
   } from '@/api/advice'
620
   import { getDataConfig } from '@/utils/data'
628
   import { getDataConfig } from '@/utils/data'
621
 
629
 
772
         drug_id: 0,
780
         drug_id: 0,
773
         src_type:"",
781
         src_type:"",
774
         org_id:0,
782
         org_id:0,
775
-        hisAdviceIds:"",
776
-        adviceIds:"",
777
       }
783
       }
778
     },
784
     },
779
     watch: {
785
     watch: {
790
 
796
 
791
     },
797
     },
792
     methods: {
798
     methods: {
793
-      handleSelectionChange(row){
794
-        console.log("row3233223232332322323",row)
795
-       if(row.length >0){
796
-         this.currentRow = row[0]
797
-       }
798
-       var bloodIds= []
799
-       var hisIds=[]
800
-       console.log("this.his_is_open ",this.his_is_open )
801
-       console.log("is_advice_open",this.is_advice_open)
802
-       for(let i=0;i<row.length;i++){
803
-        //血透
804
-         if(this.his_is_open  != 1 && this.is_advice_open!=1){
805
-            bloodIds.push(row[i].id)
806
-         }
807
-         //his
808
-         if(this.his_is_open == 1 && this.is_advice_open!=1){
809
-             hisIds.push(row[i].id)
810
-         }
811
-         
812
-         if(this.his_is_open == 1 && this.is_advice_open == 1){
813
-            if(row[i].origin == 1){
814
-              bloodIds.push(row[i].id)
815
-            }
816
-            if(row[i].origin == 2){
817
-              hisIds.push(row[i].id)
818
-            }
819
-           this.currentRow.origin = 3
820
-         }
821
-       }
822
-      
823
-       if(this.his_is_open  == 1 || this.is_advice_open == 1){
824
-         this.is_has_exce = true
825
-         this.is_has_check = true
826
-       }
827
-     
828
-       if(this.his_is_open!=1 && this.is_advice_open!=1){
829
-        
830
-          this.is_has_exce = true
831
-          this.is_has_check = true
832
-       }
833
-        console.log("bloodIds",bloodIds,"hisIds",hisIds)
834
-       this.adviceIds = bloodIds.join(",")
835
-       this.hisAdviceIds = hisIds.join(",")
836
-      
799
+      handleSelectionChange(){
800
+
801
+      },
802
+
803
+      //调试
804
+      lili(index,row){
805
+        // console.log("==index==",index)
806
+        // console.log("==row==",row)
807
+        console.log("==doctor_advices==",this.doctor_advices)
808
+        console.log("==this.form==",this.form)
837
       },
809
       },
838
       getContent: function() {
810
       getContent: function() {
839
         if (this.sch != null) {
811
         if (this.sch != null) {
1270
         let mode = '6'
1242
         let mode = '6'
1271
 
1243
 
1272
 
1244
 
1273
-        ExecDoctorAdvice(this.patient.id, this.currentRow.id, this.execTime, mode,this.currentRow.origin,this.hisAdviceIds,this.adviceIds).then(response => {
1245
+        ExecDoctorAdvice(this.patient.id, this.currentRow.id, this.execTime, mode,this.currentRow.origin).then(response => {
1274
             if (response.data.state == 0) {
1246
             if (response.data.state == 0) {
1275
               this.$message.error(response.data.msg)
1247
               this.$message.error(response.data.msg)
1276
               this.exceLoading = false
1248
               this.exceLoading = false
1282
                 type: 'success',
1254
                 type: 'success',
1283
                 duration: 2000
1255
                 duration: 2000
1284
               })
1256
               })
1285
-              
1286
               var msg = response.data.data.msg
1257
               var msg = response.data.data.msg
1287
               if(msg == 1){
1258
               if(msg == 1){
1288
-                  let params = {
1289
-                  patient_id: this.patientid,
1290
-                  record_time: this.request_record_date,
1291
-                  type: 1,
1292
-                  advice_date:this.$route.query.date,
1293
-                }
1294
-                this.GetOrderDoctorAdvice(params)
1295
-                this.execTimeDialogVisible = false
1259
+                var exid = response.data.data.advice.id
1260
+                  if (response.data.data.advice.parent_id > 0) {
1261
+                    exid = response.data.data.advice.parent_id
1262
+                  }
1263
+
1264
+                  this.currentRow.execution_state = 1
1265
+                  this.currentRow.execution_staff =
1266
+                    response.data.data.advice.execution_staff
1267
+                  this.currentRow.execution_time =
1268
+                    response.data.data.advice.execution_time
1269
+                  var alen = this.doctor_advices.length
1270
+
1271
+                  for (var index in this.doctor_advices) {
1272
+                    if (
1273
+                      this.doctor_advices[index].id == exid ||
1274
+                      this.doctor_advices[index].parent_id == exid
1275
+                    ) {
1276
+                      this.doctor_advices[index].execution_state = 1
1277
+                      this.doctor_advices[index].execution_staff =
1278
+                        response.data.data.advice.execution_staff
1279
+                      this.doctor_advices[index].execution_time =
1280
+                        response.data.data.advice.execution_time
1281
+                      // this.doctor_advices[index].checker = response.data.data.advice.checker;
1282
+                      break
1283
+                    }
1284
+                  }
1285
+                  this.execTimeDialogVisible = false
1286
+
1287
+                  return false
1296
               }
1288
               }
1297
-            
1298
-              // if(msg == 1){
1299
-              //   var exid = response.data.data.advice.id
1300
-              //     if (response.data.data.advice.parent_id > 0) {
1301
-              //       exid = response.data.data.advice.parent_id
1302
-              //     }
1303
-
1304
-              //     this.currentRow.execution_state = 1
1305
-              //     this.currentRow.execution_staff =
1306
-              //       response.data.data.advice.execution_staff
1307
-              //     this.currentRow.execution_time =
1308
-              //       response.data.data.advice.execution_time
1309
-              //     var alen = this.doctor_advices.length
1310
-
1311
-              //     for (var index in this.doctor_advices) {
1312
-              //       if (
1313
-              //         this.doctor_advices[index].id == exid ||
1314
-              //         this.doctor_advices[index].parent_id == exid
1315
-              //       ) {
1316
-              //         this.doctor_advices[index].execution_state = 1
1317
-              //         this.doctor_advices[index].execution_staff =
1318
-              //           response.data.data.advice.execution_staff
1319
-              //         this.doctor_advices[index].execution_time =
1320
-              //           response.data.data.advice.execution_time
1321
-              //         break
1322
-              //       }
1323
-              //     }
1324
-              //     this.execTimeDialogVisible = false
1325
-
1326
-              //     return false
1327
-              // }
1328
 
1289
 
1329
               if(msg == 2){
1290
               if(msg == 2){
1330
                 this.$message.error("库存不足,请入库")
1291
                 this.$message.error("库存不足,请入库")
1331
-               let params = {
1332
-                patient_id: this.patientid,
1333
-                record_time: this.request_record_date,
1334
-                type: 1,
1335
-                advice_date:this.$route.query.date,
1336
-              }
1337
-              this.GetOrderDoctorAdvice(params)
1338
                 this.execTimeDialogVisible = false
1292
                 this.execTimeDialogVisible = false
1339
                 return false
1293
                 return false
1340
               }
1294
               }
1341
               if(msg == 3){
1295
               if(msg == 3){
1342
                 this.$message.error("无库存,请入库")
1296
                 this.$message.error("无库存,请入库")
1343
-               let params = {
1344
-                patient_id: this.patientid,
1345
-                record_time: this.request_record_date,
1346
-                type: 1,
1347
-                advice_date:this.$route.query.date,
1348
-              }
1349
-              this.GetOrderDoctorAdvice(params)
1350
                 this.execTimeDialogVisible = false
1297
                 this.execTimeDialogVisible = false
1351
                 return false
1298
                 return false
1352
               }
1299
               }
1655
             this.deleLoading = true
1602
             this.deleLoading = true
1656
             let mode = '7'
1603
             let mode = '7'
1657
 
1604
 
1658
-            CheckDoctorAdvice(this.patient.id, this.currentRow.id, mode,this.currentRow.origin,this.hisAdviceIds,this.adviceIds).then(
1605
+            CheckDoctorAdvice(this.patient.id, this.currentRow.id, mode,this.currentRow.origin).then(
1659
               response => {
1606
               response => {
1660
                 if (response.data.state == 0) {
1607
                 if (response.data.state == 0) {
1661
                   this.$message.error(response.data.msg)
1608
                   this.$message.error(response.data.msg)
1669
                     type: 'success',
1616
                     type: 'success',
1670
                     duration: 2000
1617
                     duration: 2000
1671
                   })
1618
                   })
1672
-                   let params = {
1673
-                    patient_id: this.patientid,
1674
-                    record_time: this.request_record_date,
1675
-                    type: 1,
1676
-                    advice_date:this.$route.query.date,
1619
+
1620
+                  var exid = response.data.data.advice.id
1621
+                  if (response.data.data.advice.parent_id > 0) {
1622
+                    exid = response.data.data.advice.parent_id
1677
                   }
1623
                   }
1678
-                console.log("param233223223233232",params)
1679
-                 this.GetOrderDoctorAdvice(params)
1680
-                  // var exid = response.data.data.advice.id
1681
-                  // if (response.data.data.advice.parent_id > 0) {
1682
-                  //   exid = response.data.data.advice.parent_id
1683
-                  // }
1684
-                  // this.currentRow.check_state = 1
1685
-                  // this.currentRow.check_time =
1686
-                  //   response.data.data.advice.check_time
1687
-                  // this.currentRow.checker = response.data.data.advice.checker
1688
-                  // var alen = this.doctor_advices.length
1689
-
1690
-                  // for (var index in this.doctor_advices) {
1691
-                  //   if (
1692
-                  //     this.doctor_advices[index].id == exid ||
1693
-                  //     this.doctor_advices[index].parent_id == exid
1694
-                  //   ) {
1695
-                  //     this.doctor_advices[index].check_state = 1
1696
-                  //     this.doctor_advices[index].check_time =
1697
-                  //       response.data.data.advice.check_time
1698
-                  //     this.doctor_advices[index].checker =
1699
-                  //       response.data.data.advice.checker
1700
-                  //     // break;
1701
-                  //   }
1624
+                  // if (this.currentRow.parent_id > 0) {
1625
+                  //     exid = this.currentRow.parent_id;
1702
                   // }
1626
                   // }
1627
+                  this.currentRow.check_state = 1
1628
+                  this.currentRow.check_time =
1629
+                    response.data.data.advice.check_time
1630
+                  this.currentRow.checker = response.data.data.advice.checker
1631
+                  var alen = this.doctor_advices.length
1632
+
1633
+                  for (var index in this.doctor_advices) {
1634
+                    if (
1635
+                      this.doctor_advices[index].id == exid ||
1636
+                      this.doctor_advices[index].parent_id == exid
1637
+                    ) {
1638
+                      this.doctor_advices[index].check_state = 1
1639
+                      this.doctor_advices[index].check_time =
1640
+                        response.data.data.advice.check_time
1641
+                      this.doctor_advices[index].checker =
1642
+                        response.data.data.advice.checker
1643
+                      // break;
1644
+                    }
1645
+                  }
1703
 
1646
 
1704
                   this.deleLoading = false
1647
                   this.deleLoading = false
1705
                 }
1648
                 }
1793
           this.nowExecTime = new Date(group_top_advice.start_time * 1000)
1736
           this.nowExecTime = new Date(group_top_advice.start_time * 1000)
1794
         }
1737
         }
1795
         this.$refs.exec_time.open()
1738
         this.$refs.exec_time.open()
1739
+        // if (this.currentRow == null) {
1740
+        //   this.$message.error("请先选择要执行的医嘱!");
1741
+        //   return false;
1742
+        // }
1743
+        //
1744
+        // if (
1745
+        //   this.currentRow.stop_state == 1 ||
1746
+        //   this.currentRow.execution_state == 1
1747
+        // ) {
1748
+        //   this.$message.error("所选医嘱已停止或执行");
1749
+        //   return false;
1750
+        // }
1751
+        //
1752
+        // if (
1753
+        //   this.currentRow.checker > 0 &&
1754
+        //   this.currentRow.checker == this.$store.getters.xt_user.user.id
1755
+        // ) {
1756
+        //   this.$message.error("核对与执行不能是同一人");
1757
+        //   return false;
1758
+        // }
1759
+        //
1760
+        // this.execTimeDialogVisible = true;
1761
+        // this.deleLoading = true;
1796
       }
1762
       }
1797
       ,
1763
       ,
1798
 
1764
 
2043
       }
2009
       }
2044
       ,
2010
       ,
2045
       show(his_is_open,is_advice_open) {
2011
       show(his_is_open,is_advice_open) {
2012
+        console.log("his_is_open233232323232323322323",his_is_open)
2013
+        console.log("is_advice_open233232323232323322323",is_advice_open)
2046
         this.his_is_open = his_is_open
2014
         this.his_is_open = his_is_open
2047
         this.is_advice_open = is_advice_open
2015
         this.is_advice_open = is_advice_open
2048
         this.isVisibility = true
2016
         this.isVisibility = true
2148
         }
2116
         }
2149
       },
2117
       },
2150
       cellMouseEnter: function(row, column, event) {
2118
       cellMouseEnter: function(row, column, event) {
2151
-       
2119
+        console.log("row323323322323233232",row)
2152
         this.currentRow = row
2120
         this.currentRow = row
2153
         this.groupSelectRow = row
2121
         this.groupSelectRow = row
2154
         // this.sameRowArr.forEach((arr, i) => {
2122
         // this.sameRowArr.forEach((arr, i) => {
2318
       }
2286
       }
2319
       ,
2287
       ,
2320
       GetLastOrNextDoctorAdvice(params) {
2288
       GetLastOrNextDoctorAdvice(params) {
2321
-       
2322
         GetLastOrNextDoctorAdvice(params).then(response => {
2289
         GetLastOrNextDoctorAdvice(params).then(response => {
2323
           if (response.data.state == 1) {
2290
           if (response.data.state == 1) {
2324
 
2291
 
2325
             var doctor_advices = response.data.data.advices
2292
             var doctor_advices = response.data.data.advices
2293
+
2326
             this.other_doctor_advices = doctor_advices
2294
             this.other_doctor_advices = doctor_advices
2327
             this.request_record_date = uParseTime(this.other_doctor_advices[0].record_date, '{y}-{m}-{d}')
2295
             this.request_record_date = uParseTime(this.other_doctor_advices[0].record_date, '{y}-{m}-{d}')
2328
             this.sch = response.data.data.schedule
2296
             this.sch = response.data.data.schedule
2333
         })
2301
         })
2334
 
2302
 
2335
       },
2303
       },
2336
-      GetOrderDoctorAdvice(params){
2337
-        GetOrderDoctorAdvice(params).then(response=>{
2338
-           if(response.data.state == 1){
2339
-            var doctorAdvice =  response.data.data.doctorAdvice
2340
-            for(let i=0;i<doctorAdvice.lenght;i++){
2341
-               doctorAdvice[i].origin = 1 
2342
-            }
2343
-            
2344
-            var hisDoctorAdvice = response.data.data.hisDoctorAdvice
2345
-            for(let i=0;i<hisDoctorAdvice.length;i++){
2346
-               hisDoctorAdvice[i].origin = 2
2347
-            }
2348
-            this.doctor_advices = []
2349
-            if(this.his_is_open!=1 && this.is_advice_open !=1){
2350
-              
2351
-               this.doctor_advices = doctorAdvice
2352
-            }
2353
-            if(this.his_is_open ==1 && this.is_advice_open!=1){
2354
-              this.doctor_advices = hisDoctorAdvice
2355
-            }
2356
-
2357
-            if(this.his_is_open == 1 &&  this.is_advice_open == 1){
2358
-               for(let i=0;i<doctorAdvice.length;i++){
2359
-                  this.doctor_advices.push(doctorAdvice[i])
2360
-               }
2361
-               for(let i=0;i<hisDoctorAdvice.length;i++){
2362
-                 this.doctor_advices.push(hisDoctorAdvice[i])
2363
-               }
2364
-            }
2365
-           
2366
-           
2367
-           }
2368
-        })
2369
-      },
2370
       getDialysisScheduleDetail() {
2304
       getDialysisScheduleDetail() {
2371
         if(this.$route.query.showView && this.$route.query.showView == true){
2305
         if(this.$route.query.showView && this.$route.query.showView == true){
2372
           return
2306
           return
2407
           let params = {
2341
           let params = {
2408
             patient_id: this.patientid,
2342
             patient_id: this.patientid,
2409
             record_time: this.request_record_date,
2343
             record_time: this.request_record_date,
2410
-            type: 1,
2411
-            advice_date:this.$route.query.date,
2344
+            type: 1
2412
           }
2345
           }
2413
 
2346
 
2414
           this.GetLastOrNextDoctorAdvice(params)
2347
           this.GetLastOrNextDoctorAdvice(params)
2417
           let params = {
2350
           let params = {
2418
             patient_id: this.patientid,
2351
             patient_id: this.patientid,
2419
             record_time: this.request_record_date,
2352
             record_time: this.request_record_date,
2420
-            type: 1,
2421
-            advice_date:this.$route.query.date,
2353
+            type: 1
2422
           }
2354
           }
2423
 
2355
 
2424
           this.GetLastOrNextDoctorAdvice(params)
2356
           this.GetLastOrNextDoctorAdvice(params)
2434
           let params = {
2366
           let params = {
2435
             patient_id: this.patientid,
2367
             patient_id: this.patientid,
2436
             record_time: this.request_record_date,
2368
             record_time: this.request_record_date,
2437
-            type: 2,
2438
-            advice_date:this.$route.query.date,
2369
+            type: 2
2439
           }
2370
           }
2440
 
2371
 
2441
           this.GetLastOrNextDoctorAdvice(params)
2372
           this.GetLastOrNextDoctorAdvice(params)
2443
           let params = {
2374
           let params = {
2444
             patient_id: this.patientid,
2375
             patient_id: this.patientid,
2445
             record_time: this.request_record_date,
2376
             record_time: this.request_record_date,
2446
-            type: 2,
2447
-            advice_date:this.$route.query.date,
2377
+            type: 2
2448
           }
2378
           }
2449
           this.GetLastOrNextDoctorAdvice(params)
2379
           this.GetLastOrNextDoctorAdvice(params)
2450
 
2380
 
2632
      }
2562
      }
2633
     },
2563
     },
2634
     created() {
2564
     created() {
2635
-      console.log("doctor_advices32323233323322332",this.doctor_advices)
2636
       var date = this.$route.query && this.$route.query.date
2565
       var date = this.$route.query && this.$route.query.date
2637
       this.record_date = uParseTime(date, '{y}-{m}-{d}')
2566
       this.record_date = uParseTime(date, '{y}-{m}-{d}')
2638
       this.form.advice_date = this.record_date
2567
       this.form.advice_date = this.record_date
2642
       this.org_id = this.$store.getters.xt_user.org.id
2571
       this.org_id = this.$store.getters.xt_user.org.id
2643
       this.patientid = this.$route.query.patient_id
2572
       this.patientid = this.$route.query.patient_id
2644
       this.request_record_date = this.record_date
2573
       this.request_record_date = this.record_date
2574
+
2575
+
2576
+      // this.getDialysisScheduleDetail()
2645
        //获取自备药
2577
        //获取自备药
2646
       this.getSelfMedicalList()
2578
       this.getSelfMedicalList()
2647
     },
2579
     },

+ 5 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderFortyThree.vue Ver fichero

98
             </tr>
98
             </tr>
99
           </thead>
99
           </thead>
100
           <tbody>
100
           <tbody>
101
-            <tr>
101
+            <!-- <tr>
102
               <td>
102
               <td>
103
-                 <div class="row">
103
+                
104
+              </td>
105
+            </tr> -->
106
+                <div class="row">
104
                   <table class="proj_table">
107
                   <table class="proj_table">
105
                     <tbody>
108
                     <tbody>
106
                       <tr>
109
                       <tr>
1724
                     </tbody>
1727
                     </tbody>
1725
                   </table>
1728
                   </table>
1726
                 </div>
1729
                 </div>
1727
-              </td>
1728
-            </tr>
1729
-               
1730
               
1730
               
1731
 
1731
 
1732
             <!-- <tr
1732
             <!-- <tr