This commit is contained in:
刘仕伟
2024-01-10 01:27:15 +08:00
parent b304fb53a0
commit fc6cec2eca
12 changed files with 393 additions and 159 deletions

View File

@@ -3,7 +3,7 @@
<el-alert
title="采集一个商品添加进草稿箱将消耗50金币"
type="success"
:closable="false">
:closable="false" style="margin-bottom: 10px;">
</el-alert>
<el-form class="ai-form" :model="form" label-width="150px" ref="form">
<el-form-item v-if="!isMultiCopy" label="商品地址:" style="width: 100%;" prop="url" :rules="[{ required: true, message: '请输入商品地址', trigger: 'blur' }]">
@@ -35,9 +35,13 @@
</template>
<script>
import {sendChromeAPIMessage, sendTemuAPIMessage, sendChromeWebReqMessage} from '@/api/chromeApi'
import {sendChromeAPIMessage, sendChromeWebReqMessage} from '@/api/chromeApi'
import AiLazyCascader from "@/components/AiLazyCascader.vue"
import { getImageMd5 } from "@/utils/image.js"
import { getImageMd5, uploadImage } from "@/utils/image.js"
import { extractImagesAndText } from "@/utils/html.js"
import { transformAliExpress } from "@/utils/product.js"
import { formatDate } from "@/utils/date.js"
import { createFolderApi } from "@/utils/folder.js"
import { Message } from 'element-ui'
import { MessageBox } from 'element-ui';
@@ -129,6 +133,7 @@ export default {
})
},
async addToDraft() {
// let test = await createFolderApi(formatDate(new Date()).split('-'),this.form.targetMallId)
this.isCopying = true
let res = await sendChromeWebReqMessage({
type: 'aliexpress',
@@ -145,35 +150,41 @@ export default {
str = str.substring(str.indexOf('data'))
str = str.substring(5)
console.log(str)
let res2 = await getImageMd5('https://ae01.alicdn.com/kf/S654a8881c4e84117b3ea74c563ff61b4Q.jpg')
//console.log(res2)
let obj = JSON.parse(str)
/*let res1 = await sendChromeWebReqMessage({
let folderId = await createFolderApi(formatDate(new Date()).split('-'),this.form.targetMallId)
let carouselImageUrls = [], detailImageUrls = []
let imageConponent = obj.imageComponent
for (let i = 0; i < imageConponent.imagePathList.length; i++) {
let img = await uploadImage(folderId, imageConponent.imagePathList[i], this.form.targetMallId)
carouselImageUrls.push(img)
}
let res1 = await sendChromeWebReqMessage({
type: 'aliexpress',
url: obj.productDescComponent.descriptionUrl,
})
res1 = res1.substring(0, res1.indexOf("<script>"))
let str1 = res1.replace(/<img[^>]+src="([^">]+)"[^>]+>/g, '$1\n').replace(/<.*?>/g, '[||]')
let arr = str1.split('[||]')
for (let i = 0; i < arr.length; i++) {
console.log(arr[i])
}*/
res1 = extractImagesAndText(res1)
res1 = JSON.parse(res1)
console.log(res1)
for (let i = 0; i < res1.images.length; i++) {
let img = await uploadImage(folderId, res1.images[i], this.form.targetMallId)
detailImageUrls.push(img)
}
this.createDraft(transformAliExpress({
title: obj.productInfoComponent.subject,
carouselImageUrls,
detailImageList: detailImageUrls,
text: res1.text
}))
},
async createDraft(data) {
let catId = null;
if (this.form.isSameCategory) {
catId = this.catId;
} else {
catId = this.form.targetCatId[this.form.targetCatId.length - 1]
}
let catId = this.form.targetCatId[this.form.targetCatId.length - 1]
let res = await sendChromeAPIMessage({
url: 'bg-visage-mms/product/draft/add',
needMallId: true,
@@ -186,60 +197,8 @@ export default {
let draftId = res.result.productDraftId
let content = data
let i = 0
if (this.form.isSameCategory) {
let res2 = await this.$http.post('/api/innerCategory/fullById',null , {
params: {
id: catId
}
})
for (; i < res2.data.length; i++) {
content['cat' + (i+1) + 'Id'] = res2.data[i]
}
let res3 = await sendChromeAPIMessage({
url: 'bg-anniston-mms/category/template/query',
needMallId: true,
mallId: this.form.targetMallId,
data: {
catId: catId,
productCreateTime: null,
langList: [
"en"
]
}})
content.productPropertyReqs = []
for (let j = 0; j < this.goodsProperty.length; j++) {
let temp = {}
for (let k = 0; k < res3.result.properties.length; k++) {
if (this.goodsProperty[j].key == res3.result.properties[k].lang2Name.en) {
temp.templatePid = res3.result.properties[k].templatePid
temp.pid = res3.result.properties[k].pid
temp.refPid = res3.result.properties[k].refPid
temp.propName = res3.result.properties[k].name
for (let x = 0; x < this.goodsProperty[j].values.length; x++) {
if (null == res3.result.properties[k].values) break
for (let l = 0; l < res3.result.properties[k].values.length; l++) {
if (res3.result.properties[k].values[l].lang2Value.en == this.goodsProperty[j].values[x]) {
temp.vid = res3.result.properties[k].values[l].vid
temp.propValue = res3.result.properties[k].values[l].value
temp.valueUnit = ''
temp.valueExtendInfo = ''
temp.controlType = res3.result.properties[k].values[l].controlType
content.productPropertyReqs.push({...temp})
break
}
}
}
}
}
}
} else {
for (; i < this.form.targetCatId.length; i++) {
content['cat' + (i+1) + 'Id'] = this.form.targetCatId[i]
}
for (; i < this.form.targetCatId.length; i++) {
content['cat' + (i+1) + 'Id'] = this.form.targetCatId[i]
}
for (; i < 10; i++) {
content['cat' + (i+1) + 'Id'] = ''
@@ -259,26 +218,13 @@ export default {
url: 'bg-visage-mms/product/draft/save',
needMallId: true,
mallId: this.form.targetMallId,
data: {
...content
}}).then((res) => {
data: content
}).then((res) => {
if (res.errorCode == 1000000) {
this.successList.push(this.currentUrl)
this.saveInfo()
if (this.isMultiCopy) {
this.currentIndex ++
if (this.currentIndex == this.params.urlList.length) {
this.isCopying = false
this.$emit('onSuccess')
MessageBox.alert(`成功添加${this.successList.length}个商品进入草稿箱`)
} else {
this.currentUrl = this.params.urlList[this.currentIndex]
this.execAddToDraft()
}
} else {
this.isCopying = false
Message.success("成功添加到草稿箱")
}
this.isCopying = false
Message.success("成功添加到草稿箱")
} else {
setTimeout(() => {
@@ -336,33 +282,6 @@ export default {
}
}
})
},
parseURL(url) {
let a = document.createElement('a');
a.href = url;
return {
source: url,
protocol: a.protocol.replace(':',''),
host: a.hostname,
port: a.port,
query: a.search,
params: (function(){
var ret = {},
seg = a.search.replace(/^\?/,'').split('&'),
len = seg.length, i = 0, s;
for (;i<len;i++) {
if (!seg[i]) { continue; }
s = seg[i].split('=');
ret[s[0]] = s[1];
}
return ret;
})(),
file: (a.pathname.match(/\/([^\/?#]+)$/i) || [,''])[1],
hash: a.hash.replace('#',''),
path: a.pathname.replace(/^([^\/])/,'/$1'),
relative: (a.href.match(/tps?:\/\/[^\/]+(.+)/) || [,''])[1],
segments: a.pathname.replace(/^\//,'').split('/')
};
}
}
}

View File

@@ -3,7 +3,7 @@
<el-alert
title="采集一个商品添加进草稿箱将消耗20金币"
type="success"
:closable="false">
:closable="false" style="margin-bottom: 10px;">
</el-alert>
<el-form class="ai-form" :model="form" label-width="150px" ref="form">
<el-form-item v-if="!isMultiCopy" label="商品地址:" style="width: 100%;" prop="url" :rules="[{ required: true, message: '请输入商品地址', trigger: 'blur' }]">