| | |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="车牌号" prop="vehicleNo"> |
| | | <el-input |
| | | v-model="queryParams.vehicleNo" |
| | | placeholder="请输入车牌号" |
| | | clearable |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="计划开始时间"> |
| | | <el-date-picker |
| | | v-model="dateRange" |
| | |
| | | |
| | | <el-table v-loading="loading" :data="taskList" @selection-change="handleSelectionChange"> |
| | | <el-table-column type="selection" width="55" align="center" /> |
| | | <el-table-column label="任务编号" align="center" prop="taskCode" min-width="180"> |
| | | <el-table-column label="任务编号" align="center" prop="showTaskCode" min-width="120"> |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | | type="text" |
| | | @click="handleView(scope.row)" |
| | | v-hasPermi="['task:general:query']" |
| | | style="font-family: 'Courier New', monospace; font-size: 13px;" |
| | | >{{ scope.row.taskCode }}</el-button> |
| | | >{{ scope.row.showTaskCode }}</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="任务类型" align="center" prop="taskType" width="120"> |
| | | <template slot-scope="scope"> |
| | | <dict-tag :options="dict.type.sys_task_type" :value="scope.row.taskType"/> |
| | | <el-tag v-if="scope.row.taskType === 'EMERGENCY_TRANSFER'" type="danger" size="mini" style="margin-left: 5px;"> |
| | | <i class="el-icon-warning"></i> |
| | | </el-tag> |
| | | |
| | | </template> |
| | | </el-table-column> |
| | | |
| | |
| | | <dict-tag :options="dict.type.sys_task_status" :value="scope.row.taskStatus"/> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="出发地址" align="center" prop="departureAddress" show-overflow-tooltip /> |
| | | <el-table-column label="目的地址" align="center" prop="destinationAddress" show-overflow-tooltip /> |
| | | <el-table-column label="车牌号" align="center" prop="vehicleNo" width="120"> |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.vehicleNo">{{ scope.row.vehicleNo }}</span> |
| | | <span v-else style="color: #C0C4CC;">--</span> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <!-- <el-table-column label="目的地址" align="center" prop="destinationAddress" show-overflow-tooltip /> --> |
| | | <el-table-column label="预计公里数" align="center" prop="estimatedDistance" width="120"> |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.estimatedDistance">{{ scope.row.estimatedDistance }} km</span> |
| | | <span v-else style="color: #C0C4CC;">--</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="计划开始时间" align="center" prop="plannedStartTime" width="180"> |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.plannedStartTime">{{ parseTime(scope.row.plannedStartTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | <span v-else style="color: #C0C4CC;">--</span> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | |
| | | <el-table-column label="创建人" align="center" prop="creatorName" /> |
| | | <el-table-column label="执行人" align="center" prop="assigneeName" /> |
| | | |
| | | <el-table-column label="创建时间" align="center" prop="createTime" width="180"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | |
| | | @click="handleView(scope.row)" |
| | | v-hasPermi="['task:general:query']" |
| | | >查看</el-button> |
| | | <el-button |
| | | <!-- <el-button |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleUpdate(scope.row)" |
| | | v-hasPermi="['task:general:edit']" |
| | | >修改</el-button> |
| | | <el-button |
| | | >修改</el-button> --> |
| | | <!-- <el-button |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-user" |
| | | @click="handleAssign(scope.row)" |
| | | v-hasPermi="['task:general:assign']" |
| | | >分配</el-button> |
| | | <el-button |
| | | >分配</el-button> --> |
| | | <!-- <el-button |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-refresh" |
| | | @click="handleStatusChange(scope.row)" |
| | | v-hasPermi="['task:general:status']" |
| | | >状态</el-button> |
| | | >状态</el-button> --> |
| | | <el-button |
| | | size="mini" |
| | | type="text" |
| | |
| | | taskCode: null, |
| | | taskType: null, |
| | | taskStatus: null, |
| | | vehicleNo: null, |
| | | plannedStartTimeBegin: null, |
| | | plannedStartTimeEnd: null, |
| | | }, |