服务包管理

This commit is contained in:
shidongli 2024-03-06 13:13:21 +08:00
parent b9d217ecd8
commit 06eb02a952
2 changed files with 5 additions and 5 deletions

View File

@ -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',
})
}

View File

@ -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='';