lyh
2025-07-25 c2f3a056b91798a96c6841939def34be98477c4f
src/views/eam/repair/EamReportAccidentsRegisterList.vue
@@ -67,6 +67,19 @@
          <a v-else @click="handleDetail(record)">详情</a>
        </span>
      <!--字符串超长截取省略号显示-->
      <span slot="accidentPhenomenon" slot-scope="text">
          <j-ellipsis :value="text" :length="8"/>
      </span>
      <!--字符串超长截取省略号显示-->
      <span slot="measure" slot-scope="text">
          <j-ellipsis :value="text" :length="8"/>
      </span>
      <!--字符串超长截取省略号显示-->
      <span slot="causingResults" slot-scope="text">
          <j-ellipsis :value="text" :length="8"/>
      </span>
    </a-table>
    <!-- table区域-end -->
@@ -188,17 +201,20 @@
          {
            title: '事故现象',
            align: 'center',
            dataIndex: 'accidentPhenomenon'
            dataIndex: 'accidentPhenomenon',
            scopedSlots: {customRender: 'accidentPhenomenon'},
          },
          {
            title: '采取措施',
            align: 'center',
            dataIndex: 'measure'
            dataIndex: 'measure',
            scopedSlots: {customRender: 'measure'},
          },
          {
            title: '造成结果',
            align: 'center',
            dataIndex: 'causingResults'
            dataIndex: 'causingResults',
            scopedSlots: {customRender: 'causingResults'},
          },
          {
            title: '操作工',