lyh
4 天以前 a16a7006603e4b68b52689e88479881bff8c6106
维修工单修改
已修改6个文件
59 ■■■■■ 文件已修改
src/views/eam/repair/EamRepairPersonList.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/repair/EamReportRepairList.vue 30 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/repair/modules/EamRepairOrderList/EamRepairOrderModal.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/repair/modules/EamRepairPersonForm.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/repair/modules/EamRepairPersonModal.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/flowable/workflow/repairOrder/RepairOrderApprovalModal.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/repair/EamRepairPersonList.vue
@@ -28,8 +28,8 @@
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="维修时长">
              <a-input placeholder="请输入维修时长" v-model="queryParam.repairDuration"></a-input>
            <a-form-item label="维修时长(小时)">
              <a-input placeholder="请输入维修时长(小时)" v-model="queryParam.repairDuration"></a-input>
            </a-form-item>
          </a-col>
          </template>
@@ -155,7 +155,7 @@
            dataIndex: 'repairPrimary'
           },
           {
            title: '维修时长',
            title: '维修时长(小时)',
            align:"center",
            dataIndex: 'repairDuration'
           },
@@ -186,7 +186,7 @@
    }
  },
    methods: {
    }
  }
</script>
src/views/eam/repair/EamReportRepairList.vue
@@ -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: [],
src/views/eam/repair/modules/EamRepairOrderList/EamRepairOrderModal.vue
@@ -101,7 +101,8 @@
        spinning: false,
        validatorRules: {
          actualStartTime: [{ required: true, message: '请选择维修开始时间', trigger: 'change' }],
          actualEndTime: [{ required: true, message: '请选择维修结束时间', trigger: 'change' }]
          actualEndTime: [{ required: true, message: '请选择维修结束时间', trigger: 'change' }],
          faultType: [{ required: true, message: '请选择故障类型' }]
        },
        detail: {
          dataSource: [],
@@ -129,7 +130,7 @@
              validateRules: [{ required: true, message: '请选择${title}' }]
            },
            {
              title: '维修时长',
              title: '维修时长(小时)',
              key: 'repairDuration',
              align: 'center',
              placeholder: '请输入${title}',
src/views/eam/repair/modules/EamRepairPersonForm.vue
@@ -19,8 +19,8 @@
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="维修时长" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="repairDuration">
              <a-input v-model="model.repairDuration" placeholder="请输入维修时长"  ></a-input>
            <a-form-model-item label="维修时长(小时)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="repairDuration">
              <a-input v-model="model.repairDuration" placeholder="请输入维修时长(小时)"  ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
src/views/eam/repair/modules/EamRepairPersonModal.vue
@@ -8,10 +8,10 @@
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭">
    <a-spin :spinning="confirmLoading">
      <a-form-model ref="form" :model="model" :rules="validatorRules">
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="delFlag" label="删除标记">
          <a-input-number v-model="model.delFlag"/>
        </a-form-model-item>
@@ -24,13 +24,13 @@
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="repairPrimary" label="是否是主维修人;是 否">
          <a-input placeholder="请输入是否是主维修人;是 否" v-model="model.repairPrimary" />
        </a-form-model-item>
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="repairDuration" label="维修时长">
          <a-input placeholder="请输入维修时长" v-model="model.repairDuration" />
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="repairDuration" label="维修时长(小时)">
          <a-input placeholder="请输入维修时长(小时)" v-model="model.repairDuration" />
        </a-form-model-item>
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark" label="备注">
          <a-input placeholder="请输入备注" v-model="model.remark" />
        </a-form-model-item>
      </a-form-model>
    </a-spin>
  </j-modal>
src/views/flowable/workflow/repairOrder/RepairOrderApprovalModal.vue
@@ -174,7 +174,7 @@
              type: JVXETypes.normal
            },
            {
              title: '维修时长',
              title: '维修时长(小时)',
              key: 'repairDuration',
              align: 'center',
              type: JVXETypes.normal