123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- <template>
- <div class="mine">
- <div class="condition">
- <el-date-picker
- v-model="dates"
- type="daterange"
- range-separator="->"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- <el-input placeholder="请输入项目" class="search" v-model="product">
- <i slot="prefix" class="el-input__icon el-icon-search"></i>
- </el-input>
- <el-input placeholder="请输入优惠券" class="search" v-model="coupon">
- <i slot="prefix" class="el-input__icon el-icon-search"></i>
- </el-input>
- <el-input placeholder="请输入内容" class="search" v-model="searchText">
- <i slot="prefix" class="el-input__icon el-icon-search"></i>
- </el-input>
- <el-button type="primary" class="searchButton" @click="getOrderList()"
- >搜索</el-button
- >
- </div>
- <div class="user-list">
- <el-table
- ref="multipleTable"
- :data="tableData"
- tooltip-effect="dark"
- height="500"
- style="width: 100%; border-radius: 8px"
- @row-click="handleSelectionChange"
- >
- <el-table-column label="头像" width="120">
- <template slot-scope="scope">
- <div @click.stop="goUserDetail(scope.row)" class="head-img">
- <img :src="scope.row.avatar_url" alt />
- </div>
- </template>
- </el-table-column>
- <el-table-column
- prop="user_id"
- label="用户ID"
- width="80"
- ></el-table-column>
- <el-table-column
- prop="real_name"
- label="真实姓名"
- width="100"
- ></el-table-column>
- <el-table-column
- prop="nickname"
- label="昵称"
- width="120"
- ></el-table-column>
- <el-table-column
- prop="mobile"
- label="联系电话"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- prop="order_time"
- label="预约时间"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column prop="date" label="状态" show-overflow-tooltip>
- <template slot-scope="scope">
- <div
- :style="
- scope.row.status == 0
- ? 'color: #FC3019'
- : scope.row.status == 5
- ? 'color: #A999EA'
- : 'color: #61D09D;'
- "
- >
- {{
- scope.row.status == 0
- ? "未支付"
- : scope.row.status == 5
- ? "已取消"
- : scope.row.status == 1
- ? "待使用"
- : scope.row.status == 2
- ? "正在使用"
- : scope.row.status == 3
- ? "已结算"
- : ""
- }}
- </div>
- </template>
- </el-table-column>
- <el-table-column
- width="80"
- prop="realname"
- label="美容师"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- class="amendTop"
- width="140"
- prop=""
- label="分配"
- show-overflow-tooltip
- v-if="level == 10"
- >
- <template slot-scope="scope">
- <el-dropdown
- @command="(command) => selectType(command, scope.$index)"
- trigger="click"
- >
- <el-button @click.stop type="primary" class="amend" size="mini">
- 分配
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item
- v-for="(item, index) in nameList"
- :key="index"
- :command="item.realname"
- >{{ item.realname }}</el-dropdown-item
- >
- </el-dropdown-menu>
- </el-dropdown>
- </template>
- </el-table-column>
- </el-table>
- <div class="pagin">
- <el-pagination
- background
- layout="prev, pager, next"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page.sync="currentPage1"
- :total="total"
- ></el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script>
- import api from "../../server/home";
- export default {
- components: {},
- data() {
- return {
- searchText: "",
- dates: "",
- coupon: "",
- limit: 10,
- total: 0,
- product: "",
- coupon: "",
- couponList: [
- {
- value: "选项1",
- label: "黄金糕",
- },
- {
- value: "选项2",
- label: "双皮奶",
- },
- ],
- tableData: [
- {
- date: "2022.04.25 14:30",
- name: "滴滴滴",
- headImg:
- "https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/home/unpaid.png",
- phone: "13346783645",
- status: "已完成",
- },
- {
- date: "2022.04.25 14:30",
- name: "滴滴滴",
- headImg:
- "https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/home/unpaid.png",
- phone: "13346783645",
- status: "已完成",
- },
- ],
- currentPage1: 1,
- multipleSelection: "",
- nameList: "", //员工列表
- level: "",
- };
- },
- computed: {},
- watch: {},
- methods: {
- // 跳入用户详情
- goUserDetail(e) {
- console.log(e);
- this.$router.push({
- path: "/customerMan/details",
- query: {
- id: e.user_id,
- },
- });
- },
- // 分配美容师
- selectType(type, index) {
- // 给表单添加美容师
- this.$set(this.tableData[index], ["realname"], type);
- let user_id = "";
- this.nameList.map((item) => {
- if (item.realname == type) {
- user_id = item.id;
- }
- });
- let order_id = this.tableData[index].id;
- let params = {
- user_id,
- type: 1, //1项目 2次卡 3美妆产品 4充值
- order_id,
- };
- // 店长分配
- api.orderAllocation(params).then((res) => {
- if (res.code == 200) {
- }
- });
- },
- // 获取订单列表
- getOrderList() {
- let start_date = "",
- end_date = "";
- if (this.dates && this.dates.length > 0) {
- start_date = utils.formatTime(this.dates[0], "yyyy-MM-dd");
- end_date = utils.formatTime(this.dates[1], "yyyy-MM-dd");
- }
- let params = {
- page: this.currentPage1,
- limit: this.limit,
- keywords: this.searchText,
- project_name: this.product,
- coupon_name: this.coupon,
- start_date: start_date,
- end_date: end_date,
- };
- api.getOrderList(params).then((res) => {
- if (res.code == 200) {
- // 将用户手机号中间四位变成****
- res.data.list.map((item) => {
- item.mobile =
- item.mobile.substring(0, 3) + "****" + item.mobile.substring(7);
- });
- this.tableData = res.data.list;
- this.total = res.data.total;
- }
- });
- },
- handleCurrentChange(e) {
- this.currentPage1 = e;
- this.getOrderList();
- },
- handleSizeChange(val) {},
- handleSelectionChange(row, column, event) {
- this.$router.push({
- path: "/historicalOrder/details",
- query: {
- id: row.id,
- },
- });
- },
- // 获取美容师列表
- getStaffList() {
- api.getStaffList().then((res) => {
- if (res.code == 200) {
- this.nameList = res.data;
- }
- });
- },
- },
- created() {
- this.level = localStorage.getItem("level");
- this.getOrderList();
- // 获取员工列表
- this.getStaffList();
- },
- mounted() {},
- };
- </script>
- <style lang='less' scoped>
- .mine {
- .condition {
- display: flex;
- .coupon-select {
- width: 174px;
- margin-left: 18px;
- }
- .search {
- width: 152px;
- margin-left: 18px;
- }
- .searchButton {
- margin-left: 18px;
- width: 68px;
- background: #fa7d22;
- border-radius: 2px;
- border-color: #fa7d22;
- }
- }
- .user-list {
- margin-top: 18px;
- padding: 0 12px;
- width: 100%;
- background: #ffffff;
- box-shadow: 0px 2px 4px 0px rgba(184, 191, 198, 0.2);
- border-radius: 8px;
- .head-img {
- width: 36px;
- height: 36px;
- border-radius: 50%;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .pagin {
- padding: 20px 0;
- .el-pagination {
- text-align: center;
- }
- }
- /deep/ .el-table th > .cell {
- font-size: 14px !important;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 20px;
- }
- /deep/ .el-table td,
- .el-table th.is-leaf {
- border-bottom: none;
- }
- .amend {
- background-color: #fa7d22;
- color: white;
- font-size: 14px;
- border: #fa7d22;
- }
- /deep/ th.el-table_1_column_7.is-leaf.el-table__cell {
- text-align: center;
- }
- /deep/ td.el-table_1_column_7.el-table__cell {
- text-align: center;
- }
- }
- .color0 {
- color: #fc3019;
- }
- .color1 {
- color: #3ef3ed;
- }
- .color2 {
- color: #00eeee;
- }
- .color3 {
- color: #61d09d;
- }
- .color4 {
- color: #3115cc;
- }
- .color5 {
- color: #fc3019;
- }
- .color6 {
- color: #a999ea;
- }
- }
- </style>
|