| | |
| | | </span> --> |
| | | </div> |
| | | <div class="gongx"> |
| | | <el-steps v-if="taskData.AllProcedures" :active="taskData.CurrentProcedureIndex?taskData.CurrentProcedureIndex:0" finish-status="success" class="steps"> |
| | | <el-steps v-if="taskData.AllProcedures" :active="taskData.CurrentProcedureIndex ?? 0" finish-status="success" class="steps"> |
| | | <el-step icon="" :title="item" v-for="(item,index) in taskData.AllProcedures" :key="index"></el-step> |
| | | </el-steps> |
| | | </div> |
| | |
| | | - |
| | | {{ formatDate(taskData.Order.endTime) }}</el-descriptions-item |
| | | > |
| | | <el-descriptions-item label="货物描述">{{ |
| | | taskData.Order.orderAttr || "--" |
| | | }}</el-descriptions-item> |
| | | <el-descriptions-item label="通道"> |
| | | {{ channelNameConfig[taskData.Channel] || "--" }} |
| | | </el-descriptions-item> |
| | | <el-descriptions-item label="客户编码">{{ |
| | | taskData.Order.customer || "--" |
| | | }}</el-descriptions-item> |
| | |
| | | import AddIssue from "../components/AddIssue.vue"; |
| | | import ProcessModel from "../components/ProcessModel.vue"; |
| | | import TaskControlModal from "@/components/TaskControlModal.vue"; |
| | | import {channelNameConfig} from "@/common/constants"; |
| | | export default { |
| | | components: { |
| | | TaskControlModal, |
| | |
| | | listData:[], |
| | | resResult:null, |
| | | resprocInfoTimer:null, |
| | | channelNameConfig: channelNameConfig |
| | | }; |
| | | }, |
| | | mounted() { |
| | |
| | | } |
| | | } |
| | | } |
| | | .el-step__head.is-process{ |
| | | color: #00cc66 !important; |
| | | border-color:#00cc66; |
| | | } |
| | | .el-step__title.is-process{ |
| | | color: #00cc66 !important; |
| | | } |
| | | .el-step__head.is-wait{ |
| | | color:#fff; |
| | | border-color:#fff; |
| | |
| | | .el-step__title.is-wait{ |
| | | color:#fff; |
| | | } |
| | | |
| | | // 使步骤条节点状态成功时,前面的线同步更改颜色 |
| | | .steps{ |
| | | /* 进行中状态:圈线 */ |
| | | & .el-step__head.is-process { |
| | | color: #00cc66; |
| | | border-color: #00cc66; |
| | | } |
| | | /* 进行中状态:圈内 */ |
| | | & .el-step__head.is-process > .el-step__icon { |
| | | background: #00cc66; |
| | | color: #00cc66; |
| | | } |
| | | /* 进行中状态:title(文字) */ |
| | | & .el-step__title.is-process { |
| | | color: #00cc66; |
| | | } |
| | | |
| | | /* 完成状态:圈线 */ |
| | | & .el-step__head.is-success { |
| | | color: #00cc66; |
| | | border-color: #00cc66; |
| | | } |
| | | /* 完成状态:title(文字) */ |
| | | & .el-step__title.is-success { |
| | | color: #00cc66; |
| | | } |
| | | /* 完成状态:line |
| | | * 描述:第一步完成,第二步进行时,之间的进度条有颜色 |
| | | */ |
| | | & .el-step__head.is-success > .el-step__line > .el-step__line-inner { |
| | | width: 100% !important; |
| | | border-width: 1px !important; |
| | | } |
| | | } |
| | | } |
| | | .set-title { |
| | | cursor: pointer; |