This commit is contained in:
liushiwei
2023-10-09 15:32:52 +08:00
parent b3804e9b13
commit 33e11211cd
3 changed files with 10 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "TEMU助手",
"description": "TEMU助手 - 自动化提高生产效率",
"version": "2.3.2",
"version": "3.0.0",
"background": {
"service_worker": "/background.js"
},

View File

@@ -58,8 +58,13 @@
<span slot="title">商品管理</span>
</template>
<el-menu-item index="/copyProduct">商品复制</el-menu-item>
</el-submenu>
<el-submenu index="/niubiCopy">
<template slot="title">
<i class="el-icon-magic-stick"></i>
<span slot="title">选品采集</span>
</template>
<el-menu-item index="/niubiCopy">智能复制</el-menu-item>
<!--<el-menu-item index="/reducePrice">商品调价</el-menu-item>-->
</el-submenu>
<el-menu-item index="/saleData">

View File

@@ -282,8 +282,8 @@ const ImageEditor = require('tui-image-editor')
},
colConfigs: [
{ prop: 'url', label: '商品地址', align: 'left' },
{ prop: 'type', label: '来源', align: 'left',formart: v => this.$dict.getLabel('copy_from', v), },
{ prop: 'mallName', label: '店铺名称', align: 'left'},
{ prop: 'type', label: '来源', width: '100px', align: 'left',format: v => this.$dict.getLabel('copy_from', v), },
{ prop: 'mallName', label: '店铺名称', width: '200px', align: 'left'},
{ prop: 'createTime', label: '复制时间', width: '180px', fixed: 'right'}
],
tableData: [],
@@ -304,6 +304,7 @@ const ImageEditor = require('tui-image-editor')
created () {
this.$dict.load('copy_from');
this.getList()
},
methods: {