|
|
@ -101,6 +101,7 @@
|
|
|
|
<el-table :data="detailList" v-loading="detailLoading">
|
|
|
|
<el-table :data="detailList" v-loading="detailLoading">
|
|
|
|
<el-table-column label="序号" width="50" type="index"/>
|
|
|
|
<el-table-column label="序号" width="50" type="index"/>
|
|
|
|
<el-table-column label="设备编码" width="150" prop="deviceCode"/>
|
|
|
|
<el-table-column label="设备编码" width="150" prop="deviceCode"/>
|
|
|
|
|
|
|
|
<el-table-column label="设备部门" width="100" prop="deptName"/>
|
|
|
|
<el-table-column label="最小销售标识" width="150" prop="nameCode"/>
|
|
|
|
<el-table-column label="最小销售标识" width="150" prop="nameCode"/>
|
|
|
|
<el-table-column label="名称" width="150" prop="productName"/>
|
|
|
|
<el-table-column label="名称" width="150" prop="productName"/>
|
|
|
|
<el-table-column label="规格型号" width="160" prop="ggxh"/>
|
|
|
|
<el-table-column label="规格型号" width="160" prop="ggxh"/>
|
|
|
@ -187,6 +188,17 @@
|
|
|
|
<el-descriptions-item label="问题描述" :label-style="{'height': '100px'}" :span="3">
|
|
|
|
<el-descriptions-item label="问题描述" :label-style="{'height': '100px'}" :span="3">
|
|
|
|
{{ detailData.description }}
|
|
|
|
{{ detailData.description }}
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
<el-descriptions-item label="报修现场图片" span="4" label-style="height:100px">
|
|
|
|
|
|
|
|
<localImageUpload
|
|
|
|
|
|
|
|
:fileType="['image/jpeg','image/png','image/gif']"
|
|
|
|
|
|
|
|
:maxFiles= "maxFiles"
|
|
|
|
|
|
|
|
:fileSizeLimit="fileSizeLimit"
|
|
|
|
|
|
|
|
:type="deptDeviceCheck"
|
|
|
|
|
|
|
|
:uploadedFileNames="detailData.livePath"
|
|
|
|
|
|
|
|
:isShowTip="false"
|
|
|
|
|
|
|
|
:disabledUp="true"
|
|
|
|
|
|
|
|
></localImageUpload>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="是否维修" :span="3">
|
|
|
|
<el-descriptions-item label="是否维修" :span="3">
|
|
|
|
<el-form-item label=" " prop="repairFlag" style="margin-bottom: 0">
|
|
|
|
<el-form-item label=" " prop="repairFlag" style="margin-bottom: 0">
|
|
|
|
<el-radio-group v-model="diagnosisData.repairFlag">
|
|
|
|
<el-radio-group v-model="diagnosisData.repairFlag">
|
|
|
@ -238,6 +250,21 @@
|
|
|
|
maxlength="300" v-model.trim="diagnosisData.diagnosisInfo"/>
|
|
|
|
maxlength="300" v-model.trim="diagnosisData.diagnosisInfo"/>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item label="诊断图片" span="4" label-style="height:100px">
|
|
|
|
|
|
|
|
<localImageUpload
|
|
|
|
|
|
|
|
:fileType="['image/jpeg','image/png','image/gif']"
|
|
|
|
|
|
|
|
:maxFiles= "this.maxFiles"
|
|
|
|
|
|
|
|
:fileSizeLimit="this.fileSizeLimit"
|
|
|
|
|
|
|
|
:type="deptDeviceCheck"
|
|
|
|
|
|
|
|
:uploadedFileNames="this.uploadedFileNames"
|
|
|
|
|
|
|
|
:isShowTip="false"
|
|
|
|
|
|
|
|
@changeComponent1Data="component1DataChange"
|
|
|
|
|
|
|
|
></localImageUpload>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
</el-descriptions>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
</el-card>
|
|
|
|
</el-card>
|
|
|
@ -250,7 +277,7 @@
|
|
|
|
title="维修单信息"
|
|
|
|
title="维修单信息"
|
|
|
|
width="80%"
|
|
|
|
width="80%"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<deviceRepairDialog :repairId="repairId"/>
|
|
|
|
<deviceRepairDialog :repairId="repairId" :disabledUp="true" />
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|