修改金工页面尺寸

This commit is contained in:
bryan sun
2019-11-02 12:37:37 +08:00
parent 137702851c
commit 839bb64eef
10 changed files with 118 additions and 119 deletions

View File

@@ -3,8 +3,8 @@
<el-card>
<div>
<el-row>
<span style="margin-left: 10px">机床号</span>
<el-select v-model="machineNumberValue" filterable placeholder="机床编号" size="small" style="margin-bottom: 10px" clearable @change="machineChange">
<!-- <span style="margin-left: 10px">机床号</span>-->
<el-select v-model="machineNumberValue" filterable placeholder="机床编号" size="small" style="margin:0px 10px" clearable @change="machineChange">
<el-option
v-for="item in machineNumber"
:key="item.value"
@@ -14,27 +14,25 @@
<div style="float: right; color: #8492a6; font-size: 13px">{{ item.name }}</div>
</el-option>
</el-select>
<span style="margin-left: 10px">组号</span>
<el-select v-model="groupNumberValue" placeholder="组号" size="small" clearable>
<!-- <span style="margin-left: 10px">组号</span>-->
<el-select v-model="groupNumberValue" placeholder="组号" style="margin:0px 10px" size="small" clearable>
<el-option
v-for="item in groupNumber"
:key="item.value"
:label="item.label"
:value="item.value"/>
</el-select>
<span style="margin-left: 10px">零件号</span>
<el-input v-model="PrNum" size="small" placeholder="零件号" clearable style="width: 200px"/>
</el-row>
<el-row>
<span style="margin-left: 10px">工艺员</span>
<el-select v-model="personValue" placeholder="工艺员" size="small" clearable >
<!-- <span style="margin-left: 10px">零件号</span>-->
<el-input v-model="PrNum" size="small" placeholder="零件号" clearable style="width: 200px; margin:0px 10px"/>
<!-- <span style="margin-left: 10px">工艺员</span>-->
<el-select v-model="personValue" placeholder="工艺员" size="small" style="margin:0px 10px" clearable >
<el-option
v-for="item in person"
:key="item.value"
:label="item.label"
:value="item.value"/>
</el-select>
<el-button type="success" size="small" style="margin-left: 10px" icon="el-icon-search" @click="pageCurrent=1;pageSize=20;total=0;searchData()">查询</el-button>
<el-button type="success" size="small" style="margin: 0px 10px" icon="el-icon-search" @click="pageCurrent=1;pageSize=20;total=0;searchData()">查询</el-button>
</el-row>
</div>
</el-card>
@@ -53,7 +51,7 @@
type="selection"
align="center"
width="55"/>
<el-table-column label="机床号" prop="机床图号" align="center">
<el-table-column label="机床号" prop="机床图号" align="center" width="150px">
<template slot-scope="scope">
{{ scope.row.机床图号 }}
</template>