lyh
10 小时以前 cf84543fb205993a0a20e0e420712f6f146cd09d
src/views/eam/repair/EamReportRepairList.vue
@@ -11,7 +11,7 @@
          </a-col>
          <a-col :xl="4" :lg="6" :md="8" :sm="12">
            <a-form-item label="报修状态">
              <j-dict-select-tag dict-code="report_repair_status" placeholder="请选择报修状态"
              <j-dict-select-tag dict-code="repair_status" placeholder="请选择报修状态"
                                 v-model="queryParam.reportStatus"/>
            </a-form-item>
          </a-col>
@@ -98,6 +98,24 @@
            <a>作废</a>
          </a-popconfirm>
        </span>
        <!--字符串超长截取省略号显示-->
        <span slot="faultDescription" slot-scope="text">
          <j-ellipsis :value="text" :length="8"/>
        </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>
    </div>
    <!-- table区域-end -->
@@ -179,7 +197,8 @@
          {
            title: '故障现象',
            align: 'center',
            dataIndex: 'faultDescription'
            dataIndex: 'faultDescription',
            scopedSlots: { customRender: 'faultDescription' }
          },
          {
            title: '是否停机',
@@ -243,17 +262,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' }
          }
        ],
        faultTimeRange: [],