| | |
| | | plain |
| | | size="mini" |
| | | @click="handleExport" |
| | | v-hasPermi="['work:order:audit']" |
| | | v-hasPermi="['work:order:export']" |
| | | >导出 |
| | | </el-button> |
| | | </el-col> |
| | |
| | | <el-col :span="24" class="time">故障时间:{{ item.createTime }}</el-col> |
| | | </el-row> |
| | | <el-row class="work-order-item"> |
| | | <el-col class="time" :span="24"><div>国标码:{{ item.serialNumber }}</div><div>{{ item.source }}</div></el-col> |
| | | <el-col class="time" :span="24"><div>国标码:{{ item.serialNumber }}</div> |
| | | <el-tooltip effect="dark" :content="item.source" placement="top-start"> |
| | | <div>{{ item.source }}</div> |
| | | </el-tooltip></el-col> |
| | | </el-row> |
| | | <el-row style="position: absolute;bottom: 10px"> |
| | | <el-button |
| | |
| | | <div class="moreInfo"> |
| | | <el-descriptions style="width: 100%" title="" border :column="2" size="medium"> |
| | | <el-descriptions-item label="负责单位">{{ item.unitName }}</el-descriptions-item> |
| | | <el-descriptions-item label="负责人">张一山</el-descriptions-item> |
| | | <el-descriptions-item label="联系电话">15115115142</el-descriptions-item> |
| | | <el-descriptions-item label="负责人">{{ item.unitContact }}</el-descriptions-item> |
| | | <el-descriptions-item label="联系电话">{{ item.unitContactPhone }}</el-descriptions-item> |
| | | </el-descriptions> |
| | | </div> |
| | | </el-carousel-item> |
| | |
| | | </div> |
| | | </el-dialog> |
| | | |
| | | <WorkOrderAuditing :auditingOpen="auditingOpen" :dataForm="auditingForm" :ywConditions="ywConditions" @close="closeAuditing"/> |
| | | <WorkOrderAuditing :auditingOpen="auditingOpen" :dataForm="auditingForm" :ywConditions="ywConditions" @close="closeAuditing" @getList="getList"/> |
| | | <!-- <el-dialog title="工单审核" :visible.sync="auditingOpen" width="1000px" append-to-body>--> |
| | | <!-- <el-row :gutter="20">--> |
| | | <!-- <el-col :span="10">--> |
| | |
| | | <!-- </el-dialog>--> |
| | | |
| | | <el-dialog title="运维情况记录" :visible.sync="ywConditionOpen" width="500px" append-to-body> |
| | | <el-form ref="form" :model="form" :rules="ywConditionRules" label-width="80px"> |
| | | <el-form ref="ywConditionForm" :model="form" :rules="ywConditionRules" label-width="80px"> |
| | | <el-form-item label="工单号" prop="workOrderNo"> |
| | | <el-input v-model="ywConditionForm.workOrderNo" disabled/> |
| | | </el-form-item> |
| | |
| | | > |
| | | <div style="padding: 20px;font-size: 14px"> |
| | | <div class="row flow-item-x"> |
| | | <div class="flex1"><p>上报内容:</p></div> |
| | | <div class="flex2"> |
| | | <div class="flex1" style=""><p>上报内容:</p></div> |
| | | <div class="flex2" style="color: black"> |
| | | <div v-html="ywData.content"></div> |
| | | </div> |
| | | </div> |
| | |
| | | }, |
| | | // 提交运维情况 |
| | | submitYwCondition() { |
| | | this.$refs['form'].validate(valid => { |
| | | this.$refs['ywConditionForm'].validate(valid => { |
| | | if (valid) { |
| | | ywCondition(this.form).then(res => { |
| | | this.ywConditionOpen = false |