|
@@ -0,0 +1,157 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <!-- 查询和其他操作 -->
|
|
|
|
+ <div class="filter-container">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="listQuery.phone" clearable size="mini" class="filter-item"
|
|
|
|
+ style="width: 200px;" placeholder="请输入会员手机号码"
|
|
|
|
+ />
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="listQuery.superiorPhone" clearable size="mini" class="filter-item"
|
|
|
|
+ style="width: 200px;margin-left: 10px;" placeholder="请输入绑定上级手机号码"
|
|
|
|
+ />
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini" class="filter-item" type="primary" icon="el-icon-search"
|
|
|
|
+ style="margin-left:10px;"
|
|
|
|
+ @click="handleSearch"
|
|
|
|
+ >
|
|
|
|
+ 查找
|
|
|
|
+ </el-button>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!-- 查询结果 -->
|
|
|
|
+ <div v-tableHeight>
|
|
|
|
+ <el-table
|
|
|
|
+ v-loading="listLoading" height="100%" element-loading-text="正在查询中。。。" :data="list"
|
|
|
|
+ v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
|
|
|
|
+ >
|
|
|
|
+ <el-table-column align="center" width="100" label="ID" prop="relationshipLogId" fixed="left" />
|
|
|
|
+ <el-table-column align="center" width="100" label="用户ID" prop="buyerUserId" fixed="left" show-overflow-tooltip />
|
|
|
|
+ <el-table-column align="center" width="150" label="会员手机号码" prop="phone" show-overflow-tooltip />
|
|
|
|
+ <el-table-column align="center" label="会员身份" prop="identity">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <el-tag v-if="row.identity === 1" effect="plain">会员</el-tag>
|
|
|
|
+ <el-tag v-else-if="row.identity === 2" effect="plain">团长</el-tag>
|
|
|
|
+ <el-tag v-else-if="row.identity === 3" effect="plain">合伙人</el-tag>
|
|
|
|
+ <span v-else>--</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" label="操作类型" prop="operateType">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <el-tag v-if="row.operateType === 1" effect="plain">扫码绑定</el-tag>
|
|
|
|
+ <el-tag v-else-if="row.operateType === 2" effect="plain">升级团长</el-tag>
|
|
|
|
+ <el-tag v-else-if="row.operateType === 3" effect="plain">升级合伙人</el-tag>
|
|
|
|
+ <span v-else>--</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" width="100" label="绑定上级ID" prop="superiorUserId" show-overflow-tooltip />
|
|
|
|
+ <el-table-column align="center" width="150" label="绑定上级手机号码" prop="superiorPhone" show-overflow-tooltip />
|
|
|
|
+ <el-table-column align="center" label="绑定上级身份" prop="superiorIdentity">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <el-tag v-if="row.superiorIdentity === 1" effect="plain">会员</el-tag>
|
|
|
|
+ <el-tag v-else-if="row.superiorIdentity === 2" effect="plain">团长</el-tag>
|
|
|
|
+ <el-tag v-else-if="row.superiorIdentity === 3" effect="plain">合伙人</el-tag>
|
|
|
|
+ <span v-else>--</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" min-width="150" label="操作详情" prop="operateDetail" show-overflow-tooltip />
|
|
|
|
+ <el-table-column align="center" width="150" label="操作时间" prop="operateTime" />
|
|
|
|
+ <el-table-column align="center" label="操作" width="220" fixed="right" class-name="small-padding fixed-width">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <el-button type="warning" size="mini" @click="handleDetail(row)">
|
|
|
|
+ 详情
|
|
|
|
+ </el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div>
|
|
|
|
+ <el-pagination
|
|
|
|
+ :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="listQuery.pageSize"
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="total"
|
|
|
|
+ @size-change="(val) => ((listQuery.pageSize = val) && getList())"
|
|
|
|
+ @current-change="(val) => ((listQuery.page = val) && getList())"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!-- 查看详情 -->
|
|
|
|
+ <DetailModal ref="DetailModal" />
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import DetailModal from './components/DetailModal'
|
|
|
|
+import { getAllRelationshipLog } from '@/api/relationshipChainManagement/upgradeLog'
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: 'UpgradeLog',
|
|
|
|
+ components: {
|
|
|
|
+ DetailModal
|
|
|
|
+ },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ list: [],
|
|
|
|
+ total: 0,
|
|
|
|
+ listLoading: true,
|
|
|
|
+ listQuery: {
|
|
|
|
+ page: 1,
|
|
|
|
+ pageSize: 20,
|
|
|
|
+ phone: '',
|
|
|
|
+ superiorPhone: ''
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.getList()
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ async getList() {
|
|
|
|
+ this.listLoading = true
|
|
|
|
+ try {
|
|
|
|
+ const res = await getAllRelationshipLog(this.listQuery)
|
|
|
|
+ this.list = res.data.list
|
|
|
|
+ this.total = res.data.total
|
|
|
|
+ } finally {
|
|
|
|
+ this.listLoading = false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ handleSearch() {
|
|
|
|
+ this.listQuery.page = 1
|
|
|
|
+ this.getList()
|
|
|
|
+ },
|
|
|
|
+ handleDetail(row) {
|
|
|
|
+ this.$refs.DetailModal && this.$refs.DetailModal.handleOpen(row)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.app-container {
|
|
|
|
+ padding: 20px;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+
|
|
|
|
+ .filter-container {
|
|
|
|
+ .filter-item {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+ margin-bottom: 10px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .small-padding {
|
|
|
|
+ .cell {
|
|
|
|
+ padding-left: 5px;
|
|
|
|
+ padding-right: 5px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .fixed-width {
|
|
|
|
+ .el-button--mini {
|
|
|
|
+ padding: 7px 10px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</style>
|