调整
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"manifest_version": 3,
|
||||
"name": "TEMU助手",
|
||||
"description": "TEMU助手 - 自动化提高生产效率",
|
||||
"version": "3.1.12",
|
||||
"version": "3.1.13",
|
||||
"background": {
|
||||
"service_worker": "/background.js"
|
||||
},
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
</el-submenu>
|
||||
<el-menu-item index="/info">
|
||||
<i class="el-icon-info"></i>
|
||||
<span slot="title">未读消息</span>
|
||||
<span slot="title">弹窗消息</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="/learning">
|
||||
<i class="el-icon-eleme"></i>
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
<ai-list class="Learning" v-loading="isLoading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading">
|
||||
<ai-title
|
||||
slot="title"
|
||||
title="未读消息"
|
||||
|
||||
title="弹窗消息"
|
||||
tips="点击“一键已读”之后,需要回到“卖家中心”刷新界面,弹窗即可消失"
|
||||
isShowBottomBorder>
|
||||
</ai-title>
|
||||
<template slot="content">
|
||||
@@ -51,7 +51,7 @@
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
import {sendChromeAPIMessage, sendChromeNotification} from '@/api/chromeApi'
|
||||
import {sendChromeAPIMessage} from '@/api/chromeApi'
|
||||
import { Message } from 'element-ui'
|
||||
export default {
|
||||
data () {
|
||||
@@ -128,6 +128,7 @@
|
||||
break
|
||||
}
|
||||
}
|
||||
Message.success("消息标记已读完成,刷新卖家中心弹窗即可消失")
|
||||
this.isShow = false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -286,7 +286,8 @@ import { Message } from 'element-ui'
|
||||
"评分": "mark",
|
||||
"是否热销": 'hotTag',
|
||||
"生产建议信息 - 建议生产数": 'adviceProduceNum',
|
||||
"生产建议信息 - 剩余件数": 'availableProduceNum'
|
||||
"生产建议信息 - 剩余件数": 'availableProduceNum',
|
||||
"类目": 'category'
|
||||
},
|
||||
|
||||
skuSaleNumberFields: {},
|
||||
@@ -696,6 +697,7 @@ import { Message } from 'element-ui'
|
||||
let item = res.result.subOrderList[i];
|
||||
let data = {};
|
||||
data.productName = item.productName;
|
||||
data.category = item.category;
|
||||
data.productId = item.productId;
|
||||
data.productSkcId = item.productSkcId;
|
||||
data.skcExtCode = item.skcExtCode;
|
||||
@@ -733,7 +735,6 @@ import { Message } from 'element-ui'
|
||||
this.inventoryTotal += item.skuQuantityDetailList[j].inventoryNumInfo.warehouseInventoryNum
|
||||
this.inventoryMoney += new Number(((item.skuQuantityDetailList[j].supplierPrice / 100) * item.skuQuantityDetailList[j].inventoryNumInfo.warehouseInventoryNum).toFixed(2))
|
||||
this.inventoryMoney = new Number(this.inventoryMoney.toFixed(2))
|
||||
console.log((item.skuQuantityDetailList[j].inventoryNumInfo.waitOnShelfNum + item.skuQuantityDetailList[j].inventoryNumInfo.waitReceiveNum))
|
||||
this.inroadTotal += (item.skuQuantityDetailList[j].inventoryNumInfo.waitOnShelfNum + item.skuQuantityDetailList[j].inventoryNumInfo.waitReceiveNum)
|
||||
this.inroadTotalMoney += new Number(((item.skuQuantityDetailList[j].supplierPrice / 100) * (item.skuQuantityDetailList[j].inventoryNumInfo.waitOnShelfNum + item.skuQuantityDetailList[j].inventoryNumInfo.waitReceiveNum)).toFixed(2))
|
||||
this.inroadTotalMoney = new Number(this.inroadTotalMoney.toFixed(2))
|
||||
|
||||
Reference in New Issue
Block a user