服务包管理

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({ return request({
url: `/manage/servicewaycontent/list?id=${id}`, url: `/manage/servicewaycontent/list?serviceWayId=${serviceWayId}`,
method: 'get', method: 'get',
}) })
} }

View File

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