更新
This commit is contained in:
parent
2f8288dceb
commit
7a6214441b
@ -380,6 +380,16 @@
|
|||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="接车员">
|
||||||
|
<el-select v-model="form.meetManId" placeholder="请选择接车员">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in meetManList"
|
||||||
|
:key="dict.id"
|
||||||
|
:label="dict.nickname"
|
||||||
|
:value="dict.id"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<!-- <el-form-item label="请选择检测项目">-->
|
<!-- <el-form-item label="请选择检测项目">-->
|
||||||
<!-- 可选检测项目 -->
|
<!-- 可选检测项目 -->
|
||||||
<div v-if="isInsert">
|
<div v-if="isInsert">
|
||||||
@ -531,6 +541,7 @@ export default {
|
|||||||
selectInspectionProjectIds:[],
|
selectInspectionProjectIds:[],
|
||||||
isInsert: false,
|
isInsert: false,
|
||||||
leadManList:[],
|
leadManList:[],
|
||||||
|
meetManList:[],
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
@ -826,6 +837,7 @@ export default {
|
|||||||
this.getINspectionProject()
|
this.getINspectionProject()
|
||||||
this.isInsert = true
|
this.isInsert = true
|
||||||
this.getLeadeMan();
|
this.getLeadeMan();
|
||||||
|
this.getMeetMan();
|
||||||
listGoods().then(res => {
|
listGoods().then(res => {
|
||||||
res.data.forEach(it => {
|
res.data.forEach(it => {
|
||||||
let temp = {}
|
let temp = {}
|
||||||
@ -852,6 +864,7 @@ export default {
|
|||||||
this.isInsert = false
|
this.isInsert = false
|
||||||
this.reset();
|
this.reset();
|
||||||
this.getLeadeMan();
|
this.getLeadeMan();
|
||||||
|
this.getMeetMan();
|
||||||
this.form = row
|
this.form = row
|
||||||
let skuId = parseInt(row.skuId)
|
let skuId = parseInt(row.skuId)
|
||||||
this.form.skuId = [row.goodsId, skuId]
|
this.form.skuId = [row.goodsId, skuId]
|
||||||
@ -888,6 +901,18 @@ export default {
|
|||||||
this.leadManList = res.data
|
this.leadManList = res.data
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
/** 获取引车员信息*/
|
||||||
|
getMeetMan() {
|
||||||
|
request({
|
||||||
|
url: '/system/role/getUsersByRoleCode',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
code: "jcjchc"
|
||||||
|
}
|
||||||
|
}).then(res => {
|
||||||
|
this.meetManList = res.data
|
||||||
|
})
|
||||||
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
submitForm() {
|
submitForm() {
|
||||||
if (this.form.id) {
|
if (this.form.id) {
|
||||||
|
Loading…
Reference in New Issue
Block a user