@@ -58,6 +58,18 @@
min-width="160"
label="交期时间">
</el-table-column>
+ <el-table-column
+ prop="warningState"
+ header-align="center"
+ align="center"
+ min-width="160"
+ label="状态">
+ <template slot-scope="scope">
+ <el-tag v-if="scope.row.warningState == '1'">正常</el-tag>
+ <el-tag type="warning" v-if="scope.row.warningState == '2'">预警</el-tag>
+ <el-tag type="danger" v-if="scope.row.warningState == '3'">超期</el-tag>
+ </template>
+ </el-table-column>
<el-table-column
prop="orderCode"
header-align="center"