王克恕 3 rokov pred
rodič
commit
99fb8cfc09

+ 4 - 2
imcs-ui/src/views/zuihou/runManageCenter/orderMgr/components/runningOrder/index.vue

@@ -145,9 +145,11 @@
       <!-- 排产 -->
       <el-table-column prop="schedulingStatus" :label='$t("runCenter.table.plan.schedulingStatus")' :show-overflow-tooltip="true" width="120" align="center">
       	<template slot-scope="{ row }">
-	      	<el-tag v-if="row.schedulingStatus == '1'" type="info">{{$t("runCenter.common.schedulingStatus.noStart")}}</el-tag>
+      		<el-tag v-if="row.schedulingStatus == '0'" type="info">待排产</el-tag>
+      		<el-tag v-if="row.schedulingStatus == '1'" type="success">已排产</el-tag>
+	      	<!--<el-tag v-if="row.schedulingStatus == '1'" type="info">{{$t("runCenter.common.schedulingStatus.noStart")}}</el-tag>
 					<el-tag v-if="row.schedulingStatus == '2'">{{$t("runCenter.common.schedulingStatus.run")}}</el-tag>
-					<el-tag v-if="row.schedulingStatus == '3'" type="success">{{$t("runCenter.common.schedulingStatus.finished")}}</el-tag>
+					<el-tag v-if="row.schedulingStatus == '3'" type="success">{{$t("runCenter.common.schedulingStatus.finished")}}</el-tag>-->
 				</template>
       </el-table-column>
       <!-- 生产 -->