zhaowei
昨天 6e4b54ef350de163e4101558889d043d437e793c
src/views/flowable/workflow/TechnicalStatusEvaluation/TechnicalStatusEvaluationApprovalModal.vue
@@ -411,7 +411,8 @@
              title: '检查项目',
              key: 'itemName',
              type: JVXETypes.normal,
              align: 'center'
              headerAlign: 'center',
              align: 'left'
            },
            {
              title: '检查结果',
@@ -444,13 +445,15 @@
              title: '检查项目',
              key: 'itemName',
              type: JVXETypes.normal,
              align: 'center'
              headerAlign: 'center',
              align: 'left'
            },
            {
              title: '检查子项目',
              key: 'subItemName',
              type: JVXETypes.normal,
              align: 'center'
              headerAlign: 'center',
              align: 'left'
            },
            {
              title: '允差值',
@@ -489,7 +492,8 @@
              title: '检查项目',
              key: 'itemName',
              type: JVXETypes.normal,
              align: 'center'
              headerAlign: 'center',
              align: 'left'
            },
            {
              title: '检查结果',
@@ -525,7 +529,7 @@
       * 主页面点击执行审批时触发
       * @param record 主页面列表行记录
       */
      async handleDetail(record) {
      async handleApprove(record) {
        this.model = {}
        this.detail.safetyEquipmentCheckList = this.detail.precisionCheckList = this.detail.otherCheckList = []
        this.handleTabToFirstTable()
@@ -537,7 +541,7 @@
       * 主页面点击详情时触发
       * @param record 主页面列表行记录
       */
      recordDetail(record) {
      handleDetail(record) {
        this.detail.safetyEquipmentCheckList = this.detail.precisionCheckList = this.detail.otherCheckList = []
        this.model = Object.assign({}, record)
        this.handleTabToFirstTable()
@@ -762,4 +766,20 @@
      }
    }
  }
  .vxe-header--column[data-col="itemName"] .vxe-cell {
    text-align: center !important;
  }
  .vxe-body--column[data-col="itemName"] .vxe-cell {
    text-align: left !important;
  }
  .vxe-header--column[data-col="subItemName"] .vxe-cell {
    text-align: center !important;
  }
  .vxe-body--column[data-col="subItemName"] .vxe-cell {
    text-align: left !important;
  }
</style>