|
@@ -640,7 +640,7 @@ export default {
|
|
|
for(const key in priceList) {
|
|
|
if (Object.hasOwn(priceList, key)) {
|
|
|
for (const k in priceList[key]) {
|
|
|
- if (Object.hasOwn(priceList[key], k)) {
|
|
|
+ if (Object.hasOwn(priceList[key], k) && Array.isArray(priceList[key][k])) {
|
|
|
priceList[key][k] = priceList[key][k].map(item => {
|
|
|
const temp = {...item}
|
|
|
for(let i = 1; i<=8; i++) {
|
|
@@ -683,7 +683,7 @@ export default {
|
|
|
// 格式化数据,对象改成数组
|
|
|
for (const keys in priceList) {
|
|
|
const vals = {}
|
|
|
- const { decoration, additionlist, ...remaining } = priceList[keys]
|
|
|
+ const { decoration, additionlist, printDescription, ...remaining } = priceList[keys]
|
|
|
vals.basePrice = []
|
|
|
vals.selectAdditionRow = []
|
|
|
vals.curPrint = 0
|
|
@@ -708,6 +708,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
for (const k in remaining) {
|
|
|
+ console.log(k, 'k')
|
|
|
const o = {}
|
|
|
o.name = k
|
|
|
o.data = remaining[k]
|