Browse Source

2026-03-11

技术参数卡:新增时筛选、字段显示增加"客户名称和项目名称"
master
fengyuan_yang 1 month ago
parent
commit
c7ac8e0807
  1. 43
      src/views/modules/sampleManagement/com_technical-add-or-update.vue

43
src/views/modules/sampleManagement/com_technical-add-or-update.vue

@ -259,11 +259,22 @@
</el-table>
</el-dialog>
<el-dialog width="788px" title="选择物料" v-drag :close-on-click-modal="false" :visible.sync="partModelFlag">
<el-form :inline="true" label-position="top" label-width="100px" >
<el-dialog width="950px" title="选择物料" v-drag :close-on-click-modal="false" :visible.sync="partModelFlag">
<el-form :inline="true" label-position="top" label-width="100px">
<el-form-item label="项目号">
<el-input v-model="partSearch.projectId" style="width: 130px"></el-input>
<el-input v-model="partSearch.projectId" clearable style="width: 130px"></el-input>
</el-form-item>
<el-form-item label="项目名称">
<el-input v-model="partSearch.projectName" clearable style="width: 200px"></el-input>
</el-form-item>
<el-form-item label="客户编码">
<el-input v-model="partSearch.customerId" clearable style="width: 130px"></el-input>
</el-form-item>
<el-form-item label="客户名称">
<el-input v-model="partSearch.customerDesc" clearable style="width: 200px"></el-input>
</el-form-item>
</el-form>
<el-form :inline="true" label-position="top" label-width="100px">
<el-form-item label="PLM物料编码">
<el-input v-model="partSearch.testPartNo" style="width: 130px"></el-input>
</el-form-item>
@ -315,6 +326,22 @@
style="font-size: 20px"
label="项目名称">
</el-table-column>
<el-table-column
prop="customerId"
header-align="center"
align="left"
min-width="120"
style="font-size: 20px"
label="客户编码">
</el-table-column>
<el-table-column
prop="customerDesc"
header-align="center"
align="left"
min-width="150"
style="font-size: 20px"
label="客户名称">
</el-table-column>
<el-table-column
prop="customerPartNo"
header-align="center"
@ -495,11 +522,14 @@
totalPage: 0,
partSearch:{
projectId:'',
projectName: '',
customerId: '',
customerName:'',
finalPartNo:'',
testPartNo:'',
partDesc:'',
site:this.$store.state.user.site,
username:this.$store.state.user.name,
site: this.$store.state.user.site,
username: this.$store.state.user.name,
customerPartNo:'',
page: 1,
limit: 100,
@ -909,6 +939,9 @@
choosePartModel () {
this.partSearch = {
projectId: '',
projectName: '',
customerId: '',
customerName:'',
finalPartNo: '',
customerPartNo: '',
partDesc: '',

Loading…
Cancel
Save