safecheck-client 4.0.0-71 → 4.0.0-73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -259,7 +259,7 @@ export default {
259
259
  },
260
260
  freshCheckBook () {
261
261
  this.checkBooks = []
262
- new HttpResetClass().load('POST', `/api/af-safecheck/sql/safe_singleTable_OrderBy`, {
262
+ new HttpResetClass().load('POST', `/api/af-safecheck/sql/safe_singleTable_OrderBy?pageNo=1&pageSize=9999999`, {
263
263
  data: {
264
264
  items: 'id,f_check_book_name',
265
265
  tablename: 't_check_book',
@@ -49,6 +49,10 @@
49
49
  <td colspan="3">安检类型 :</td>
50
50
  <td colspan="5" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" :title="row.f_safecheck_type">{{row.f_safecheck_type}}</td>
51
51
  </tr>
52
+ <tr class="safe-bodyfont" v-if="row.f_remark">
53
+ <td colspan="3">计划备注 :</td>
54
+ <td colspan="5" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" :title="row.f_remark">{{row.f_remark}}</td>
55
+ </tr>
52
56
  </table>
53
57
  </div>
54
58
  </div>
@@ -291,6 +295,11 @@
291
295
  >
292
296
  </v-select>
293
297
  </div>
298
+ <div class="form-group col-sm-12" >
299
+ <label class="font_normal_body">计划备注:</label>
300
+ <input type="text" class="input_search" v-model="createPlan.f_remark"
301
+ style="width: 60%" placeholder="请输入备注" />
302
+ </div>
294
303
  </div>
295
304
  </div>
296
305
  <div slot="modal-footer" class="modal-footer" style="text-align: center">
@@ -401,6 +410,11 @@
401
410
  >
402
411
  </v-select>
403
412
  </div>
413
+ <div class="form-group col-sm-12" >
414
+ <label class="font_normal_body">计划备注:</label>
415
+ <input type="text" class="input_search" v-model="upCheckPlan.f_remark"
416
+ style="width: 60%" placeholder="请输入备注" />
417
+ </div>
404
418
  </div>
405
419
  </div>
406
420
  <div slot="modal-footer" class="modal-footer" style="text-align: center">
@@ -439,7 +453,8 @@
439
453
  f_checker:'',
440
454
  f_checkerstr:'',
441
455
  checker:{},
442
- checkers:[]
456
+ checkers:[],
457
+ f_remark:''
443
458
  },
444
459
  isSend:false,
445
460
  createPlan:{
@@ -454,6 +469,7 @@
454
469
  f_checker:null,
455
470
  f_checkerstr:null,
456
471
  f_safecheck_type:'',
472
+ f_remark:''
457
473
  },
458
474
  planCondition:{},
459
475
  showCondtion:false,
@@ -697,6 +713,7 @@
697
713
  this.upCheckPlan.f_checker=row.f_checker?row.f_checker:null
698
714
  this.upCheckPlan.isShare=row.f_checker_id?'否':'是'
699
715
  this.upCheckPlan.f_issued=row.f_issued
716
+ this.upCheckPlan.f_remark=row.f_remark
700
717
  this.upCheckPlan.checker={id:row.f_checker_id,name:row.f_checker}
701
718
  this.showUpPlan=true
702
719
  },
@@ -740,7 +757,8 @@
740
757
  f_plan_year:this.upCheckPlan.f_plan_year,
741
758
  f_plan_month:this.upCheckPlan.f_plan_month,
742
759
  f_plan_id:this.upCheckPlan.id,
743
- issued:'否'
760
+ issued:'否',
761
+ f_remark:this.upCheckPlan.f_remark,
744
762
  }
745
763
  }, {resolveMsg: null, rejectMsg: null})
746
764
  if(res.data.code==200){