This commit is contained in:
yyy 2025-06-27 16:35:08 +08:00
commit 945708ccc9

View File

@ -171,6 +171,7 @@
<el-option label="移动" :value="4" />
<el-option label="仅取货" :value="5" />
<el-option label="仅放货" :value="6" />
<el-option label="移动到点位" :value="9" />
</el-select>
</el-form-item>
<el-form-item label="任务状态" prop="taskStatus">
@ -273,6 +274,7 @@
<el-text v-if="scope.row.taskType == 4">移动</el-text>
<el-text v-if="scope.row.taskType == 5">仅取货</el-text>
<el-text v-if="scope.row.taskType == 6">仅放货</el-text>
<el-text v-if="scope.row.taskType == 9">移动到点位</el-text>
</template>
</el-table-column>
<el-table-column prop="msg" label="任务内容" align="center" show-overflow-tooltip />
@ -331,7 +333,7 @@ import * as MapTaskAPi from '@/api/map/mapTask'
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
defineOptions({ name: 'mapLogQueriesList' })
defineOptions({ name: 'MapLogQueriesList' })
const message = useMessage() //
@ -466,8 +468,9 @@ onMounted(() => {
<style lang="scss" scoped>
::v-deep .el-tabs__nav-wrap::after {
height: 0px;
height: 0;
}
::v-deep .el-tabs__nav {
padding-left: 4px;
}
@ -475,6 +478,7 @@ onMounted(() => {
::v-deep .table-row-class {
background-color: #f9f9f9e5;
}
::v-deep .el-table__body .cell {
font-weight: 400;
font-size: 14px;
@ -483,6 +487,6 @@ onMounted(() => {
}
.form-table {
padding: 6px 10px 14px 10px;
padding: 6px 10px 14px;
}
</style>