Commit 87ccc06b authored by lixy's avatar lixy

commit

parent 94eadf67
<template> <template>
<div class="app-container calendar-list-container" v-loading.body="showLoadingBody"> <div>
<div v-if="!oneCampsiteDialogVisible"> <el-form :model="form" ref="form" label-width="140px" style="margin-top: 20px;">
<div class="filter-container" ref="filter-container"> <el-row>
<el-form ref="queryForm" :inline="inline" :model="listQuery" label-width="100px"> <el-col :span="12">
<el-row> <el-form-item label="股东分销提成">
<el-col :span="8"> <el-input v-model="form.name" placeholder="请输入股东分销提成" ></el-input>
<el-form-item label="名称"> <span style="color:#bfcbd9;">用户消费,其上线所得提成。提成为百分比,取值0到100之间,超出取值范围按0计算,无上线时无提成</span>
<el-input v-model.number="listQuery.name" placeholder="请输入名称"></el-input> </el-form-item>
</el-form-item> </el-col>
</el-col> </el-row>
<!--<el-col :span="8">--> <el-row>
<!--<el-form-item label="时间">--> <el-col :span="12">
<!--<el-date-picker--> <el-form-item label="合伙人分销提成">
<!--v-model="listQuery.startTime"--> <el-input v-model="form.name" placeholder="请输入合伙人分销提成" ></el-input>
<!--type="date"--> <span style="color:#bfcbd9;">用户消费,其上线所得提成。提成为百分比,取值0到100之间,超出取值范围按0计算,无上线时无提成</span>
<!--clearable--> </el-form-item>
<!--placeholder="选择日期">--> </el-col>
<!--</el-date-picker>~--> </el-row>
<!--<el-date-picker--> <el-row>
<!--v-model="listQuery.endTime"--> <el-col :span="12">
<!--type="date"--> <el-form-item label="代理人分销提成">
<!--clearable--> <el-input v-model="form.name" placeholder="请输入代理人分销提成" ></el-input>
<!--placeholder="选择日期">--> <span style="color:#bfcbd9;">用户消费,其上线所得提成。提成为百分比,取值0到100之间,超出取值范围按0计算,无上线时无提成</span>
<!--</el-date-picker>--> </el-form-item>
<!--</el-form-item>--> </el-col>
<!--</el-col>--> </el-row>
</el-row> <el-row>
</el-form> <el-col :span="12">
<el-button class="filter-item" type="primary" v-waves icon="search" @click="handleFilter">搜索</el-button> <el-form-item label="员工分销提成">
<el-button class="filter-item" style="margin-left: 10px;" @click="handleCreate" <el-input v-model="form.name" placeholder="请输入员工分销提成" ></el-input>
type="primary" icon="edit">添加 <span style="color:#bfcbd9;">用户消费,其上线所得提成。提成为百分比,取值0到100之间,超出取值范围按0计算,无上线时无提成</span>
</el-button> </el-form-item>
</div> </el-col>
<el-table :key='tableKey' :data="list" border fit highlight-current-row </el-row><el-row>
style="width: 1367px;"> <el-col :span="12">
<el-table-column <el-form-item label="普通用户分销提成">
type="index" <el-input v-model="form.name" placeholder="请输入普通用户分销提成" ></el-input>
align="center" label="序号" width="65"> <span style="color:#bfcbd9;">用户消费,其上线所得提成。提成为百分比,取值0到100之间,超出取值范围按0计算,无上线时无提成</span>
</el-table-column> </el-form-item>
<el-table-column width="200" align="center" label="名称"> </el-col>
<template scope="scope"> </el-row>
<img :src="scope.row.cover" style="width: 30px;"/> </el-form>
<span>{{scope.row.name}}</span> <div slot="footer" class="dialog-footer">
</template> <el-button @click="cancel">重 置</el-button>
</el-table-column> <el-button type="primary" @click="create()">立即提交</el-button>
<el-table-column width="300" align="center" label="类型">
<template scope="scope">
<span>{{scope.row.storeTypeName}}</span>
</template>
</el-table-column>
<el-table-column width="200" align="center" label="热度">
<template scope="scope">
<span>{{scope.row.hot}}</span>
</template>
</el-table-column>
<el-table-column width="300" align="center" label="创建时间">
<template scope="scope">
<span>{{scope.row.crtTimeStr}}</span>
</template>
</el-table-column>
<el-table-column align="center" width="300" label="操作">
<template scope="scope">
<el-button size="small" type="success" @click="handleUpdate(scope.row)">编辑
</el-button>
<el-button size="small" type="primary" v-if="scope.row.saleState==2|| scope.row.saleState==0" @click="upStatus(scope.row)">上架
</el-button>
<el-button size="small" type="warn" v-if="scope.row.saleState==1" @click="upStatus(scope.row)">下架
</el-button>
<el-popover
ref="popover5"
placement="top"
width="160"
v-model="scope.row.visible2">
<p>确定删除吗?</p>
<div style="text-align: right; margin: 0">
<el-button size="mini" type="text" @click="scope.row.visible2 = false">取消</el-button>
<el-button type="primary" size="mini" @click="deleteHandler(scope.row)">确定</el-button>
</div>
</el-popover>
<el-button type="danger" size="small" v-popover:popover5>删除</el-button>
</template>
</el-table-column>
</el-table>
<div v-show="!listLoading" class="pagination-container">
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
:current-page.sync="listQuery.page" :page-sizes="[10,20,30, 50]" :page-size="listQuery.limit"
layout="total, sizes, prev, pager, next, jumper" :total="total"></el-pagination>
</div>
</div> </div>
</div> </div>
</template> </template>
...@@ -116,10 +70,8 @@ ...@@ -116,10 +70,8 @@
getToken getToken
} from 'utils/auth'; } from 'utils/auth';
import { import {
getCampsiteList, incomList
delCampsiteShop, } from 'api/purseManage';
saleStatus
} from 'api/campsiteManage';
import Element1 from "../admin/menu/components/element"; import Element1 from "../admin/menu/components/element";
import ElRow from "element-ui/packages/row/src/row"; import ElRow from "element-ui/packages/row/src/row";
import ElCol from "element-ui/packages/col/src/col"; import ElCol from "element-ui/packages/col/src/col";
...@@ -133,31 +85,32 @@ ...@@ -133,31 +85,32 @@
}, },
data() { data() {
return { return {
modalTitle: "创建",
BASE_API: process.env.BASE_API, BASE_API: process.env.BASE_API,
oneCampsiteDialogVisible: false,//添加、编辑弹框
showLoadingBody: false, showLoadingBody: false,
form: {
tagNames:"",//标签
name: undefined,//旅游名称
saleCount: undefined,//销量
stock: undefined,//总数量
},
list: null, list: null,
total: null, total: null,
listLoading: true, listLoading: true,
listQuery: { form: {
page: 1, id: undefined,
limit: 20, name: undefined,//营地名称
startTime: undefined, hot: 0,//营地热度
endTime:undefined, servicePhone: "",//客服电话
name: '',//关键词 phone: "",//联系电话
province: undefined,//省份
provinceName: undefined,//省份名称
city: undefined,//市编号
cityName: undefined,//市名称
address: undefined,//详细地址
latitude: undefined,
longitude: undefined,
content: '',//营地详情
concat: "",//联系人
logo:undefined,//封面图
configure: '',//配套&收费
campsiteTagListVos: [],//营地类型
carouse:[],//banner轮播
}, },
inline: true, inline: true,
textMap: {
update: '编辑',
create: '创建'
},
tableKey: 0 tableKey: 0
} }
}, },
...@@ -170,152 +123,31 @@ ...@@ -170,152 +123,31 @@
]) ])
}, },
methods: { methods: {
/** create(){},
* 添加
* */
handleCreate() {
this.resetTemp();
this.oneRow = {};
this.modalTitle = '创建';
this.oneCampsiteDialogVisible = true;
},
/**
* 操作-删除
* */
deleteHandler(row) {
delCampsiteShop(row.id).then(response => {
if (response.status === 200) {
this.$notify({
title: '成功',
message: '删除成功',
type: 'success',
duration: 2000
});
this.oneCampsiteDialogVisible = false;
this.getList();
} else {
this.$notify({
title: '删除失败',
message: rsCode.msg[response.code] ? rsCode.msg[response.code] : '操作失败!',
type: 'error',
duration: 2000
});
}
});
},
/**
* 上架、下架 参数 id status 1-上架;2-下架 post
*/
upStatus(row){
let params = {
id: row.id,
status: row.saleState==1?2:1
};
saleStatus(params).then(response => {
if (response.status === 200) {
this.$notify({
title: '成功',
message: '成功',
type: 'success',
duration: 2000
});
this.oneCampsiteDialogVisible = false;
this.getList();
} else {
this.$notify({
title: '失败',
message: rsCode.msg[response.code] ? rsCode.msg[response.code] : '操作失败!',
type: 'error',
duration: 2000
});
}
});
},
/**
* 编辑
* */
handleUpdate(row) {
this.modalTitle = '编辑';
this.oneRow = row;
this.oneCampsiteDialogVisible = true;
},
/**
* 下架
* */
undercarriageHandler(row) {
// open dialog
this.departureDialogVisible = true;
this.clearDepartureForm();
let that = this;
let selectArry = [];
this.allCompaniesArr.map(function(item){
item.value = item.name;
selectArry.push(item);
});
this.departureForm.mileage = row.mileage;
this.departureForm.expectArrivalBranchCompanyId = row.subordinateBranch;
this.departureForm.departureBranchCompanyId = row.subordinateBranch;
selectArry.map(function (iitem) {
if( row.subordinateBranch == iitem.id){
that.departureForm.departureBranchCompanyName = iitem.name;
that.departureForm.expectArrivalBranchCompanyName = iitem.name;
}
});
this.departureForm.vehicleId = row.id;
this.departureForm.numberPlate = row.numberPlate;
this.departureForm.departureDate = Date();
},
/**
* 旅游modal传递回来的数据
* */
oneCampsiteDialogEvent(e){
this.oneCampsiteDialogVisible = false;
if(!e){//关闭编辑
this.oneCampsiteDialogVisible = e;
} else if(e){
//编辑成功-重新加载列表
this.getList();
}
},
/** /**
* 获取旅游列表 * 获取旅游列表
* */ * */
getList() { getList() {
this.listLoading = true; this.listLoading = true;
if(this.listQuery.startTime){ // incomList(this.listQuery).then(response => {
this.listQuery.startTime = this.listQuery.startTime.getTime(); // let totalCountRs = undefined;
} // let listRs = undefined;
if(this.listQuery.endTime){ // if (!this.$utils.isEmpty(response.data.data) && this.$utils.isInteger(response.data.totalCount)) {
this.listQuery.endTime = this.listQuery.endTime.getTime(); // listRs = response.data.data;
} // totalCountRs = response.data.totalCount;
getCampsiteList(this.listQuery).then(response => { // listRs.map(function(item){
let totalCountRs = undefined; // item.visible2 = false;
let listRs = undefined; // item.crtTimeStr = timestamp2Date(item.crtTime);
if (!this.$utils.isEmpty(response.data.data) && this.$utils.isInteger(response.data.totalCount)) { // if(item.storeTypeName){
listRs = response.data.data; // item.storeTypeName = item.storeTypeName.join("|");
totalCountRs = response.data.totalCount; // }
listRs.map(function(item){ // });
item.visible2 = false; // }
item.crtTimeStr = timestamp2Date(item.crtTime); // this.listLoading = false;
if(item.storeTypeName){ // this.list = listRs;
item.storeTypeName = item.storeTypeName.join("|"); // this.total = totalCountRs;
} // })
});
}
this.listLoading = false;
this.list = listRs;
this.total = totalCountRs;
})
},
getAddrStr(branchCompany) {
let regions = getRegionByCodes([branchCompany.addrProvince, branchCompany.addrCity, branchCompany.addrTown]);
let address = [];
for(let i = 0; i < regions.length; i++){
address.push(regions[i].name);
}
return address.join(" ");
// return regions[0].name + ' ' + regions[1].name + ' ' + regions[2].name + ' ';
}, },
handleFilter() { handleFilter() {
this.listQuery.page = 1; this.listQuery.page = 1;
...@@ -334,201 +166,6 @@ ...@@ -334,201 +166,6 @@
handleCurrentChange(val) { handleCurrentChange(val) {
this.listQuery.page = val; this.listQuery.page = val;
this.getList(); this.getList();
},
/**
* 操作-申请预定
* */
handleApply(row) {
this.resetTemp4Apply();
let that = this;
let selectArry = [];
this.allCompaniesArr.map(function(item){
item.value = item.name;
selectArry.push(item);
});
this.form4Apply.liftCompany = row.subordinateBranch;
selectArry.map(function (iitem) {
if( row.subordinateBranch == iitem.id){
that.form4Apply.state3 = iitem.name;
}
});
this.form4Apply.vehicle = row.id;
getBookedInfoIn2Month(row.id)
.then(response => {
this.curBookedInfo3Month = response.data;
this.dialogStatus = 'apply';
this.dialogForm4ApplyVisible = true;
});
},
handleBookInfo(row) {
this.$refs.bookInfoViewer.handleBookInfo(row.id);
},
create(formName) {
const set = this.$refs;
if(!this.form.state2 || this.form.state2 == "全部"){
this.form.subordinateBranch = undefined;
this.$notify({
title: '失败',
message: '请选择分公司',
type: 'warning',
duration: 2000
});
return;
}
set[formName].validate(valid => {
if (valid) {
let formTemp = this.fillDateRange2Object(this.form, 'insuranceDateRange4form', 'insuranceStartDate', 'insuranceEndDate');
convertDate2Str(formTemp);
addObj(formTemp)
.then(response => {
if (response.code === rsCode.RS_CODE_SUC) {
this.dialogFormVisible = false;
this.getList();
this.$notify({
title: '成功',
message: '创建成功',
type: 'success',
duration: 2000
});
this.getList();
} else {
this.$notify({
title: '失败',
message: rsCode.msg[response.code] ? rsCode.msg[response.code] : '操作失败!',
type: 'error',
duration: 2000
});
}
});
} else {
return false;
}
});
},
cancel(formName) {
this.dialogFormVisible = false;
this.dialogForm4ApplyVisible = false;
this.$refs[formName].resetFields();
},
cancel4Apply(formName) {
this.dialogForm4ApplyVisible = false;
this.$refs[formName].resetFields();
},
update(formName) {
const set = this.$refs;
if(!this.form.state2 || this.form.state2 == "全部"){
this.form.subordinateBranch = undefined;
this.$notify({
title: '失败',
message: '请选择分公司',
type: 'warning',
duration: 2000
});
return;
}
set[formName].validate(valid => {
if (valid) {
let formTemp = this.fillDateRange2Object(this.form, 'insuranceDateRange4form', 'insuranceStartDate', 'insuranceEndDate');
convertDate2Str(formTemp);
putObj(formTemp).then(response => {
if (response.code === rsCode.RS_CODE_SUC) {
this.dialogFormVisible = false;
this.getList();
this.$notify({
title: '成功',
message: '更新成功',
type: 'success',
duration: 2000
});
this.getList();
} else {
this.$notify({
title: '失败',
message: rsCode.msg[response.code] ? rsCode.msg[response.code] : '操作失败!',
type: 'error',
duration: 2000
});
}
});
} else {
return false;
}
});
},
/**
* 申请预定-确定
* @param formName
*/
apply(formName) {
if(!this.form4Apply.state3 || this.form4Apply.state3 == "全部"){
this.form4Apply.liftCompany = undefined;
this.$notify({
title: '失败',
message: '请选择提车分公司',
type: 'warning',
duration: 2000
});
return;
}
if(!this.form4Apply.state4 || this.form4Apply.state4 == "全部"){
this.form4Apply.retCompany = undefined;
this.$notify({
title: '失败',
message: '请选择还车分公司',
type: 'warning',
duration: 2000
});
return;
}
const set = this.$refs;
set[formName].validate(valid => {
if (valid) {
this.dialogFormVisible = false;
book(this.form4Apply).then(() => {
this.dialogForm4ApplyVisible = false;
this.getList();
this.$notify({
title: '成功',
message: '预定成功',
type: 'success',
duration: 2000
});
});
} else {
return false;
}
});
},
resetTemp() {
this.form = {
tagNames:"",//标签
name: undefined,//旅游名称
saleCount: undefined,//销量
stock: undefined,//总数量
};
},
resetTemp4Apply() {
this.form4Apply = {
bookStartDate: undefined,
bookEndDate: undefined,
state3: '',
state4:'',
retCompany: undefined,
vehicle: undefined,
selectedAccItem: undefined,
liftCompany: undefined,
liftAddr: undefined,
destination: undefined,
remark: undefined
};
},
resetTemp4BookInfo() {
this.form4BookInfo = {
selectedMonth: this.$utils.toDateString(newEast8Date(), 'yyyy-MM'),
vehicle: undefined
};
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment