| | |
| | | <el-table-column prop="driverPhone" label="联系方式" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="inTypeTemp" label="入库类型" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="arriveDate" label="预约到场时间" min-width="150" show-overflow-tooltip /> |
| | | <el-table-column prop="name" label="审批结果" min-width="100" show-overflow-tooltip> |
| | | <el-table-column prop="auditName" label="审批结果" min-width="100" show-overflow-tooltip> |
| | | <template v-slot="scope"> |
| | | <span v-if="scope.row.status == '0'">待审批</span> |
| | | <span v-if="scope.row.status == '1'">审批中</span> |
| | |
| | | this.isShowEdit = true |
| | | this.param = { |
| | | inType: 0 |
| | | }, |
| | | this.$refs['ruleForm'].clearValidate() |
| | | } |
| | | this.$nextTick(() => { |
| | | this.$refs['ruleForm'].clearValidate() |
| | | }) |
| | | this.$set(this.param, 'arriveDate', dayjs().format('YYYY-MM-DD HH:mm:ss')) |
| | | this.getplatformReason() |
| | | }, |