Compare commits
No commits in common. 'ac798f3f943ca92004cf956c3664a5774255e81b' and 'a2c29e8ddab812cdae98a7b2dfd50fda933a5486' have entirely different histories.
ac798f3f94
...
a2c29e8dda
@ -1,39 +0,0 @@ |
||||
|
||||
import request from '@/utils/request'; |
||||
|
||||
// 查询车型列表
|
||||
export function getCarList(param) { |
||||
return request({ |
||||
url: '/driver-api/tdSysUserMember/duima/car/list', |
||||
method: 'get', |
||||
params: param |
||||
}); |
||||
} |
||||
|
||||
// 查询会员列表
|
||||
export function getMemberList(param) { |
||||
return request({ |
||||
url: '/driver-api/tdSysUserMember/duima/member/list', |
||||
method: 'get', |
||||
params: param |
||||
}); |
||||
} |
||||
|
||||
|
||||
// 查询用户会员列表
|
||||
export function getUserMemberList(param) { |
||||
return request({ |
||||
url: '/driver-api/tdSysUserMember/duima/user/member/list', |
||||
method: 'get', |
||||
params: param |
||||
}); |
||||
} |
||||
|
||||
//新增会员
|
||||
export function addUserMember(data) { |
||||
return request({ |
||||
url: '/driver-api/tdSysUserMember/duima/user/member', |
||||
method: 'post', |
||||
data: data |
||||
}); |
||||
} |
@ -1,57 +0,0 @@ |
||||
<!-- 接待人员详情页 --> |
||||
<template> |
||||
<div class="app-container"> |
||||
<el-form v-show="showSearch" ref="queryForm" :model="queryParams" size="small" :inline="true" label-width="68px"> |
||||
<el-form-item> |
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
|
||||
<el-table v-loading="loading" :data="coachList"> |
||||
<el-table-column type="index" width="55" align="center" /> |
||||
<el-table-column label="学员姓名" align="center" prop="schoolName" /> |
||||
<el-table-column label="联系方式" align="center" prop="placeName" /> |
||||
<el-table-column label="到场状态" align="center" prop="coachName" /> |
||||
<el-table-column label="备注" align="center" prop="phone" /> |
||||
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
||||
<template slot-scope="scope"> |
||||
<el-button v-hasPermi="['sch:coach:edit']" size="mini" type="text" icon="el-icon-edit" @click="handleAddAndUpdate(scope.row)">修改</el-button> |
||||
<el-button v-hasPermi="['sch:coach:remove']" size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button> |
||||
</template> |
||||
</el-table-column> --> |
||||
</el-table> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { listCoach, getCoach, delCoach } from '@/api/sch/coach'; |
||||
export default { |
||||
data() { |
||||
return { |
||||
// 遮罩层 |
||||
loading: true, |
||||
// 显示搜索条件 |
||||
showSearch: true, |
||||
// 总条数 |
||||
total: 0, |
||||
// 教练表格数据 |
||||
coachList: [], |
||||
// 查询参数 |
||||
queryParams: { |
||||
type: null, // 1本日统计 2本月统计 |
||||
placeId: null, |
||||
coachName: null, |
||||
phone: null |
||||
} |
||||
}; |
||||
}, |
||||
created() { |
||||
}, |
||||
methods: { |
||||
/** 查询教练列表 */ |
||||
getList() { |
||||
|
||||
} |
||||
} |
||||
}; |
||||
</script> |
@ -1,63 +0,0 @@ |
||||
<template> |
||||
<!-- 接待人统计页面 --> |
||||
<div class="app-container" style="max-width: 600px; margin: auto;"> |
||||
<el-form v-show="showSearch" ref="queryForm" :model="queryParams" size="small" :inline="true" label-width="68px"> |
||||
<el-form-item label="联系方式" prop="phone"> |
||||
<el-input v-model="queryParams.phone" placeholder="请输入联系方式" clearable @keyup.enter.native="handleQuery" /> |
||||
</el-form-item> |
||||
<el-form-item label="验证码" prop="code"> |
||||
<el-input v-model="queryParams.code" placeholder="请输入验证码" clearable @keyup.enter.native="handleQuery" /> |
||||
</el-form-item> |
||||
<el-form-item> |
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
|
||||
<el-card class="box-card"> |
||||
<div slot="header" class="clearfix"> |
||||
<span>接待统计</span> |
||||
</div> |
||||
<div> |
||||
<div><span>今日接到人数:100</span></div> |
||||
<div><span>今日成交人数:69</span></div> |
||||
<div><span>今日未成交人数:31</span> |
||||
<router-link :to="'/coach/count/detail'"> 详情</router-link> |
||||
</div> |
||||
</div> |
||||
<div> |
||||
<div><span>本月接到人数:200</span></div> |
||||
<div><span>本月成交人数:169</span></div> |
||||
<div><span>本月未成交人数:31</span></div> |
||||
</div> |
||||
</el-card> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { listCoach, delCoach } from '@/api/sch/coach'; |
||||
|
||||
export default { |
||||
name: 'Count', |
||||
data() { |
||||
return { |
||||
// 遮罩层 |
||||
loading: true, |
||||
// 查询参数 |
||||
queryParams: { |
||||
phone: null, |
||||
code: null |
||||
}, |
||||
countInfo: {} |
||||
}; |
||||
}, |
||||
created() { |
||||
|
||||
}, |
||||
methods: { |
||||
/** 查询统计结果 */ |
||||
getList() { |
||||
this.loading = true; |
||||
} |
||||
} |
||||
}; |
||||
</script> |
@ -1,113 +0,0 @@ |
||||
<template> |
||||
<el-dialog title="VIP" :close-on-click-modal="false" append-to-body :visible.sync="visible" width="500px" @close="closeDialog"> |
||||
<div> |
||||
<el-form ref="dialogForm" :model="dialogForm" :rules="dataRule" @keyup.enter.native="dialogFormSubmit()"> |
||||
<el-row> |
||||
<el-col :span="24"> |
||||
<el-form-item label="手机号" prop="phone"> |
||||
<el-input v-model="dialogForm.phone" placeholder="请输入" clearable /> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
<el-row> |
||||
<el-col :span="24"> |
||||
<el-form-item label="车型" prop="carTypeId"> |
||||
<el-select v-model="dialogForm.carTypeId" clearable placeholder="选择车型"> |
||||
<el-option v-for="item in carOptions" :key="item.carTypeId" :label="item.carName" :value="item.carTypeId" /> |
||||
</el-select> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
<el-row> |
||||
<el-col :span="24"> |
||||
<el-form-item label="会员" prop="memberId"> |
||||
<el-select v-model="dialogForm.memberId" clearable placeholder="选择车型"> |
||||
<el-option v-for="item in memberOptions.filter(item => item.carTypeId === dialogForm.carTypeId)" :key="item.memberId" :label="item.memberName" :value="item.memberId" /> |
||||
</el-select> |
||||
</el-form-item> |
||||
</el-col> |
||||
</el-row> |
||||
</el-form> |
||||
|
||||
</div> |
||||
<span slot="footer" class="dialog-footer"> |
||||
<el-button plain @click="(visible = false)">取消</el-button> |
||||
<el-button v-jclick type="primary" :disabled="!canSubmit" @click="dialogFormSubmit()">确定</el-button> |
||||
</span> |
||||
</el-dialog> |
||||
</template> |
||||
|
||||
<script> |
||||
import { addUserMember, getCarList, getMemberList } from '@/api/vip'; |
||||
|
||||
export default { |
||||
name:"VipForm", |
||||
data() { |
||||
return { |
||||
visible: false, |
||||
canSubmit: true, |
||||
dialogForm: { |
||||
userId: undefined, |
||||
memberId: undefined, |
||||
phone: undefined |
||||
}, |
||||
dataRule: { |
||||
phone: [{ required: true, message: '手机号不为空', trigger: 'blur' }, |
||||
{ pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, message: '请输入正确的手机号码', trigger: 'blur' }], carTypeId: [{ required: true, message: '车型不能为空', trigger: 'blur' }], |
||||
memberId: [{ required: true, message: '会员不能为空', trigger: 'blur' }] |
||||
}, |
||||
carOptions:[], |
||||
memberOptions:[] |
||||
}; |
||||
}, |
||||
methods: { |
||||
init(info = undefined) { |
||||
// debugger |
||||
this.visible = true; |
||||
this.getCarList(); |
||||
this.getMemberList(); |
||||
this.$nextTick(() => { |
||||
this.resetDialogForm(); |
||||
// this.$refs['dialogForm'].resetFields(); |
||||
if (info) { |
||||
this.dialogForm = this.deepClone(info); |
||||
} |
||||
}); |
||||
}, |
||||
resetDialogForm() { |
||||
this.dialogForm = { |
||||
userId: undefined, |
||||
memberId: undefined, |
||||
phone: undefined |
||||
}; |
||||
}, |
||||
closeDialog() { |
||||
this.$emit('update:dialogVisible', false); |
||||
}, |
||||
// 表单提交 |
||||
dialogFormSubmit() { |
||||
this.$refs.dialogForm.validate((valid) => { |
||||
if (valid) { |
||||
addUserMember(this.dialogForm).then(response => { |
||||
if (response.code == 200) { |
||||
this.$modal.msgSuccess('新增成功'); |
||||
this.$emit('update'); |
||||
this.visible = false; |
||||
} |
||||
}); |
||||
} |
||||
}); |
||||
}, |
||||
getCarList(){ |
||||
getCarList().then(resp => { |
||||
this.carOptions = resp.data; |
||||
}) |
||||
}, |
||||
getMemberList(){ |
||||
getMemberList().then(resp => { |
||||
this.memberOptions = resp.data |
||||
}) |
||||
} |
||||
} |
||||
}; |
||||
</script> |
@ -1,96 +0,0 @@ |
||||
<template> |
||||
<div class="app-container" > |
||||
<el-form size="small" :inline="true" label-width="68px" @submit.native.prevent> |
||||
<el-row :gutter="20"> |
||||
<el-form-item label="手机号"> |
||||
<el-input v-model="queryParams.phone" placeholder="请输入" clearable @keyup.enter.native="handleQuery" /> |
||||
</el-form-item> |
||||
</el-row> |
||||
<el-form-item> |
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
||||
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">新增</el-button> |
||||
|
||||
</el-form-item> |
||||
</el-form> |
||||
|
||||
<el-table v-loading="loading" :data="tableList" > |
||||
<el-table-column type="index" width="55" align="center" /> |
||||
<el-table-column label="手机号" align="center" prop="phone" min-width="140" /> |
||||
<el-table-column label="会员名" align="center" prop="memberName" min-width="140"/> |
||||
<el-table-column label="车型" align="center" prop="carName" min-width="100" /> |
||||
<el-table-column label="科目" align="center" prop="subjects" min-width="100"/> |
||||
<el-table-column label="开始时间" align="center" prop="startDate" min-width="100"/> |
||||
<el-table-column label="结束时间" align="center" prop="endDate" min-width="100"/> |
||||
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
||||
<template slot-scope="scope"> |
||||
<!-- <el-button size="mini" type="text" icon="el-icon-download" @click="handleEdit(scope.row)">编辑</el-button> --> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
|
||||
<!-- <pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" /> --> |
||||
<VipForm v-if="dialogVisible" ref="dialogForm" :dialog-visible="dialogVisible" @update="getList" /> |
||||
|
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { getUserMemberList } from '@/api/vip'; |
||||
import VipForm from './components/VipForm.vue' |
||||
|
||||
export default { |
||||
name: 'Vip', |
||||
components:{ |
||||
VipForm |
||||
}, |
||||
data() { |
||||
return { |
||||
// 遮罩层 |
||||
loading: false, |
||||
// 总条数 |
||||
total: 0, |
||||
tableList: [], |
||||
// 查询参数 |
||||
queryParams: { |
||||
phone: undefined |
||||
}, |
||||
dialogVisible: false, |
||||
dialogAddVisible: false |
||||
}; |
||||
}, |
||||
created() { |
||||
this.getList(); |
||||
}, |
||||
methods: { |
||||
/** 查询文件列表 */ |
||||
getList() { |
||||
this.loading = true; |
||||
getUserMemberList(this.queryParams).then(response => { |
||||
this.tableList = response.data; |
||||
// this.total = response.total; |
||||
this.loading = false; |
||||
}); |
||||
}, |
||||
|
||||
/** 搜索按钮操作 */ |
||||
handleQuery() { |
||||
this.getList(); |
||||
}, |
||||
/** 重置按钮操作 */ |
||||
resetQuery() { |
||||
this.queryParams.question = ''; |
||||
this.handleQuery(); |
||||
}, |
||||
|
||||
handleAdd(item) { |
||||
this.dialogVisible = true; |
||||
this.$nextTick(() => { |
||||
this.$refs.dialogForm.init(item); |
||||
}); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
Loading…
Reference in new issue