fix: 商品列表去除不用代码,增加额外传参,退出登录清除用户信息,数据统计增加新增会员数字段
This commit is contained in:
parent
7d0f2a6042
commit
d0e4cabd07
|
|
@ -114,6 +114,9 @@ export const useUserStore = defineStore("user", () => {
|
|||
*/
|
||||
function clearUserData() {
|
||||
return new Promise<void>((resolve) => {
|
||||
userInfo.value = {} as UserInfo
|
||||
meituan_douyin_info.value = {}
|
||||
isShopAdmin.value = false
|
||||
clearToken();
|
||||
usePermissionStoreHook().resetRouter();
|
||||
useDictStoreHook().clearDictionaryCache();
|
||||
|
|
|
|||
|
|
@ -359,7 +359,7 @@ export default {
|
|||
background-color: #fff;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: $size / 2 * -1;
|
||||
right: calc($size / 2 * - 1);
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -214,7 +214,7 @@
|
|||
<div class="data_item_right">
|
||||
<div class="t">
|
||||
<span>新增会员数</span>
|
||||
<span class="n">{{ 0 }}(人)</span>
|
||||
<span class="n">{{ trade.newMemberCoun || 0 }}(人)</span>
|
||||
</div>
|
||||
<div class="t">
|
||||
<span>会员消费笔数</span>
|
||||
|
|
|
|||
|
|
@ -1,75 +1,88 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
<!-- 列表 -->
|
||||
<template v-if="isA">
|
||||
<!-- 搜索 -->
|
||||
<page-search ref="searchRef" :search-config="searchConfig" @query-click="handleQueryClick"
|
||||
@reset-click="handleResetClick" />
|
||||
<!-- 顶部数据 -->
|
||||
<Statistics></Statistics>
|
||||
<!-- 列表 -->
|
||||
<page-content ref="contentRef" :content-config="contentConfig" @add-click="handleAddClick"
|
||||
@edit-click="handleEditClick" @export-click="handleExportClick" @search-click="handleSearchClick"
|
||||
@toolbar-click="handleToolbarClick" @operat-click="handleOperatClick" @filter-change="handleFilterChange">
|
||||
<!-- <template #status="scope">
|
||||
<!-- 搜索 -->
|
||||
<page-search
|
||||
ref="searchRef"
|
||||
:search-config="searchConfig"
|
||||
@query-click="handleQueryClick"
|
||||
@reset-click="handleResetClick"
|
||||
/>
|
||||
<!-- 顶部数据 -->
|
||||
<Statistics></Statistics>
|
||||
<!-- 列表 -->
|
||||
<page-content
|
||||
ref="contentRef"
|
||||
:content-config="contentConfig"
|
||||
@add-click="handleAddClick"
|
||||
@edit-click="handleEditClick"
|
||||
@export-click="handleExportClick"
|
||||
@search-click="handleSearchClick"
|
||||
@toolbar-click="handleToolbarClick"
|
||||
@operat-click="handleOperatClick"
|
||||
@filter-change="handleFilterChange"
|
||||
>
|
||||
<!-- <template #status="scope">
|
||||
<el-tag :type="scope.row[scope.prop] == 1 ? 'success' : 'info'">
|
||||
{{ scope.row[scope.prop] == 1 ? "启用" : "禁用" }}
|
||||
</el-tag>
|
||||
</template> -->
|
||||
<template #type="scope">
|
||||
{{ typeFilter(scope.row[scope.prop]) }}
|
||||
</template>
|
||||
<template #gender="scope">
|
||||
<DictLabel v-model="scope.row[scope.prop]" code="gender" />
|
||||
</template>
|
||||
<template #shangjia="scope">
|
||||
<el-switch v-model="scope.row[scope.prop]" :active-value="1" :inactive-value="0"
|
||||
@click="handleSwitchChange(scope.row)"></el-switch>
|
||||
</template>
|
||||
<template #mobile="scope">
|
||||
<el-text>{{ scope.row[scope.prop] }}</el-text>
|
||||
<copy-button v-if="scope.row[scope.prop]" :text="scope.row[scope.prop]" style="margin-left: 2px" />
|
||||
</template>
|
||||
</page-content>
|
||||
<template #type="scope">
|
||||
{{ typeFilter(scope.row[scope.prop]) }}
|
||||
</template>
|
||||
<template #gender="scope">
|
||||
<DictLabel v-model="scope.row[scope.prop]" code="gender" />
|
||||
</template>
|
||||
<template #shangjia="scope">
|
||||
<el-switch
|
||||
v-model="scope.row[scope.prop]"
|
||||
:active-value="1"
|
||||
:inactive-value="0"
|
||||
@click="handleSwitchChange(scope.row)"
|
||||
></el-switch>
|
||||
</template>
|
||||
<template #mobile="scope">
|
||||
<el-text>{{ scope.row[scope.prop] }}</el-text>
|
||||
<copy-button
|
||||
v-if="scope.row[scope.prop]"
|
||||
:text="scope.row[scope.prop]"
|
||||
style="margin-left: 2px"
|
||||
/>
|
||||
</template>
|
||||
</page-content>
|
||||
|
||||
<!-- 新增 -->
|
||||
<page-modal ref="addModalRef" :modal-config="addModalConfig" @submit-click="handleSubmitClick">
|
||||
<template #gender="scope">
|
||||
<Dict v-model="scope.formData[scope.prop]" code="gender" />
|
||||
</template>
|
||||
</page-modal>
|
||||
<!-- 新增 -->
|
||||
<page-modal ref="addModalRef" :modal-config="addModalConfig" @submit-click="handleSubmitClick">
|
||||
<template #gender="scope">
|
||||
<Dict v-model="scope.formData[scope.prop]" code="gender" />
|
||||
</template>
|
||||
</page-modal>
|
||||
|
||||
<!-- 编辑 -->
|
||||
<page-modal ref="editModalRef" :modal-config="editModalConfig" @submit-click="handleSubmitClick">
|
||||
<template #gender="scope">
|
||||
<Dict v-model="scope.formData[scope.prop]" code="gender" v-bind="scope.attrs" />
|
||||
</template>
|
||||
</page-modal>
|
||||
<!-- 编辑 -->
|
||||
<page-modal
|
||||
ref="editModalRef"
|
||||
:modal-config="editModalConfig"
|
||||
@submit-click="handleSubmitClick"
|
||||
>
|
||||
<template #gender="scope">
|
||||
<Dict v-model="scope.formData[scope.prop]" code="gender" v-bind="scope.attrs" />
|
||||
</template>
|
||||
</page-modal>
|
||||
|
||||
<!-- 库存预警设置 -->
|
||||
<MyDialog ref="myDialogRef" @confirm="confirm" title="修改库存预警">
|
||||
<el-form :model="form">
|
||||
<el-form-item label="库存预警" label-width="">
|
||||
<el-input-number v-model="form.num" label="描述文字"></el-input-number>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</MyDialog>
|
||||
</template>
|
||||
<template v-else>
|
||||
<!-- <page-content ref="contentRef" :content-config="contentConfig2" @operat-click="handleOperatClick">
|
||||
<template #status="scope">
|
||||
<el-tag :type="scope.row[scope.prop] == 1 ? 'success' : 'info'">
|
||||
{{ scope.row[scope.prop] == 1 ? "启用" : "禁用" }}
|
||||
</el-tag>
|
||||
</template>
|
||||
</page-content> -->
|
||||
</template>
|
||||
<!-- 库存预警设置 -->
|
||||
<MyDialog ref="myDialogRef" @confirm="confirm" title="修改库存预警">
|
||||
<el-form :model="form">
|
||||
<el-form-item label="库存预警" label-width="">
|
||||
<el-input-number v-model="form.num" label="描述文字"></el-input-number>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</MyDialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import UserAPI from "@/api/product/index";
|
||||
import { useRouter } from 'vue-router';
|
||||
import { useRouter } from "vue-router";
|
||||
import type { IObject, IOperatData } from "@/components/CURD/types";
|
||||
import usePage from "@/components/CURD/usePage";
|
||||
import addModalConfig from "./indexconfig/add";
|
||||
|
|
@ -96,13 +109,13 @@ const {
|
|||
const router = useRouter();
|
||||
|
||||
const form = reactive({
|
||||
num: '',
|
||||
})
|
||||
num: "",
|
||||
});
|
||||
// 新增
|
||||
async function handleAddClick() {
|
||||
router.push({ name: 'addgoods' });
|
||||
router.push({ name: "addgoods" });
|
||||
// addModalRef.value?.setModalVisible();
|
||||
// 加载上级规格下拉数据源
|
||||
// 加载上级规格下拉数据源
|
||||
// addModalConfig.formItems[2]!.attrs!.data = await UserAPI.getPage({ name: "" });
|
||||
// 加载角色下拉数据源
|
||||
// addModalConfig.formItems[4]!.options = await RoleAPI.getOptions();
|
||||
|
|
@ -110,35 +123,41 @@ async function handleAddClick() {
|
|||
// 上架
|
||||
function handleSwitchChange(data: any) {
|
||||
let obj = {
|
||||
type: data.isGrounding ? 'sku' : 'product',
|
||||
type: data.isGrounding ? "sku" : "product",
|
||||
id: data.id,
|
||||
isSale: data.isSale
|
||||
}
|
||||
isSale: data.isSale,
|
||||
};
|
||||
UserAPI.onOff(obj);
|
||||
}
|
||||
// 编辑
|
||||
async function handleEditClick(row: IObject) {
|
||||
router.push({ name: 'addgoods', query: { goods_id: row.id } });
|
||||
router.push({ name: "addgoods", query: { goods_id: row.id } });
|
||||
}
|
||||
const myDialogRef = ref(null)
|
||||
const myDialogRef = ref(null);
|
||||
// 其他工具栏
|
||||
function handleToolbarClick(name: string) {
|
||||
console.log(name);
|
||||
if (name === "custom1") {
|
||||
// ElMessage.success("点击了自定义1按钮");
|
||||
myDialogRef.value.open()
|
||||
myDialogRef.value.open();
|
||||
}
|
||||
}
|
||||
function confirm() {
|
||||
console.log(form, 'debug')
|
||||
console.log(form, "debug");
|
||||
}
|
||||
// 商品规格
|
||||
function typeFilter(item: any) {
|
||||
if (item == 'single') { return '单规格' }
|
||||
else if (item == 'sku') { return '多规格' }
|
||||
else if (item == 'package') { return '套餐商品' }
|
||||
else if (item == 'weight') { return '称重商品' }
|
||||
else if (item == 'coupon') { return '团购券' }
|
||||
if (item == "single") {
|
||||
return "单规格";
|
||||
} else if (item == "sku") {
|
||||
return "多规格";
|
||||
} else if (item == "package") {
|
||||
return "套餐商品";
|
||||
} else if (item == "weight") {
|
||||
return "称重商品";
|
||||
} else if (item == "coupon") {
|
||||
return "团购券";
|
||||
}
|
||||
}
|
||||
// 其他操作列
|
||||
async function handleOperatClick(data: IOperatData) {
|
||||
|
|
@ -175,6 +194,11 @@ async function handleOperatClick(data: IOperatData) {
|
|||
}
|
||||
}
|
||||
|
||||
// 切换示例
|
||||
const isA = ref(true);
|
||||
const route = useRoute();
|
||||
onMounted(() => {
|
||||
console.log(route.query);
|
||||
if (route.query.id) {
|
||||
contentRef.value?.fetchPageData({ id: route.query.id });
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue