服务包管理
This commit is contained in:
parent
b9d217ecd8
commit
06eb02a952
@ -18,9 +18,9 @@ export function serviceWayList(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 查询服务内容
|
// 查询服务内容
|
||||||
export function serviccontent(id) {
|
export function serviccontent(serviceWayId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/manage/servicewaycontent/list?id=${id}`,
|
url: `/manage/servicewaycontent/list?serviceWayId=${serviceWayId}`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1011,9 +1011,9 @@ export default {
|
|||||||
},
|
},
|
||||||
// 服务方式点击事件
|
// 服务方式点击事件
|
||||||
changeway(e) {
|
changeway(e) {
|
||||||
var id = null
|
var serviceWayId = null
|
||||||
id = this.optionsway.find(f => f.serviceWayName == e).id
|
serviceWayId = this.optionsway.find(f => f.serviceWayName == e).id
|
||||||
serviccontent(id).then(response => {
|
serviccontent(serviceWayId).then(response => {
|
||||||
this.optionscontent = response.rows;
|
this.optionscontent = response.rows;
|
||||||
});
|
});
|
||||||
this.form.voList.serviceContent='';
|
this.form.voList.serviceContent='';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user