Commit b69f8c42 authored by 332784038@qq.com's avatar 332784038@qq.com

客户相关列表bug修复

parent 8d76f7bd
......@@ -2134,7 +2134,7 @@ export default {
},
getProductTypeNames(ids) {
if (ids) {
const idsArr = ids.split(',')
const idsArr = ids.toString().split(',')
const strArr = []
this.productTypeList.forEach(item => {
if (idsArr.includes(item.id.toString())) {
......
......@@ -1292,7 +1292,7 @@ export default {
},
getProductTypeNames(ids) {
if (ids) {
const idsArr = ids.split(',')
const idsArr = ids.toString().split(',')
const strArr = []
this.productTypeList.forEach(item => {
if (idsArr.includes(item.id.toString())) {
......
......@@ -1003,7 +1003,7 @@ export default {
},
getProductTypeNames(ids) {
if (ids) {
const idsArr = ids.split(',')
const idsArr = ids.toString().split(',')
const strArr = []
this.productTypeList.forEach(item => {
if (idsArr.includes(item.id.toString())) {
......
......@@ -1274,7 +1274,7 @@ export default {
},
getProductTypeNames(ids) {
if (ids) {
const idsArr = ids.split(',')
const idsArr = ids.toString().split(',')
const strArr = []
this.productTypeList.forEach(item => {
if (idsArr.includes(item.id.toString())) {
......
......@@ -1244,7 +1244,7 @@ export default {
},
getProductTypeNames(ids) {
if (ids) {
const idsArr = ids.split(',')
const idsArr = ids.toString().split(',')
const strArr = []
this.productTypeList.forEach(item => {
if (idsArr.includes(item.id.toString())) {
......
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