Commit 8dfc9300 by caoyanzhi

update: 订单列表

parent 6df72b93
......@@ -278,8 +278,12 @@ export default {
},
getSKU(data) {
if (typeof data != 'string') return '';
const sku = JSON.parse(data);
return sku.map(el => el.value).join(';')
let result = data;
try {
const sku = JSON.parse(data);
result = sku.map(el => el.value).join(';');
} catch (e) {}
return result;
},
getTableData() {
const { memberId, pageSize, currentPage, orderType, channelType, dateRange, orderNumber } = this.params;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment