🎨 Update av

This commit is contained in:
Daniel 2023-07-31 11:20:58 +08:00
parent d0ee66c0fa
commit 89150bb868
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 28 additions and 25 deletions

View file

@ -35,7 +35,8 @@ func renderAttributeView(c *gin.Context) {
}
id := arg["id"].(string)
view, attrView, err := model.RenderAttributeView(id)
nodeID := arg["nodeID"].(string)
view, attrView, err := model.RenderAttributeView(id, nodeID)
if nil != err {
ret.Code = -1
ret.Msg = err.Error()