|
@@ -344,6 +344,12 @@ const app = new Vue({
|
|
|
const self = this;
|
|
|
SupplierApi.ShopBaikeProductWordsValidate({ checkPoint: 2 }, function(res){
|
|
|
let flag = true
|
|
|
+ if(res.data.startsWith('|')){
|
|
|
+ res.data = res.data.substring(1)
|
|
|
+ }
|
|
|
+ if(res.data.endsWith('|')){
|
|
|
+ res.data = res.data.substring(0, res.data.length - 1)
|
|
|
+ }
|
|
|
for (const key in params) {
|
|
|
if (!whiteList.includes(key)) {
|
|
|
const target = JSON.stringify(params[key])
|