fix: 与调用mes数据库的问题

This commit is contained in:
2023-10-24 15:05:37 +08:00
parent 0a779f2b00
commit 0b37e66ac8
10 changed files with 28 additions and 17 deletions

View File

@@ -60,7 +60,7 @@ export default {
url: 'api/pdmBdWorkorder/mesOrder',
optShow: {},
query: {
material_code: null
materialId: null
}
})
},

View File

@@ -226,15 +226,15 @@
/>
</el-form-item>
<el-form-item v-if="form.region_code === 'FJ'" label="客户编码">
<el-select v-model="form.custer_no" placeholder="请选择" style="width: 240px;">
<el-select v-model="form.custer_no" clearable filterable placeholder="请选择" style="width: 240px;">
<el-option
v-for="item in custerList"
:key="item.CUSTER_NO"
:label="item.CUSTER_NAME"
:value="item.CUSTER_NO"
:key="item.custer_NO"
:label="item.custer_NAME"
:value="item.custer_NO"
>
<span style="float: left">{{ item.CUSTER_NO }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.CUSTER_NAME }}</span>
<span style="float: left">{{ item.custer_NO }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.custer_NAME }}</span>
</el-option>
</el-select>
</el-form-item>