fix: 🐛 修复管理端分类绑定规格无数据问题

master
paulGao 2022-09-27 10:38:33 +08:00
parent 68ba97e590
commit 163f9f26c2
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ export default {
getSpecList() { getSpecList() {
getSpecificationList().then((res) => { getSpecificationList().then((res) => {
if (res.length != 0) { if (res.length != 0) {
this.specifications = res; this.specifications = res.result;
} }
}); });
}, },