|
@@ -132,30 +132,30 @@
|
|
|
<el-tag v-if="scope.row.approveStatus==2" type="success">已确认2</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="系统名称" align="center" prop="systemName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样日期" align="center" prop="samplingDate" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="氧气(%vol)" align="center" prop="oxygen" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="露点" align="center" prop="dewPoint" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="露点标准值" align="center" prop="dewPointValue" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="合格(是/否)" align="center" prop="standard" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="确认人1" align="center" prop="confirm1" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column label="系统名称" align="center" prop="systemName" :show-overflow-tooltip="true" width="180"/>
|
|
|
+ <el-table-column label="采样日期" align="center" prop="samplingDate" :show-overflow-tooltip="true" width="180"/>
|
|
|
+ <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true" width="180"/>
|
|
|
+ <el-table-column label="氧气(%vol)" align="center" prop="oxygen" :show-overflow-tooltip="true" width="180"/>
|
|
|
+ <el-table-column label="露点" align="center" prop="dewPoint" :show-overflow-tooltip="true" width="180"/>
|
|
|
+ <el-table-column label="露点标准值" align="center" prop="dewPointValue" :show-overflow-tooltip="true" width="180"/>
|
|
|
+ <el-table-column label="合格(是/否)" align="center" prop="standard" :show-overflow-tooltip="true" width="180"/>
|
|
|
+ <el-table-column label="确认人1" align="center" prop="confirm1" :show-overflow-tooltip="true" width="150">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ userFormat(scope.row.confirm1) }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="确认人2" align="center" prop="confirm2" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column label="确认人2" align="center" prop="confirm2" :show-overflow-tooltip="true" width="150">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ userFormat(scope.row.confirm2) }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="确认时间" align="center" prop="confirmationDate" width="100">
|
|
|
+ <el-table-column label="确认时间" align="center" prop="confirmationDate" width="130">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.confirmationDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="驳回原因" align="center" prop="reason" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="驳回原因" align="center" prop="reason" :show-overflow-tooltip="true" width="150"/>
|
|
|
+ <el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true" width="150"/>
|
|
|
<el-table-column label="操作" align="center" fixed="right" v-if="isApprove==0" width="120"
|
|
|
class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
@@ -204,8 +204,9 @@
|
|
|
<el-form-item label="采样日期" prop="samplingDate">
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
|
|
v-model="form.samplingDate"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
+ format="yyyy-MM-dd HH:mm"
|
|
|
+ type="datetime"
|
|
|
+ value-format="yyyy-MM-dd HH:mm"
|
|
|
placeholder="选择采样日期">
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|