初始化地区合伙人

This commit is contained in:
wangxiaowei
2026-03-10 14:22:40 +08:00
commit 4304624e92
599 changed files with 42117 additions and 0 deletions

View File

@ -0,0 +1,198 @@
<template>
<div>
<el-card class="!border-none mb-4" shadow="never">
<el-form class="mb-[-16px]" :model="queryParams" inline>
<el-form-item label="门店名称" prop="name">
<el-input class="w-[280px]" v-model="queryParams.name" clearable placeholder="请输入门店名称" />
</el-form-item>
<!-- <el-form-item label="星级" prop="star">
<el-input class="w-[280px]" v-model="queryParams.star" clearable placeholder="请输入星级" />
</el-form-item> -->
<el-form-item class="w-[280px]" label="门店类型" prop="operation_type">
<el-select v-model="queryParams.operation_type" clearable placeholder="请选择门店类型">
<el-option label="全部" value=""></el-option>
<el-option v-for="(item, index) in dictData.operation_type" :key="index" :label="item.name"
:value="item.value" />
</el-select>
</el-form-item>
<el-form-item label="联系电话" prop="contact_phone">
<el-input class="w-[280px]" v-model="queryParams.contact_phone" clearable placeholder="请输入联系电话" />
</el-form-item>
<!-- <el-form-item label="详细地址" prop="address">
<el-input class="w-[280px]" v-model="queryParams.address" clearable placeholder="请输入详细地址" />
</el-form-item> -->
<el-form-item>
<el-button type="primary" @click="resetPage">查询</el-button>
<el-button @click="resetParams">重置</el-button>
</el-form-item>
</el-form>
</el-card>
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
<el-button v-perms="['tea_store/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
新增
</el-button>
<el-button v-perms="['tea_store/delete']" :disabled="!selectData.length" @click="handleDelete(selectData)">
删除
</el-button>
<div class="mt-4">
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" />
<el-table-column label="名称" prop="name" show-overflow-tooltip />
<el-table-column label="图片" prop="image">
<template #default="{ row }">
<el-image style="width:50px;height:50px;" :src="row.image" />
</template>
</el-table-column>
<el-table-column label="门店类型" prop="operation_type">
<template #default="{ row }">
<dict-value :options="dictData.operation_type" :value="row.operation_type" />
</template>
</el-table-column>
<el-table-column label="店铺状态" prop="status">
<template #default="{ row }">
<span>{{ row.status == 1 ? '上架' : '下架' }}</span>
</template>
</el-table-column>
<el-table-column label="营业开始时间" prop="start_time" show-overflow-tooltip />
<el-table-column label="营业结束时间" prop="end_time" show-overflow-tooltip />
<el-table-column label="联系电话" prop="contact_phone" show-overflow-tooltip />
<el-table-column label="累计提现" prop="total_reflect_amount" show-overflow-tooltip />
<el-table-column label="累计额度" prop="total_amount" show-overflow-tooltip />
<el-table-column label="门店余额" prop="balance" show-overflow-tooltip />
<el-table-column label="操作" width="200" fixed="right">
<template #default="{ row }">
<div v-if="row.operation_type == 1">
<el-button v-perms="['tea_room/lists']" type="primary" link>
<router-link :to="{
path: getRoutePath('tea_room/lists'),
query: {
id: row.id
}
}">
包间
</router-link>
</el-button>
<!--
<el-button type="primary" link>
<router-link :to="{
path: getRoutePath('tea_room/lists'),
query: {
id: row.id
}
}">
包间
</router-link>
</el-button> -->
</div>
<div class="flex items-center">
<el-button v-perms="['tea_store/license']" type="primary" link @click="handleSee(row)">
资质
</el-button>
<el-button v-perms="['tea_store/edit']" type="primary" link @click="handleEdit(row)">
编辑
</el-button>
<el-button v-perms="['tea_store/delete']" type="danger" link
@click="handleDelete(row.id)">
删除
</el-button>
</div>
</template>
</el-table-column>
</el-table>
</div>
<div class="flex mt-4 justify-end">
<pagination v-model="pager" @change="getLists" />
</div>
</el-card>
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
<license-popup v-if="showLicense" ref="licenseRef" @close="showLicense = false" />
</div>
</template>
<script lang="ts" setup name="teaStoreLists">
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
import { apiTeaStoreLists, apiTeaStoreDelete } from '@/api/tea_store'
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
import EditPopup from './edit.vue'
import LicensePopup from './license.vue'
import { useDictOptions } from '@/hooks/useDictOptions'
import { getRoutePath } from '@/router'
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
// 是否显示编辑框
const showEdit = ref(false)
const licenseRef = shallowRef<InstanceType<typeof LicensePopup>>()
// 是否显示编辑框
const showLicense = ref(false)
// 查询条件
const queryParams = reactive({
name: '',
star: '',
operation_type: '',
contact_phone: '',
address: '',
})
// 选中数据
const selectData = ref<any[]>([])
// 表格选择后回调事件
const handleSelectionChange = (val: any[]) => {
selectData.value = val.map(({ id }) => id)
}
// 获取字典数据
const { dictData } = useDictData('operation_type')
console.log("🚀 ~ dictData:", dictData)
// 分页相关
const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: apiTeaStoreLists,
params: queryParams
})
// 添加
const handleAdd = async () => {
showEdit.value = true
await nextTick()
editRef.value?.open('add')
}
// 编辑
const handleEdit = async (data: any) => {
showEdit.value = true
await nextTick()
editRef.value?.open('edit')
editRef.value?.setFormData(data)
}
// 删除
const handleDelete = async (id: number | any[]) => {
await feedback.confirm('确定要删除?')
await apiTeaStoreDelete({ id })
getLists()
}
// 查看资质
const handleSee = async (data: any) => {
showLicense.value = true
await nextTick()
console.log("🚀 ~ data:", 123)
licenseRef.value?.open('see')
licenseRef.value?.setFormData(data)
}
getLists()
</script>