Browse Source

2025-09-15

1、制造工具这个框也固定下,分辨率高了一条都不显示
2、工具编码不能模糊查询
3、工具实例不随着工具编码变化(查询后,下面的页签没有同步刷新)
master
fengyuan_yang 4 months ago
parent
commit
da90835d08
  1. 2
      src/views/modules/proofing/requestForProofing.vue
  2. 2
      src/views/modules/test/requestForTest.vue
  3. 19
      src/views/modules/tooling/manuf_tool.vue

2
src/views/modules/proofing/requestForProofing.vue

@ -2264,7 +2264,7 @@ export default {
},
mounted() {
this.$nextTick(() => {
this.height = window.innerHeight / 2 - 100;
this.height = window.innerHeight / 2 - 50;
/*第二个表格高度的动态调整*/
this.secondHeight = window.innerHeight / 2 - 206;
})

2
src/views/modules/test/requestForTest.vue

@ -2377,7 +2377,7 @@ export default {
// this.height = window.innerHeight / 2 - 240;
// /**/
// this.secondHeight = window.innerHeight / 2 - 206;
this.height = window.innerHeight / 2 - 30
this.height = window.innerHeight / 2 - 50
/*第二个表格高度的动态调整*/
this.secondHeight = window.innerHeight / 2 - 186
})

19
src/views/modules/tooling/manuf_tool.vue

@ -2,18 +2,18 @@
<div class="mod-config customer-tab">
<el-form :inline="true" label-position="top" label-width="100px" style="margin-top: 0px;">
<el-form-item label="工厂">
<el-input v-model="searchData.site" style="width: 160px"></el-input>
<el-input v-model="searchData.site" style="width: 80px"></el-input>
</el-form-item>
<el-form-item label="工具编码">
<el-input v-model="searchData.toolId" style="width: 160px"></el-input>
<el-input v-model="searchData.toolId" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item label="工具类型">
<span slot="label" style="" @click="getBaseList(1016)"><a herf="#">工具类型</a></span>
<el-input v-model="searchData.toolType" style="width: 160px"></el-input>
<el-input v-model="searchData.toolType" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item label="日历标识">
<span slot="label" style="" @click="getBaseList(1018)"><a herf="#">日历标识</a></span>
<el-input v-model="searchData.calendarId"></el-input>
<el-input v-model="searchData.calendarId" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item label=" ">
<el-button @click="search()" type="primary" style="margin-left: 2px;margin-top:0px">查询</el-button>
@ -822,7 +822,7 @@ export default {
},
mounted() {
this.$nextTick(() => {
this.height = window.innerHeight - 520;
this.height = window.innerHeight / 2 - 50;
})
},
methods: {
@ -1033,16 +1033,11 @@ export default {
this.totalPage = data.total;
if (this.dataList.length > 0) {
this.$refs.mainTable.setCurrentRow(this.dataList[0]);
//
if (this.currentRow && Object.keys(this.currentRow).length > 0) {
//
} else {
this.currentRow = JSON.parse(JSON.stringify(this.dataList[0]));
}
this.currentRow = JSON.parse(JSON.stringify(this.dataList[0]));
this.refreshCurrentTabTable()
} else {
this.currentRow = {}
}
this.refreshCurrentTabTable()
}
this.dataListLoading = false

Loading…
Cancel
Save