first commit
This commit is contained in:
323
src/views/campus/campus.vue
Normal file
323
src/views/campus/campus.vue
Normal file
@@ -0,0 +1,323 @@
|
||||
<template>
|
||||
<div>
|
||||
<div style="display: inline-block;float: right;">
|
||||
<el-button size="mini" type="primary" icon="document" @click="refresh" >刷新</el-button>
|
||||
<el-button style='margin:0 0 20px 10px;' :disabled="!isAuth('campus:add')" size="mini" type="primary" icon="document" @click="classifyStair()" >添加社区</el-button>
|
||||
<el-button style='margin:0 0 20px 10px;' size="mini" type="danger" icon="document" @click="deleteStairs()" :disabled="checkBoxData.length <= 0 || !isAuth('campus:delete')">批量删除</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
@selection-change="changeFun"
|
||||
v-loading="tableDataLoading"
|
||||
:data="tableData.list">
|
||||
<el-table-column type="selection" fixed >
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="campusId"
|
||||
label="编号">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="campusName"
|
||||
label="社区名称">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="campusDetails"
|
||||
label="社区地址">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="操作"
|
||||
width="150">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="primary"
|
||||
:disabled="!isAuth('campus:update')"
|
||||
@click="compile(scope.$index, scope.row)">编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="danger"
|
||||
:disabled="!isAuth('campus:delete')"
|
||||
@click="deleteStair(scope.row)">删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div style="text-align: center;margin-top: 10px;">
|
||||
<el-pagination
|
||||
@size-change="handleSizeChange"
|
||||
@current-change="handleCurrentChange"
|
||||
:page-sizes="[10, 20, 30, 40]"
|
||||
:page-size="limit"
|
||||
:current-page="page"
|
||||
layout="total,sizes, prev, pager, next,jumper"
|
||||
:total="tableData.totalCount">
|
||||
</el-pagination>
|
||||
</div>
|
||||
<!-- 添加社区 -->
|
||||
<el-dialog title="添加社区" :visible.sync="dialogFormVisible" center>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">社区名称:</span>
|
||||
<el-input style="width:50%;" v-model="campusName" type="text" placeholder="请输入社区名称"></el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">社区地址:</span>
|
||||
<el-input style="width:50%;" v-model="campusDetails" type="text" placeholder="请输入社区地址"></el-input>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="dialogFormVisible = false">取 消</el-button>
|
||||
<el-button type="primary" @click="StairNoticeTo()">确 定</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 修改一级分类 -->
|
||||
<el-dialog title="修改社区" :visible.sync="dialogFormVisible1" center>
|
||||
<el-form :model="form">
|
||||
<el-form-item label="社区名称:" :label-width="formLabelWidth" >
|
||||
<el-input v-model="form.campusName" style="width:65%;"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="社区地址:" :label-width="formLabelWidth" >
|
||||
<el-input v-model="form.campusDetails" style="width:65%;"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="dialogFormVisible1 = false">取 消</el-button>
|
||||
<el-button type="primary" @click="CompileNoticeTo()">确 定</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
limit:10,
|
||||
page:1,
|
||||
checkBoxData: [],//多选框选择的值
|
||||
formLabelWidth:'200px',
|
||||
tableDataLoading:false,
|
||||
dialogFormVisible:false,
|
||||
dialogFormVisible1:false,
|
||||
tableData:[],
|
||||
campusName:'',
|
||||
campusDetails:'',
|
||||
form:{
|
||||
campusId:'',
|
||||
campusName:'',
|
||||
campusDetails:''
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 多选
|
||||
changeFun(val) {
|
||||
this.checkBoxData = val;
|
||||
},
|
||||
handleSizeChange(val) {
|
||||
this.limit = val;
|
||||
this.dataSelect()
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.page = val;
|
||||
this.dataSelect()
|
||||
},
|
||||
// 刷新
|
||||
refresh(){
|
||||
this.dataSelect()
|
||||
},
|
||||
// 添加社区弹框
|
||||
classifyStair(){
|
||||
this.dialogFormVisible = true
|
||||
},
|
||||
// 添加社区
|
||||
StairNoticeTo(){
|
||||
if (this.campusName == '') {
|
||||
this.$notify({
|
||||
title: '提示',
|
||||
duration: 1800,
|
||||
message: '请输入社区名称',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
if (this.campusDetails == '') {
|
||||
this.$notify({
|
||||
title: '提示',
|
||||
duration: 1800,
|
||||
message: '请输入社区地址',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('helpCampus/insertCampus'),
|
||||
method: 'post',
|
||||
data: this.$http.adornData({
|
||||
'campusName':this.campusName,
|
||||
'campusDetails': this.campusDetails,
|
||||
})
|
||||
}).then(({data}) => {
|
||||
this.dialogFormVisible = false
|
||||
this.$message({
|
||||
message: '添加成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.campusName = ''
|
||||
this.campusDetails = ''
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
})
|
||||
},
|
||||
// 修改社区
|
||||
compile(index,rows){
|
||||
this.dialogFormVisible1=true;
|
||||
this.form.campusId = rows.campusId;
|
||||
this.form.campusName = rows.campusName;
|
||||
this.form.campusDetails = rows.campusDetails;
|
||||
},
|
||||
// 修改社区
|
||||
CompileNoticeTo(){
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('helpCampus/updateCampus '),
|
||||
method: 'post',
|
||||
data: this.$http.adornData({
|
||||
'campusId':this.form.campusId,
|
||||
'campusName': this.form.campusName,
|
||||
'campusDetails' :this.form.campusDetails
|
||||
})
|
||||
}).then(({data}) => {
|
||||
if(data.code == 0){
|
||||
this.$message({
|
||||
message: '操作成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dialogFormVisible1 = false
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}else{
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'error',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dialogFormVisible1 = false
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
// 批量删除
|
||||
deleteStairs(id){
|
||||
this.$confirm(`确定批量删除信息?`, '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
var ids= id ? [id] : this.checkBoxData.map(item => {
|
||||
return item.campusId
|
||||
})
|
||||
this.$http({
|
||||
url: this.$http.adornUrl(`helpCampus/deleteCampus?ids=${ids}`),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
})
|
||||
}).then(({data}) => {
|
||||
if(data.code == 0){
|
||||
this.$message({
|
||||
message: '删除成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.content= ''
|
||||
this.status = 0
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}else{
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'error',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.content= ''
|
||||
this.status = 0
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
}).catch(() => {})
|
||||
},
|
||||
//删除
|
||||
deleteStair(row){
|
||||
this.$confirm(`确定删除此条信息?`, '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$http({
|
||||
url: this.$http.adornUrl(`helpCampus/deleteCampus?ids=${row.campusId}`),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
})
|
||||
}).then(({data}) => {
|
||||
if(data.code == 0){
|
||||
this.$message({
|
||||
message: '删除成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}else{
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'error',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
}).catch(() => {})
|
||||
},
|
||||
// 重置
|
||||
cleans(){
|
||||
this.phone = ''
|
||||
this.status = 0
|
||||
this.dataSelect()
|
||||
},
|
||||
// 获取派单数据列表
|
||||
dataSelect () {
|
||||
this.tableDataLoading = true
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('helpCampus/selectCampusPage'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'page':this.page,
|
||||
'limit':this.limit,
|
||||
'content':this.content
|
||||
})
|
||||
}).then(({data}) => {
|
||||
this.tableDataLoading = false
|
||||
let returnData = data.data;
|
||||
this.tableData = returnData
|
||||
})
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.dataSelect()
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
992
src/views/campus/coupon.vue
Normal file
992
src/views/campus/coupon.vue
Normal file
@@ -0,0 +1,992 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-tabs v-model="activeName" @tab-click="handleClick">
|
||||
<el-tab-pane label="发卡分类" name="first">
|
||||
<div style="display: inline-block;float: right;">
|
||||
<el-button size="mini" type="primary" icon="document" @click="refresh">刷新</el-button>
|
||||
<el-button style='margin:0 0 20px 10px;' :disabled="!isAuth('coupon:add')" size="mini"
|
||||
type="primary" icon="document" @click="amend()">添加</el-button>
|
||||
</div>
|
||||
<el-table v-loading="tableDataLoading" :data="tableData.records">
|
||||
<el-table-column prop="typeId" label="编号" width="80">
|
||||
</el-table-column>
|
||||
<el-table-column prop="remarks" label="名称">
|
||||
</el-table-column>
|
||||
<el-table-column prop="giveNum" label="赠送会员天数">
|
||||
</el-table-column>
|
||||
<el-table-column prop="validDay" label="有效天数">
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="状态">
|
||||
<template slot-scope="scope">
|
||||
<span style="color: #3E8EF7;" v-if="scope.row.status == 1">开启</span>
|
||||
<span v-if="scope.row.status == 2">关闭</span>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
<el-table-column prop="createTime" label="创建时间">
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="200">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" type="primary" :disabled="!isAuth('coupon:update')"
|
||||
@click="amend(scope.row)" style="margin: 3px;">编辑
|
||||
</el-button>
|
||||
<el-button size="mini" type="warning"
|
||||
@click="listBtnKm(scope.row)" style="margin: 3px;">卡密列表
|
||||
</el-button>
|
||||
<el-button size="mini" type="danger" :disabled="!isAuth('coupon:delete')"
|
||||
@click="deleteStair(scope.row)" style="margin: 3px;">删除
|
||||
</el-button>
|
||||
<el-button :disabled="!isAuth('coupon:update')" size="mini"
|
||||
type="primary" icon="document" @click="shengCoupon(scope.row)" style="margin: 3px;">生成卡密</el-button>
|
||||
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div style="text-align: center;margin-top: 10px;">
|
||||
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
|
||||
:page-sizes="[10, 20, 30, 40]" :page-size="limit" :current-page="page"
|
||||
layout="total,sizes, prev, pager, next" :total="tableData.total">
|
||||
</el-pagination>
|
||||
</div>
|
||||
</el-tab-pane>
|
||||
|
||||
<el-tab-pane label="发卡列表" name="putong">
|
||||
<div style="display: inline-block;margin: 3px;">
|
||||
<div style="position: relative;display: inline-block;margin:5px;">
|
||||
<span>卡密:</span>
|
||||
<el-input style="width: 200px;" @keydown.enter.native="refreshList" placeholder="请输入卡密"
|
||||
v-model="sdkContent">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="position: relative;display: inline-block;margin:5px;">
|
||||
<span>卡密名称:</span>
|
||||
<el-input style="width: 200px;" @keydown.enter.native="refreshList" placeholder="请输入卡密名称"
|
||||
v-model="couponIssueNameT">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="position: relative;display: inline-block;margin:5px;">
|
||||
<span>渠道商名称:</span>
|
||||
<el-input style="width: 200px;" @keydown.enter.native="refreshList" placeholder="请输入渠道商名称"
|
||||
v-model="sysUserNameT">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="position: relative;display: inline-block;margin:5px;">
|
||||
<span>领取用户:</span>
|
||||
<el-input style="width: 200px;" @keydown.enter.native="refreshList" placeholder="请输入领取用户"
|
||||
v-model="userName">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin:5px;display: inline-block;">
|
||||
<span>状态:</span>
|
||||
<el-select v-model="status" style="width:150px;margin-left: 10px;" @change="refreshList(status)">
|
||||
<el-option v-for="item in statesnum" :key="item.value" :label="item.label" :value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<span>开始时间:</span>
|
||||
<el-date-picker style="width: 160px;margin-left: 10px;" v-model="startTime" align="right" type="date"
|
||||
format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择开始时间">
|
||||
</el-date-picker>
|
||||
<span>截止时间:</span>
|
||||
<el-date-picker style="width: 160px;margin-left: 10px;" v-model="endTime" align="right" type="date"
|
||||
format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择截止时间">
|
||||
</el-date-picker>
|
||||
<div style="display: inline-block;">
|
||||
<el-button style='margin-left:15px;' size="mini" type="primary" icon="document" @click="refreshList">查询
|
||||
</el-button>
|
||||
<el-button style='margin-left:15px;' size="mini" type="primary" icon="document" @click="cleans">重置
|
||||
</el-button>
|
||||
<!-- <el-button style='margin-left:15px;' size="mini" type="primary" icon="document"
|
||||
:disabled="!isAuth('couponissue:add')" @click="amend()">添加
|
||||
</el-button> -->
|
||||
<el-button style='margin:0 0 20px 20px;' size="mini" type="primary" icon="document"
|
||||
@click="transferClcik()" :disabled="checkBoxData.length <= 0 || !isAuth('financeList:transfer')">
|
||||
批量删除
|
||||
</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<el-table v-loading="tableDataLoadingKm" :data="tableDataKm.records" @selection-change="changeFunP" >
|
||||
<el-table-column type="selection">
|
||||
</el-table-column>
|
||||
<el-table-column prop="sdkId" fixed="left" label="编号" width="80">
|
||||
</el-table-column>
|
||||
<el-table-column prop="sdkRemarks" label="卡密名称">
|
||||
</el-table-column>
|
||||
<el-table-column prop="sdkContent" label="卡密">
|
||||
</el-table-column>
|
||||
<el-table-column prop="sysUserName" label="渠道商名称">
|
||||
|
||||
</el-table-column>
|
||||
<el-table-column prop="giveNum" label="赠送会员天数">
|
||||
</el-table-column>
|
||||
<el-table-column prop="overdueTime" label="到期时间">
|
||||
</el-table-column>
|
||||
<el-table-column label="领取用户">
|
||||
<template slot-scope="scope">
|
||||
<span style="color: #3E8EF7;cursor: pointer;" @click="updates(scope.row)" v-if="scope.row.nickName">{{scope.row.nickName}}</span>
|
||||
<span v-else>未绑定</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="状态">
|
||||
<template slot-scope="scope">
|
||||
<span style="color: red;" v-if="scope.row.status == 0">待使用</span>
|
||||
<span style="color: #3E8EF7;" v-if="scope.row.status == 1">已使用</span>
|
||||
<span style="color: #999;" v-if="scope.row.status == 2">已过期</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="createTime" label="创建时间" width="150">
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="80">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" type="danger" :disabled="!isAuth('coupon:delete')"
|
||||
@click="deleteStairKm(scope.row)" style="margin: 3px;">删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div style="text-align: center;margin-top: 10px;">
|
||||
<el-pagination @size-change="handleSizeChangeList" @current-change="handleCurrentChangeList"
|
||||
:page-sizes="[10, 20, 30, 50, 100]" :page-size="limit" :current-page="page"
|
||||
layout="total,sizes, prev, pager, next" :total="tableDataKm.total">
|
||||
</el-pagination>
|
||||
</div>
|
||||
</el-tab-pane>
|
||||
<!-- 修改 -->
|
||||
<el-dialog :title="titles" :visible.sync="dialogFormVisible" center>
|
||||
<el-form :model="form">
|
||||
<el-form-item label="名称:" :label-width="formLabelWidth">
|
||||
<el-input v-model="form.remarks" style="width:65%;" placeholder="请输入名称"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="赠送会员天数:" :label-width="formLabelWidth">
|
||||
<el-input v-model="form.giveNum" style="width:65%;" placeholder="请输入赠送会员天数"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="有效天数:" :label-width="formLabelWidth">
|
||||
<el-input v-model="form.validDay" style="width:65%;" placeholder="请输入有效天数"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="dialogFormVisible = false">取 消</el-button>
|
||||
<el-button type="primary" @click="amendNoticeTo()">确 定</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 生成卡密 -->
|
||||
<el-dialog title="生成卡密" :visible.sync="dialogFormVisible3" center width="70%">
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">渠道商:</span>
|
||||
<el-input style="width:50%;" v-model="sysUserName" @focus="qudaoBtn" placeholder="请选择渠道商">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">生成数量:</span>
|
||||
<el-input style="width:50%;" v-model="num" type="number" :min="0" placeholder="请输入生成数量">
|
||||
</el-input>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="dialogFormVisible3 = false">取 消</el-button>
|
||||
<el-button type="primary" @click="couponNoticeTo()">确 定</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 卡密列表 -->
|
||||
<el-dialog title="卡密列表" :visible.sync="dialogFormVisibleKm" center width="70%">
|
||||
<div style="display: inline-block;margin: 3px;">
|
||||
<div style="position: relative;display: inline-block;">
|
||||
<span>领取用户:</span>
|
||||
<el-input style="width: 200px;" @keydown.enter.native="refreshList" placeholder="请输入领取用户"
|
||||
v-model="userName">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="position: relative;display: inline-block;margin:5px;">
|
||||
<span>渠道商名称:</span>
|
||||
<el-input style="width: 200px;" @keydown.enter.native="refreshList" placeholder="请输入渠道商名称"
|
||||
v-model="sysUserNameT">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin:2% 0;display: inline-block;">
|
||||
<span>状态:</span>
|
||||
<el-select v-model="status" style="width:150px;margin-left: 10px;" @change="refreshList(status)">
|
||||
<el-option v-for="item in statesnum" :key="item.value" :label="item.label" :value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<span>开始时间:</span>
|
||||
<el-date-picker style="width: 160px;margin-left: 10px;" v-model="startTime" align="right" type="date"
|
||||
format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择开始时间">
|
||||
</el-date-picker>
|
||||
<span>截止时间:</span>
|
||||
<el-date-picker style="width: 160px;margin-left: 10px;" v-model="endTime" align="right" type="date"
|
||||
format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择截止时间">
|
||||
</el-date-picker>
|
||||
</div>
|
||||
<div style="display: inline-block;">
|
||||
<el-button style='margin-left:15px;' size="mini" type="primary" icon="document" @click="refreshList">查询
|
||||
</el-button>
|
||||
<el-button style='margin-left:15px;' size="mini" type="primary" icon="document" @click="cleans">重置
|
||||
</el-button>
|
||||
<el-button size="mini" type="warning" :disabled="!isAuth('coupon:delete')"
|
||||
@click="excelStair()" style="margin: 3px;">导出excel
|
||||
</el-button>
|
||||
</div>
|
||||
<el-table v-loading="tableDataLoadingKm" :data="tableDataKm.records">
|
||||
<el-table-column prop="sdkId" fixed="left" label="编号" width="80">
|
||||
</el-table-column>
|
||||
<el-table-column prop="sdkRemarks" label="卡密名称">
|
||||
</el-table-column>
|
||||
<el-table-column prop="sdkContent" label="卡密">
|
||||
</el-table-column>
|
||||
<el-table-column prop="sysUserName" label="渠道商名称">
|
||||
|
||||
</el-table-column>
|
||||
<el-table-column prop="giveNum" label="赠送会员天数" width="80">
|
||||
</el-table-column>
|
||||
<el-table-column prop="overdueTime" label="到期时间">
|
||||
</el-table-column>
|
||||
<el-table-column label="领取用户">
|
||||
<template slot-scope="scope">
|
||||
<span style="color: #3E8EF7;cursor: pointer;" @click="updates(scope.row)" v-if="scope.row.nickName">{{scope.row.nickName}}</span>
|
||||
<span v-else>未绑定</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="状态">
|
||||
<template slot-scope="scope">
|
||||
<span style="color: red;" v-if="scope.row.status == 0">待使用</span>
|
||||
<span style="color: #3E8EF7;" v-if="scope.row.status == 1">已使用</span>
|
||||
<span style="color: #999;" v-if="scope.row.status == 2">已过期</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="createTime" label="领取时间" width="150">
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="80">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" type="danger" :disabled="!isAuth('coupon:delete')"
|
||||
@click="deleteStairKm(scope.row)" style="margin: 3px;">删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div style="text-align: center;margin-top: 10px;">
|
||||
<el-pagination @size-change="handleSizeChangeList" @current-change="handleCurrentChangeList"
|
||||
:page-sizes="[10, 20, 30, 50, 100]" :page-size="limit" :current-page="page"
|
||||
layout="total,sizes, prev, pager, next" :total="tableDataKm.total">
|
||||
</el-pagination>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 渠道商 -->
|
||||
<el-dialog title="渠道商" :visible.sync="dialogFormVisibleQd" center width="70%">
|
||||
<el-table :data="dataList" v-loading="dataListLoading" style="width: 100%;">
|
||||
<el-table-column prop="userId" header-align="center" align="center" width="80" label="ID">
|
||||
</el-table-column>
|
||||
<el-table-column prop="username" header-align="center" align="center" label="用户名">
|
||||
</el-table-column>
|
||||
<el-table-column prop="email" header-align="center" align="center" label="邮箱">
|
||||
</el-table-column>
|
||||
<el-table-column prop="mobile" header-align="center" align="center" label="手机号">
|
||||
</el-table-column>
|
||||
<el-table-column prop="qdRate" header-align="center" align="center" label="渠道佣金">
|
||||
<!-- <template slot-scope="scope">
|
||||
<span v-for="(item,index) in scope.row.roleEntityList" :key="index">{{item.roleName}} </span>
|
||||
</template> -->
|
||||
</el-table-column>
|
||||
<el-table-column prop="qdCode" header-align="center" align="center" label="渠道码">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.qdCode" >{{scope.row.qdCode}}</span>
|
||||
<span v-else> - </span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="status" header-align="center" align="center" label="状态">
|
||||
<template slot-scope="scope">
|
||||
<el-tag v-if="scope.row.status === 0" size="small" type="danger">禁用</el-tag>
|
||||
<el-tag v-else size="small">正常</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="createTime" header-align="center" align="center" width="180" label="创建时间">
|
||||
</el-table-column>
|
||||
<el-table-column fixed="right" header-align="center" align="center" width="150" label="操作">
|
||||
<template slot-scope="scope">
|
||||
<el-button type="text" size="small"
|
||||
@click="addOrUpdateHandle(scope.row)">确认</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-dialog>
|
||||
</el-tabs>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
limit: 10,
|
||||
page: 1,
|
||||
size1: 10,
|
||||
page1: 1,
|
||||
form: {
|
||||
typeId: '',
|
||||
giveNum: '',
|
||||
remarks: '',
|
||||
validDay: '',
|
||||
},
|
||||
formLabelWidth: '200px',
|
||||
tableDataLoading: false,
|
||||
tableDataLoadingKm:false,
|
||||
dialogFormVisible: false,
|
||||
tableData: {},
|
||||
tableDataKm:{},
|
||||
activeName: 'first',
|
||||
classify: 1,
|
||||
couponIssueNameT: '',
|
||||
statusT: 0,
|
||||
couponIds: [],
|
||||
couponIdList: [],
|
||||
dialogFormVisible4: false,
|
||||
dialogFormVisible5: false,
|
||||
tableDataLoadingY: false,
|
||||
tableDataYhq: {},
|
||||
size1: 10,
|
||||
page1: 1,
|
||||
titles: '添加',
|
||||
tableDataList: [],
|
||||
dialogFormVisible3: false,
|
||||
num:0,
|
||||
couponCardTypeId:'',
|
||||
status:'',
|
||||
statesnum: [{
|
||||
label: '全部',
|
||||
value: ''
|
||||
},
|
||||
{
|
||||
label: '待使用',
|
||||
value: 0
|
||||
},
|
||||
{
|
||||
label: '已使用',
|
||||
value: 1
|
||||
},
|
||||
{
|
||||
label: '已过期',
|
||||
value: 2
|
||||
}
|
||||
],
|
||||
dialogFormVisibleKm:false,
|
||||
checkBoxData: [], //多选框选择的值
|
||||
userName:'',
|
||||
sdkContent:'',
|
||||
startTime: '',
|
||||
endTime: '',
|
||||
info: {
|
||||
stockDate: this.getNowTime(), //日期
|
||||
},
|
||||
info2: {
|
||||
stockDate2: this.getNowTime2(), //日期
|
||||
},
|
||||
dialogFormVisibleQd:false,
|
||||
dataList:[],
|
||||
dataListLoading:false,
|
||||
sysUserId:'',
|
||||
sysUserName:'',
|
||||
sysUserNameT:'',
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
//处理默认选中当前日期
|
||||
getNowTime() {
|
||||
var now = new Date()
|
||||
var year = now.getFullYear() //得到年份
|
||||
var month = now.getMonth() //得到月份
|
||||
var date = now.getDate() //得到日期
|
||||
month = month + 1
|
||||
month = month.toString().padStart(2, '0')
|
||||
date = date.toString().padStart(2, '0')
|
||||
var defaultDate = `${year}-${month}-${date}`
|
||||
return defaultDate
|
||||
this.$set(this.info, 'stockDate', defaultDate)
|
||||
},
|
||||
//处理默认选中当前日期
|
||||
getNowTime2() {
|
||||
var now = new Date()
|
||||
var year = now.getFullYear() //得到年份
|
||||
var month = now.getMonth() - now.getMonth() //得到月份
|
||||
var date = now.getDate() - now.getDate() + 1 //得到日期
|
||||
month = month + 1
|
||||
month = month.toString().padStart(2, '0')
|
||||
date = date.toString().padStart(2, '0')
|
||||
var defaultDate = `${year}-${month}-${date}`
|
||||
return defaultDate
|
||||
this.$set(this.info, 'stockDate', defaultDate)
|
||||
},
|
||||
// 多选
|
||||
changeFunP(val) {
|
||||
this.checkBoxData = val;
|
||||
},
|
||||
handleSizeChange(val) {
|
||||
this.limit = val;
|
||||
this.dataSelect()
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.page = val;
|
||||
this.dataSelect()
|
||||
},
|
||||
handleSizeChange(val) {
|
||||
this.size = val;
|
||||
this.dataSelect()
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.page = val;
|
||||
this.dataSelect()
|
||||
},
|
||||
handleSizeChangeList(val) {
|
||||
this.limit = val;
|
||||
this.dataSelectKm()
|
||||
},
|
||||
handleCurrentChangeList(val) {
|
||||
this.page = val;
|
||||
this.dataSelectKm()
|
||||
},
|
||||
|
||||
handleSizeChangeY(val) {
|
||||
this.size1 = val;
|
||||
this.dataSelectYhq()
|
||||
},
|
||||
handleCurrentChangeY(val) {
|
||||
this.page1 = val;
|
||||
this.dataSelectYhq()
|
||||
},
|
||||
handleClick(tab, event) {
|
||||
this.limit = 10
|
||||
this.page = 1
|
||||
this.couponCardTypeId = ''
|
||||
if (tab._props.label == '发卡分类') {
|
||||
this.classify = 1
|
||||
this.dataSelect()
|
||||
}
|
||||
if (tab._props.label == '发卡列表') {
|
||||
this.dataSelectKm()
|
||||
}
|
||||
|
||||
},
|
||||
// 刷新
|
||||
refresh() {
|
||||
this.page = 1
|
||||
this.dataSelect()
|
||||
},
|
||||
// 添加、修改
|
||||
amend(row) {
|
||||
this.dialogFormVisible = true
|
||||
this.couponIds = []
|
||||
this.couponIdList = []
|
||||
if (row) {
|
||||
this.titles = '修改'
|
||||
this.form.typeId = row.typeId
|
||||
this.form.giveNum = row.giveNum
|
||||
this.form.remarks = row.remarks
|
||||
this.form.validDay = row.validDay
|
||||
} else {
|
||||
this.titles = '添加'
|
||||
this.form.typeId = ''
|
||||
this.form.giveNum = ''
|
||||
this.form.remarks = ''
|
||||
this.form.validDay = ''
|
||||
}
|
||||
|
||||
},
|
||||
handleAvatarSuccess2(file, fileList) {
|
||||
this.form.couponIssueImage = file.data
|
||||
},
|
||||
// 修改
|
||||
amendNoticeTo() {
|
||||
if (this.form.remarks ==='' ) {
|
||||
this.$message({
|
||||
title: '提示',
|
||||
type: 'error',
|
||||
duration: 1800,
|
||||
message: '请输入名称',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
if (this.form.giveNum === '' ||this.form.giveNum ==null) {
|
||||
this.$message({
|
||||
title: '提示',
|
||||
type: 'error',
|
||||
duration: 1800,
|
||||
message: '请输入赠送会员天数',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
if (this.form.validDay ==='' ) {
|
||||
this.$message({
|
||||
title: '提示',
|
||||
type: 'error',
|
||||
duration: 1800,
|
||||
message: '请输入有效天数',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
|
||||
if (this.titles == '添加') {
|
||||
var url = 'couponCard/insertCouponCardType'
|
||||
} else {
|
||||
var url = 'couponCard/updateCouponCardType'
|
||||
}
|
||||
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkType/saveSdkType'),
|
||||
method: 'post',
|
||||
// data: this.$http.adornData({
|
||||
params: this.$http.adornParams({
|
||||
'typeId': this.form.typeId,
|
||||
'giveNum': this.form.giveNum,
|
||||
'remarks': this.form.remarks,
|
||||
'validDay': this.form.validDay,
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
if(data.code==0){
|
||||
this.$message({
|
||||
message: '操作成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
this.dialogFormVisible = false
|
||||
}else{
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
},
|
||||
//删除
|
||||
deleteStair(row) {
|
||||
this.$confirm(`确定删除此条信息?`, '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkType/deleteSdkType'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'typeId': row.typeId
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
if (data.code == 0) {
|
||||
this.$message({
|
||||
message: '删除成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
} else {
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'error',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
}).catch(() => {})
|
||||
},
|
||||
refreshList(){
|
||||
this.page = 1
|
||||
this.dataSelectKm()
|
||||
},
|
||||
// 重置
|
||||
cleans() {
|
||||
this.endTime = ''
|
||||
this.startTime = ''
|
||||
this.couponIssueNameT = ''
|
||||
this.sdkContent = ''
|
||||
this.status = ''
|
||||
this.userName = ''
|
||||
this.sysUserNameT = ''
|
||||
this.page = 1
|
||||
this.dataSelectKm()
|
||||
},
|
||||
// 获取卡密分类数据列表
|
||||
dataSelect() {
|
||||
this.tableDataLoading = true
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkType/getSdkTypeList'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'page': this.page,
|
||||
'limit': this.limit,
|
||||
'remarks': this.content
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
this.tableDataLoading = false
|
||||
let returnData = data.data;
|
||||
this.tableData = returnData
|
||||
if (data.data.list.length == 0) {
|
||||
this.page = this.page - 1
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
},
|
||||
// 打开优惠券列表
|
||||
couponIdBtn(rows) {
|
||||
this.dataSelectYhq()
|
||||
this.dialogFormVisible4 = true
|
||||
},
|
||||
//获取优惠券数据
|
||||
dataSelectYhq() {
|
||||
this.tableDataLoadingY = true
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/coupon/seleteAllCoupon'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'page': this.page1,
|
||||
'limit': this.size1
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
this.tableDataLoadingY = false
|
||||
let returnData = data.data;
|
||||
this.tableDataYhq = returnData
|
||||
})
|
||||
},
|
||||
// 删除优惠券
|
||||
couponIdClose(ietm, index) {
|
||||
console.log('index', index, 'ietm', ietm, this.couponIdList.length)
|
||||
if (this.couponIdList.length < 2) {
|
||||
this.$message({
|
||||
title: '提示',
|
||||
type: 'error',
|
||||
duration: 1800,
|
||||
message: '最少需要选中一张优惠券',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
} else {
|
||||
this.couponIdList.splice(index, 1)
|
||||
this.couponIds.splice(index, 1)
|
||||
}
|
||||
},
|
||||
// 批量开启
|
||||
closes2(id) {
|
||||
this.dialogFormVisible4 = false
|
||||
},
|
||||
// 多选券
|
||||
changeFun(row) {
|
||||
this.couponIds.push(row.couponId)
|
||||
this.couponIdList.push(row.couponName)
|
||||
this.dialogFormVisible4 = false
|
||||
},
|
||||
// 优惠券列表
|
||||
listBtn(row) {
|
||||
this.tableDataList = row.couponList
|
||||
this.dialogFormVisible5 = true
|
||||
},
|
||||
// 生成卡密弹框
|
||||
shengCoupon(row){
|
||||
this.num = ''
|
||||
this.sysUserId= ''
|
||||
this.sysUserName= ''
|
||||
this.couponCardTypeId = row.typeId
|
||||
this.dialogFormVisible3 = true
|
||||
},
|
||||
// 确认生成
|
||||
couponNoticeTo(){
|
||||
if (this.sysUserId == '') {
|
||||
this.$notify({
|
||||
title: '提示',
|
||||
duration: 1800,
|
||||
message: '请选择渠道商',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
if (this.num == '') {
|
||||
this.$notify({
|
||||
title: '提示',
|
||||
duration: 1800,
|
||||
message: '请输入生成数量',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
if (this.num >100) {
|
||||
this.$notify({
|
||||
title: '提示',
|
||||
duration: 1800,
|
||||
message: '单次生成数量数量最高为100',
|
||||
type: 'warning'
|
||||
});
|
||||
return
|
||||
}
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkInfo/saveSdkInfo'),
|
||||
method: 'post',
|
||||
params: this.$http.adornParams({
|
||||
'typeId': this.couponCardTypeId,
|
||||
'num':this.num,
|
||||
'sysUserId':this.sysUserId,
|
||||
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
if (data.code == 0) {
|
||||
this.$message({
|
||||
message: '操作成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dialogFormVisible3 = false
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
} else {
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'error',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelect()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
},
|
||||
// 卡密列表
|
||||
dataSelectKm(){
|
||||
this.tableDataLoadingKm = true
|
||||
// if (this.endTime == '') {
|
||||
// this.endTime = this.info.stockDate
|
||||
// }
|
||||
// if (this.startTime == '') {
|
||||
// this.startTime = this.info2.stockDate2
|
||||
// }
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkInfo/getSdkList'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'page': this.page,
|
||||
'limit': this.limit,
|
||||
'sdkRemarks': this.couponIssueNameT,
|
||||
'status': this.status,
|
||||
'typeId':this.couponCardTypeId,
|
||||
'nickName':this.userName,
|
||||
'sdkContent':this.sdkContent,
|
||||
'endTime': this.endTime,
|
||||
'startTime': this.startTime,
|
||||
'sysUserName':this.sysUserNameT,
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
this.tableDataLoadingKm = false
|
||||
let returnData = data.data;
|
||||
this.tableDataKm = returnData
|
||||
|
||||
})
|
||||
},
|
||||
// 详情跳转
|
||||
updates(row) {
|
||||
this.$router.push({
|
||||
path: '/userDetail',
|
||||
query: {
|
||||
userId: row.userId
|
||||
}
|
||||
})
|
||||
},
|
||||
// 卡密列表弹框
|
||||
listBtnKm(row){
|
||||
this.couponCardTypeId = row.typeId
|
||||
this.couponIssueNameT = ''
|
||||
this.sdkContent = ''
|
||||
this.status = ''
|
||||
this.userName = ''
|
||||
this.sysUserNameT = ''
|
||||
this.dataSelectKm()
|
||||
this.dialogFormVisibleKm = true
|
||||
},
|
||||
|
||||
// 导出
|
||||
excelStair(){
|
||||
// var endTime = this.endTime
|
||||
// if (this.endTime != '') {
|
||||
// endTime = this.endTime + " 23:59:59"
|
||||
// }
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkInfo/excelCouponCardList'),
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
params: this.$http.adornParams({
|
||||
'sdkRemarks': this.couponIssueNameT,
|
||||
'status': this.status,
|
||||
'typeId':this.couponCardTypeId,
|
||||
'nickName':this.userName,
|
||||
'sdkContent':this.sdkContent,
|
||||
'endTime': this.endTime,
|
||||
'startTime': this.startTime,
|
||||
'sysUserName':this.sysUserNameT
|
||||
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
let blob = new Blob([data], {
|
||||
type: 'application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
||||
})
|
||||
if (window.navigator.msSaveOrOpenBlob) {
|
||||
navigator.msSaveBlob(blob)
|
||||
} else {
|
||||
let url = window.URL.createObjectURL(blob)
|
||||
let elink = document.createElement('a')
|
||||
elink.download = '卡密列表.xlsx'
|
||||
elink.style.display = 'none'
|
||||
elink.href = url
|
||||
document.body.appendChild(elink)
|
||||
elink.click()
|
||||
document.body.removeChild(elink)
|
||||
}
|
||||
})
|
||||
},
|
||||
//批量删除
|
||||
deleteStairKm(row) {
|
||||
var sdkIds = []
|
||||
sdkIds.push(row.sdkId)
|
||||
this.$confirm(`确定删除此条信息?`, '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkInfo/deleteSdk'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'sdkIds': row.sdkId,
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
if (data.code == 0) {
|
||||
this.$message({
|
||||
message: '删除成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelectKm()
|
||||
}
|
||||
})
|
||||
} else {
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'error',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelectKm()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
}).catch(() => {})
|
||||
},
|
||||
// 批量转账
|
||||
transferClcik(id) {
|
||||
var ids = id ? [id] : this.checkBoxData.map(item => {
|
||||
return item.sdkId
|
||||
})
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('admin/sdkInfo/deleteSdk'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'sdkIds': ids.toString(),
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
if (data.code == 0) {
|
||||
this.$message({
|
||||
message: '删除成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelectKm()
|
||||
}
|
||||
})
|
||||
} else {
|
||||
this.$message({
|
||||
message: data.msg,
|
||||
type: 'error',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.dataSelectKm()
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
// 渠道商弹框
|
||||
qudaoBtn(){
|
||||
this.getDataList()
|
||||
this.dialogFormVisibleQd = true
|
||||
|
||||
},
|
||||
getDataList() {
|
||||
this.dataListLoading = true
|
||||
this.$http({
|
||||
url: this.$http.adornUrl('sys/user/list'),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams({
|
||||
'page': 1,
|
||||
'limit': 10,
|
||||
'username': '',
|
||||
'isChannel':1
|
||||
})
|
||||
}).then(({
|
||||
data
|
||||
}) => {
|
||||
if (data && data.code === 0) {
|
||||
this.dataList = data.page.list
|
||||
} else {
|
||||
this.dataList = []
|
||||
}
|
||||
this.dataListLoading = false
|
||||
})
|
||||
},
|
||||
// 确认选择渠道商
|
||||
addOrUpdateHandle(row){
|
||||
this.sysUserId = row.userId
|
||||
this.sysUserName = row.username
|
||||
this.dialogFormVisibleQd = false
|
||||
},
|
||||
|
||||
},
|
||||
mounted() {
|
||||
this.dataSelect()
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user