|
@@ -57,7 +57,7 @@
|
|
</el-tabs>
|
|
</el-tabs>
|
|
<div class="mt5 mb20">
|
|
<div class="mt5 mb20">
|
|
<el-button size="small" @click="onEdit(0)" type="primary" v-hasPermi="['merchant:seckill:product:add']"
|
|
<el-button size="small" @click="onEdit(0)" type="primary" v-hasPermi="['merchant:seckill:product:add']"
|
|
- >添加秒杀商品</el-button
|
|
|
|
|
|
+ >添加活动商品</el-button
|
|
>
|
|
>
|
|
<el-button
|
|
<el-button
|
|
v-show="tableFrom.auditStatus === '3'"
|
|
v-show="tableFrom.auditStatus === '3'"
|
|
@@ -371,7 +371,7 @@ export default {
|
|
},
|
|
},
|
|
//撤回审核
|
|
//撤回审核
|
|
handleWithdraw(row) {
|
|
handleWithdraw(row) {
|
|
- this.$modalSure('撤回审核秒杀商品吗?').then(() => {
|
|
|
|
|
|
+ this.$modalSure('撤回审核活动商品吗?').then(() => {
|
|
seckillProWithdrawApi(row.id).then((res) => {
|
|
seckillProWithdrawApi(row.id).then((res) => {
|
|
this.getList();
|
|
this.getList();
|
|
});
|
|
});
|
|
@@ -404,7 +404,7 @@ export default {
|
|
},
|
|
},
|
|
batchDel() {
|
|
batchDel() {
|
|
let ids = this.multipleSelection.map((item) => item.id).toString();
|
|
let ids = this.multipleSelection.map((item) => item.id).toString();
|
|
- this.$modalSure('批量删除秒杀商品吗?').then(() => {
|
|
|
|
|
|
+ this.$modalSure('批量删除活动商品吗?').then(() => {
|
|
seckillProDelApi({ ids: ids }).then(() => {
|
|
seckillProDelApi({ ids: ids }).then(() => {
|
|
this.$message.success('删除成功');
|
|
this.$message.success('删除成功');
|
|
this.getList();
|
|
this.getList();
|
|
@@ -413,7 +413,7 @@ export default {
|
|
},
|
|
},
|
|
// 删除
|
|
// 删除
|
|
handleDelete(row) {
|
|
handleDelete(row) {
|
|
- this.$modalSure('删除该秒杀商品吗?').then(() => {
|
|
|
|
|
|
+ this.$modalSure('删除该活动商品吗?').then(() => {
|
|
seckillProDelApi({ ids: row.id }).then(() => {
|
|
seckillProDelApi({ ids: row.id }).then(() => {
|
|
this.$message.success('删除成功');
|
|
this.$message.success('删除成功');
|
|
handleDeleteTable(this.tableData.data.length, this.tableFrom);
|
|
handleDeleteTable(this.tableData.data.length, this.tableFrom);
|
|
@@ -423,7 +423,7 @@ export default {
|
|
},
|
|
},
|
|
batchDown() {
|
|
batchDown() {
|
|
let ids = this.multipleSelection.map((item) => item.id).toString();
|
|
let ids = this.multipleSelection.map((item) => item.id).toString();
|
|
- this.$modalSure('批量下架秒杀商品吗?').then(() => {
|
|
|
|
|
|
+ this.$modalSure('批量下架活动商品吗?').then(() => {
|
|
seckillProDownApi({ ids: ids }).then(() => {
|
|
seckillProDownApi({ ids: ids }).then(() => {
|
|
this.$message.success('下架成功');
|
|
this.$message.success('下架成功');
|
|
this.getList();
|
|
this.getList();
|
|
@@ -431,7 +431,7 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
handleDown(row, title) {
|
|
handleDown(row, title) {
|
|
- this.$modalSure(`${title}该秒杀商品吗?`).then(() => {
|
|
|
|
|
|
+ this.$modalSure(`${title}该活动商品吗?`).then(() => {
|
|
row.isShow
|
|
row.isShow
|
|
? seckillProDownApi({ ids: row.id }).then(() => {
|
|
? seckillProDownApi({ ids: row.id }).then(() => {
|
|
this.$message.success(`${title}成功`);
|
|
this.$message.success(`${title}成功`);
|