服务包管理
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({
|
||||
url: `/manage/servicewaycontent/list?id=${id}`,
|
||||
url: `/manage/servicewaycontent/list?serviceWayId=${serviceWayId}`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
||||
@ -1011,9 +1011,9 @@ export default {
|
||||
},
|
||||
// 服务方式点击事件
|
||||
changeway(e) {
|
||||
var id = null
|
||||
id = this.optionsway.find(f => f.serviceWayName == e).id
|
||||
serviccontent(id).then(response => {
|
||||
var serviceWayId = null
|
||||
serviceWayId = this.optionsway.find(f => f.serviceWayName == e).id
|
||||
serviccontent(serviceWayId).then(response => {
|
||||
this.optionscontent = response.rows;
|
||||
});
|
||||
this.form.voList.serviceContent='';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user