bug
This commit is contained in:
parent
446cab6fb5
commit
444cf4952d
@ -854,7 +854,7 @@ export default {
|
|||||||
},
|
},
|
||||||
Deleteshan(row){
|
Deleteshan(row){
|
||||||
const ids = row.id || this.ids;
|
const ids = row.id || this.ids;
|
||||||
this.$modal.confirm('是否确认删除消费有礼活动编号为"' + ids + '"的数据项?').then(function() {
|
this.$modal.confirm('是否确认删除此条新人有礼活动的信息?').then(function() {
|
||||||
return delActiveNewlyweds(ids);
|
return delActiveNewlyweds(ids);
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.getList();
|
this.getList();
|
||||||
|
@ -125,11 +125,15 @@
|
|||||||
<!-- <span style="font-size: 20px">推荐有礼</span>-->
|
<!-- <span style="font-size: 20px">推荐有礼</span>-->
|
||||||
<!-- </div>-->
|
<!-- </div>-->
|
||||||
|
|
||||||
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" class="demo-ruleForm">
|
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-position="left" class="demo-ruleForm" label-width="110px">
|
||||||
<el-form-item label="活动名称" prop="activeName">
|
|
||||||
<el-input v-model="ruleForm.activeName" placeholder="请输入活动名称" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="20">
|
||||||
|
<el-form-item label="活动名称" prop="activeName">
|
||||||
|
<el-input style="width: 90%" v-model="ruleForm.activeName" placeholder="请输入活动名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="24">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="活动开始时间" prop="activeStartTime">
|
<el-form-item label="活动开始时间" prop="activeStartTime">
|
||||||
<el-date-picker clearable
|
<el-date-picker clearable
|
||||||
@ -306,7 +310,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 新用户-->
|
<!-- 新用户-->
|
||||||
<div class="xh-box" >
|
<div class="xh-box" style="margin-bottom: 20px" >
|
||||||
<div class="box-bt"> <div style="font-size: 16px;font-weight: bold" >新用户获得</div> <div><el-button type="primary" icon="el-icon-plus" @click="gethuodonglist()" >选择活动</el-button> </div> </div>
|
<div class="box-bt"> <div style="font-size: 16px;font-weight: bold" >新用户获得</div> <div><el-button type="primary" icon="el-icon-plus" @click="gethuodonglist()" >选择活动</el-button> </div> </div>
|
||||||
<div class="box-bt" style="margin-top: 15px" v-if="ruleForm.activeNewName">
|
<div class="box-bt" style="margin-top: 15px" v-if="ruleForm.activeNewName">
|
||||||
<div style="font-size: 16px;font-weight: bold">活动名称:{{ruleForm.activeNewName}} </div>
|
<div style="font-size: 16px;font-weight: bold">活动名称:{{ruleForm.activeNewName}} </div>
|
||||||
@ -619,7 +623,12 @@
|
|||||||
import { listActiveRecommend, getActiveRecommend, delActiveRecommend, addActiveRecommend, updateActiveRecommend,listFavorable,listExchange } from "@/api/EventMarketing/activeRecommend";
|
import { listActiveRecommend, getActiveRecommend, delActiveRecommend, addActiveRecommend, updateActiveRecommend,listFavorable,listExchange } from "@/api/EventMarketing/activeRecommend";
|
||||||
import ImageUpload from '@/components/ImageUpload'
|
import ImageUpload from '@/components/ImageUpload'
|
||||||
import {getToken} from "@/utils/auth";
|
import {getToken} from "@/utils/auth";
|
||||||
import {getActiveNewlyweds, listActiveNewlyweds, updateActiveNewlyweds} from "@/api/EventMarketing/activeNewlyweds";
|
import {
|
||||||
|
delActiveNewlyweds,
|
||||||
|
getActiveNewlyweds,
|
||||||
|
listActiveNewlyweds,
|
||||||
|
updateActiveNewlyweds
|
||||||
|
} from "@/api/EventMarketing/activeNewlyweds";
|
||||||
import {looklook, looklooklook} from "@/api/EventMarketing/activeConsumption";
|
import {looklook, looklooklook} from "@/api/EventMarketing/activeConsumption";
|
||||||
export default {
|
export default {
|
||||||
name: "ActiveRecommend",
|
name: "ActiveRecommend",
|
||||||
@ -771,10 +780,10 @@ export default {
|
|||||||
{ required: true, message: '必填项不能为空', trigger: 'blur' },
|
{ required: true, message: '必填项不能为空', trigger: 'blur' },
|
||||||
],
|
],
|
||||||
activeStartTime: [
|
activeStartTime: [
|
||||||
{ type: 'date', required: true, message: '必填项不能为空', trigger: 'change' },
|
{ required: true, message: '必填项不能为空', trigger: 'change' },
|
||||||
],
|
],
|
||||||
activeEndTime: [
|
activeEndTime: [
|
||||||
{ type: 'date', required: true, message: '必填项不能为空', trigger: 'change' },
|
{ required: true, message: '必填项不能为空', trigger: 'change' },
|
||||||
],
|
],
|
||||||
activeRule:[
|
activeRule:[
|
||||||
{ required: true, message: '必填项不能为空', trigger: 'blur' },
|
{ required: true, message: '必填项不能为空', trigger: 'blur' },
|
||||||
@ -1148,18 +1157,26 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleDeletexia(row){
|
handleDeletexia(row){
|
||||||
getActiveRecommend(row.id).then(response => {
|
// getActiveRecommend(row.id).then(response => {
|
||||||
|
//
|
||||||
|
// let data = response.data
|
||||||
|
// data.isonline = 1
|
||||||
|
// data.status = 2
|
||||||
|
// updateActiveRecommend(data).then(response => {
|
||||||
|
// this.$modal.msgSuccess("下线成功");
|
||||||
|
//
|
||||||
|
// this.getactivelist()
|
||||||
|
// });
|
||||||
|
//
|
||||||
|
// });
|
||||||
|
|
||||||
let data = response.data
|
this.$modal.confirm('是否确认下线此条推荐有礼活动的信息?').then(function() {
|
||||||
data.isonline = 1
|
return updateActiveRecommend({id:row.id,isonline : 1,status : 2});
|
||||||
data.status = 2
|
}).then(() => {
|
||||||
updateActiveRecommend(data).then(response => {
|
this.$modal.msgSuccess("下线成功");
|
||||||
this.$modal.msgSuccess("下线成功");
|
|
||||||
|
|
||||||
this.getactivelist()
|
this.getactivelist()
|
||||||
});
|
}).catch(() => {});
|
||||||
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
submitForm() {
|
submitForm() {
|
||||||
|
@ -273,7 +273,8 @@ public class ActiveRecommendServiceImpl extends ServiceImpl<ActiveRecommendMappe
|
|||||||
TAccount accountInfoById = accountService.getAccountInfoById(TokenUtil.getNowAccountInfo().getId());
|
TAccount accountInfoById = accountService.getAccountInfoById(TokenUtil.getNowAccountInfo().getId());
|
||||||
if (ObjectUtil.isNotEmpty(accountInfoById)) activeRecommend.setCreateBy(accountInfoById.getRealName());
|
if (ObjectUtil.isNotEmpty(accountInfoById)) activeRecommend.setCreateBy(accountInfoById.getRealName());
|
||||||
//柴油会员等级
|
//柴油会员等级
|
||||||
activeRecommend.setInviterGiftType(arrayToString(activeRecommendDTO.getInviterGiftType()));
|
if (ObjectUtil.isNotEmpty(activeRecommendDTO.getInviterGiftType()))
|
||||||
|
activeRecommend.setInviterGiftType(arrayToString(activeRecommendDTO.getInviterGiftType()));
|
||||||
if (activeRecommendDTO.getStatus().equals("0")) activeRecommend.setIsonline("0");
|
if (activeRecommendDTO.getStatus().equals("0")) activeRecommend.setIsonline("0");
|
||||||
if (activeRecommendDTO.getStatus().equals("2")) activeRecommend.setIsonline("1");
|
if (activeRecommendDTO.getStatus().equals("2")) activeRecommend.setIsonline("1");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user