Browse Source

磨具

master
常熟吴彦祖 4 weeks ago
parent
commit
141a035b69
  1. 8
      src/views/modules/tool/toolInstanceQuery.vue

8
src/views/modules/tool/toolInstanceQuery.vue

@ -11,6 +11,9 @@
<el-form-item label="工具实例ID"> <el-form-item label="工具实例ID">
<el-input v-model="searchData.toolInstanceId" style="width: 160px" clearable/> <el-input v-model="searchData.toolInstanceId" style="width: 160px" clearable/>
</el-form-item> </el-form-item>
<el-form-item label="描述型号">
<el-input v-model="searchData.toolSpec" style="width: 120px" clearable/>
</el-form-item>
<el-form-item label="库位"> <el-form-item label="库位">
<el-input v-model="searchData.locationId" style="width: 120px" clearable/> <el-input v-model="searchData.locationId" style="width: 120px" clearable/>
</el-form-item> </el-form-item>
@ -98,7 +101,7 @@ const TOOL_INSTANCE_COLUMN_SPECS = [
{ prop: 'site', label: '工厂编码', width: 60, align: 'left', tooltip: true }, { prop: 'site', label: '工厂编码', width: 60, align: 'left', tooltip: true },
{ prop: 'toolId', label: '工具编码', width: 80, align: 'left', tooltip: true }, { prop: 'toolId', label: '工具编码', width: 80, align: 'left', tooltip: true },
{ prop: 'toolInstanceId', label: '工具实例ID', width: 120, align: 'left', tooltip: true }, { prop: 'toolInstanceId', label: '工具实例ID', width: 120, align: 'left', tooltip: true },
{ prop: 'spec', label: '型号描述', width: 120, align: 'left', tooltip: true },
{ prop: 'toolSpec', label: '型号描述', width: 120, align: 'left', tooltip: true },
{ prop: 'warehouseId', label: '默认仓库', width: 80, align: 'left' }, { prop: 'warehouseId', label: '默认仓库', width: 80, align: 'left' },
{ prop: 'locationId', label: '库位号', width: 60, align: 'left' }, { prop: 'locationId', label: '库位号', width: 60, align: 'left' },
{ prop: 'supplierName', label: '模具供应商', width: 140, align: 'left', tooltip: true }, { prop: 'supplierName', label: '模具供应商', width: 140, align: 'left', tooltip: true },
@ -126,7 +129,8 @@ export default {
toolInstanceId: '', toolInstanceId: '',
locationId: '', locationId: '',
lastSeqNoInput: '', lastSeqNoInput: '',
lastOrderNo: ''
lastOrderNo: '',
toolSpec: '',
}, },
pageIndex: 1, pageIndex: 1,
pageSize: 20, pageSize: 20,

Loading…
Cancel
Save