Commit 0cd03467 authored by chenwei's avatar chenwei

Merge branch 'pre-release' of...

Merge branch 'pre-release' of http://110.41.143.128:8081/lanbaoming/jiedao-app-operator-master into pre-release
parents 778fa5e3 6990d243
......@@ -364,7 +364,7 @@ export default {
getProductTypeNames() {
return (ids) => {
if (ids) {
const idsArr = ids.split(',')
const idsArr = ids.toString().split(',')
const strArr = []
this.productTypeList.forEach(item => {
if (idsArr.includes(item.id.toString())) {
......
......@@ -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