This commit is contained in:
zhangdingyu
2018-11-19 13:33:23 +08:00
parent e0e1124a9d
commit 59e74eb1a1
8 changed files with 292 additions and 78 deletions

View File

@@ -40,11 +40,11 @@
<el-input v-model="number" placeholder="零件号" clearable size="small" style="width: 200px;"/>
<el-button type="success" class="el-icon-search" size="small" style="margin: 10px 0 0 10px" @click="getTableData();pageCurrent=1;pageSize=10;total = 0">查询</el-button>
<span>进度颜色</span>
<el-radio v-model="radioList" label="0" style="background-color: white">全部</el-radio>
<el-radio v-model="radioList" label="1" style="background-color: red">拖期</el-radio>
<el-radio v-model="radioList" label="2" style="background-color: yellow">即将拖期</el-radio>
<el-radio v-model="radioList" label="3" style="background-color: lawngreen">如期</el-radio>
<el-radio v-model="radioList" label="4" style="background-color: deepskyblue">工序外协</el-radio>
<!--<span style="background-color: white">全部</span>-->
<span style="background-color: red">拖期</span>
<span style="background-color: yellow">即将拖期</span>
<span style="background-color: lawngreen">如期</span>
<span style="background-color: deepskyblue">工序外协</span>
</el-row>
</el-card>
@@ -396,6 +396,7 @@ export default {
this.Groups = []
if (this.project !== '') {
getMachines(this.project).then(response => {
console.log(response.data)
for (let i = 0; i < response.data.length; i++) {
this.Machines.push({
label: response.data[i].机床图号,
@@ -539,7 +540,7 @@ export default {
background-color: transparent;
border: 0px solid white;
}
.lightgreen{
.green{
background-color: lightgreen;
border: 1px solid #1f2d3d;
}