This commit is contained in:
liushuai
2019-12-27 09:12:01 +08:00
12 changed files with 233 additions and 1282 deletions

View File

@@ -21,7 +21,7 @@
<!--:value="item.value"/>-->
<!--</el-select>-->
<span>机床图号:</span>
<el-select v-model="machineNameValue" placeholder="机床号" style="margin-right: 10px; width: 150px" size="small" clearable @change="machineChange">
<el-select v-model="machineNameValue" placeholder="机床号" style="margin-right: 10px; width: 150px" size="small" filterable clearable @change="machineChange">
<el-option
v-for="item in machineName"
:key="item.value"
@@ -326,6 +326,7 @@ export default {
this.check3 = 0
}
searchTable(this.entryNameValue, this.machineValue, this.check2, this.GroupNumValue, this.check3, this.PartDrawingNumber, this.pageCurrent, this.pageSize).then(response => {
console.log(response.data)
this.tableData = response.data.rows
this.total = response.data.total
this.listLoading = false

View File

@@ -142,6 +142,7 @@ export default {
this.search2()
this.search4()
this.search5()
this.search6()
},
methods: {
fetchData() {

View File

@@ -69,7 +69,7 @@
</el-table>
</el-card>
</el-col>
<el-col style="width: 670px">
<el-col style="width: 810px">
<el-card>
<el-table
:data="tableData"
@@ -90,7 +90,7 @@
{{ scope.row.跟单号 }}
</template>
</el-table-column>
<el-table-column align="center" label="零件图号" show-overflow-tooltip width="130">
<el-table-column align="center" label="零件图号" show-overflow-tooltip width="180">
<template slot-scope="scope">
{{ scope.row.零件图号 }}
</template>