zenglf
2023-08-19 8611a1ba1696e76cced04ff5d658ba138a05dafd
src/views/eam/modules/equipmentReturn/EquipmentUnloadingReturnDetailModal.vue
@@ -14,17 +14,17 @@
        <a-row :span='24'>
          <a-col :span='12'>
            <a-form-model-item label='单据号' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='num'>
              <a-input v-model='model.num' placeholder='请输入单据号'></a-input>
              <a-input v-model='model.num' placeholder='请输入单据号' :disabled="disableSubmit"></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span='12'>
            <a-form-model-item label='业务类型' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='businessType'>
              <j-dict-select-tag
                allow-clear
                :disabled='disableSubmit'
                v-model='model.businessType'
                :placeholder="disableSubmit?'':'请选择类型'"
                :triggerChange='true'
                :disabled="disableSubmit"
                dictCode='business_type'
              />
            </a-form-model-item>
@@ -36,6 +36,7 @@
              <a-select
                placeholder='请选择'
                v-model='model.useDepartId'
                :disabled="disableSubmit"
                :options='this.departVoList'
                style='width: 100%'
              />
@@ -44,7 +45,7 @@
          <a-col :span='12'>
            <a-form-model-item label='备注' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='remark'>
              <a-textarea v-model='model.remark'  placeholder='请输入备注'></a-textarea>
              <a-textarea v-model='model.remark'  placeholder='请输入备注' :disabled="disableSubmit"></a-textarea>
            </a-form-model-item>
          </a-col>
@@ -55,6 +56,7 @@
      type='primary'
      :style="{ marginRight: '8px',marginBottom:'8px' }"
      :loading='confirmLoading'
      :disabled="disableSubmit"
      @click='selectInspectionProjects()'
    >设备信息
    </a-button>
@@ -76,6 +78,7 @@
          <a-date-picker
            :value='text'
            :disabled="disableSubmit"
            v-if="col.dataIndex == 'actualReturnDate'"
            format='YYYY-MM-DD HH:mm:ss'
            @change='(e)=>handleChange(e, record.key, col, index)'
@@ -89,6 +92,7 @@
      >
        <a-popconfirm
          title='确定删除吗?'
          :disabled="disableSubmit"
          @confirm='() => handleDelete(text,record, index)'
        >
          <a>删除</a>
@@ -106,6 +110,7 @@
      <a-button
        @click='handleOk()'
        type='primary'
        :disabled="disableSubmit"
        :loading='confirmLoading'
      >确定
      </a-button>
@@ -200,14 +205,14 @@
        {
          title: '责任班组',
          align: 'center',
          dataIndex: 'responsibilityTeamId'
          dataIndex: 'responsibilityTeamName'
        },
        {
          title: '责任人',
          align: 'center',
          dataIndex: 'responsibilityUserId'
          dataIndex: 'responsibilityUserName'
        },
        {
          title: '操作',
@@ -292,7 +297,9 @@
          technicalStatus: data[i].technologyStatus_dictText,
          responsibilityTeamId: data[i].teamId,
          responsibilityUserId: data[i].functionary,
          actualBorrowDate:data[i].updateTime
          actualBorrowDate:data[i].updateTime,
          responsibilityUserName:data[i].functionary_dictText,
          responsibilityTeamName:data[i].teamId_dictText,
        })
      }