任务日志添加任务类型
This commit is contained in:
parent
b6bd178568
commit
f8abe2f791
@ -171,6 +171,7 @@
|
|||||||
<el-option label="移动" :value="4" />
|
<el-option label="移动" :value="4" />
|
||||||
<el-option label="仅取货" :value="5" />
|
<el-option label="仅取货" :value="5" />
|
||||||
<el-option label="仅放货" :value="6" />
|
<el-option label="仅放货" :value="6" />
|
||||||
|
<el-option label="移动到点位" :value="9" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="任务状态" prop="taskStatus">
|
<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 == 4">移动</el-text>
|
||||||
<el-text v-if="scope.row.taskType == 5">仅取货</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 == 6">仅放货</el-text>
|
||||||
|
<el-text v-if="scope.row.taskType == 9">移动到点位</el-text>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="msg" label="任务内容" align="center" show-overflow-tooltip />
|
<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 { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
import { dateFormatter } from '@/utils/formatTime'
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
|
|
||||||
defineOptions({ name: 'mapLogQueriesList' })
|
defineOptions({ name: 'MapLogQueriesList' })
|
||||||
|
|
||||||
const message = useMessage() // 消息弹窗
|
const message = useMessage() // 消息弹窗
|
||||||
|
|
||||||
@ -466,8 +468,9 @@ onMounted(() => {
|
|||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
::v-deep .el-tabs__nav-wrap::after {
|
::v-deep .el-tabs__nav-wrap::after {
|
||||||
height: 0px;
|
height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .el-tabs__nav {
|
::v-deep .el-tabs__nav {
|
||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
}
|
}
|
||||||
@ -475,6 +478,7 @@ onMounted(() => {
|
|||||||
::v-deep .table-row-class {
|
::v-deep .table-row-class {
|
||||||
background-color: #f9f9f9e5;
|
background-color: #f9f9f9e5;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .el-table__body .cell {
|
::v-deep .el-table__body .cell {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -483,6 +487,6 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.form-table {
|
.form-table {
|
||||||
padding: 6px 10px 14px 10px;
|
padding: 6px 10px 14px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user