369 lines
16 KiB
Vue
Raw Normal View History

<template>
<div class="app-container">
<div v-show="show">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px" size="default" class="ry_form">
<el-form-item label="上架状态" prop="publishStatus">
2025-06-07 15:51:05 +08:00
<DictRadio v-model="queryParams.publishStatus" @change="handleQuery" size="small" radioData="pms_publish_status" :showAll="'all'" />
</el-form-item>
<el-form-item label="名称" prop="name">
2025-06-05 16:33:36 +08:00
<el-input v-model="queryParams.nameLike" placeholder="请输入商品名称" clearable size="small" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="品牌" prop="brandName">
2025-06-05 16:33:36 +08:00
<el-input v-model="queryParams.brandNameLike" placeholder="请输入品牌名称" clearable size="small" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="分类" prop="productCategoryName">
2025-06-07 15:51:05 +08:00
<el-input v-model="queryParams.productCategoryNameLike" placeholder="请输入分类名称" clearable size="small" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="编码" prop="outProductId">
2025-06-05 16:33:36 +08:00
<el-input v-model="queryParams.outProductId" placeholder="请输入商品编码" clearable size="small" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item class="flex_one tr">
<el-button type="primary" icon="Search" size="small" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" size="small" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="Plus" size="small" @click="handleAdd">新增</el-button>
</el-col>
</el-row>
2025-06-14 17:21:11 +08:00
<el-table v-loading="loading" :data="pmsProductList" border>
<!-- <el-table-column label="主图" prop="pic">
<template v-slot="{ row }">
<el-image v-if="row.pic" :src="row.pic" :preview-src-list="[row.pic]" class="small-img" />
</template>
2025-06-14 17:21:11 +08:00
</el-table-column>-->
<el-table-column label="店铺名称" min-width="200" prop="outProductId"> </el-table-column>
<el-table-column label="用户手机号" prop="outProductId"> </el-table-column>
<el-table-column label="配送方式" prop="outProductId"> </el-table-column>
<el-table-column label="商品名称" prop="outProductId"> </el-table-column>
<el-table-column label="商品描述" prop="outProductId"> </el-table-column>
<el-table-column label="商品类型" prop="outProductId"> </el-table-column>
<el-table-column label="商品分类" prop="outProductId"> </el-table-column>
<el-table-column label="商品封面图" prop="outProductId"> </el-table-column>
<el-table-column label="商品轮播图" prop="outProductId"> </el-table-column>
<el-table-column label="商品详情" prop="outProductId"> </el-table-column>
<el-table-column label="原价" prop="outProductId"> </el-table-column>
<el-table-column label="优惠金额" prop="outProductId"> </el-table-column>
<el-table-column label="销量" prop="outProductId"> </el-table-column>
<el-table-column label="商品状态" prop="outProductId">
<template v-slot="scope">
<el-switch
:model-value="scope.row.status"
:active-value="1"
:inactive-value="0"
active-text="上架"
inactive-text="下架"
inline-prompt
:before-change="
() => {
// return handleChangeUserStatus(scope.row);
}
"
>
</el-switch> </template
></el-table-column>
<el-table-column label="审核状态" prop="outProductId">
<template v-slot="scope">
<el-switch
:model-value="scope.row.status"
:active-value="1"
:inactive-value="0"
active-text="通过"
inactive-text="驳回"
inline-prompt
:before-change="
() => {
// return handleChangeUserStatus(scope.row);
}
"
>
</el-switch> </template
></el-table-column>
<!-- <el-table-column label="名称/编码" min-width="200" prop="outProductId">
<template v-slot="{ row }">
<div>名称{{ row.name }}</div>
<div v-if="row.outProductId">编码{{ row.outProductId }}</div>
</template>
</el-table-column>
<el-table-column label="品牌/分类" prop="brandName">
<template v-slot="{ row }">
<div v-if="row.brandName">品牌{{ row.brandName }}</div>
<div v-if="row.productCategoryName">分类{{ row.productCategoryName }}</div>
</template>
</el-table-column>
<el-table-column label="价格/排序" prop="price">
<template v-slot="{ row }">
<div v-if="row.price">价格{{ row.price }}</div>
<div v-if="row.sort">排序{{ row.sort }}</div>
</template>
</el-table-column>
<el-table-column label="上架状态" prop="publishStatus">
<template v-slot="{ row }">
2025-06-14 17:21:11 +08:00
<dict-tag :value="row.publishStatus" prop-name="pms_publish_status" />
</template>
2025-06-14 17:21:11 +08:00
</el-table-column>-->
<el-table-column label="操作" class-name="small-padding fixed-width">
2025-06-14 17:21:11 +08:00
<!-- <template v-slot="scope">
<el-button size="small" type="text" icon="Edit" @click="handleUpdate(scope.row)">修改 </el-button>
<el-button size="small" type="text" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
2025-06-14 17:21:11 +08:00
</template>-->
<template v-slot="scope">
2025-06-16 15:00:20 +08:00
<el-button size="small" type="text" @click="showProductEditModal(scope.row)">编辑</el-button>
2025-06-14 17:21:11 +08:00
<!-- <el-button size="small" type="text">余额变更记录 </el-button>
<el-button size="small" type="text">开通易生支付 </el-button>
<el-button size="small" type="text" @click="showUserLoginInfoModal(scope.row, true)">登录记录 </el-button>
<el-button size="small" type="text">操作日志 </el-button>
<el-button size="small" type="text">封禁记录 </el-button>-->
<!-- <el-button size="small" type="text" @click="showStatistics(scope.row.id)" v-hasPermi="['ums:member:statistics']">查看数据 </el-button>
<el-button size="small" type="text" @click="goOrder(scope.row.phoneEncrypted)">查看下单</el-button>
<el-button size="small" type="text" @click="goCart(scope.row.phoneEncrypted)">查看购物车</el-button>-->
</template>
</el-table-column>
</el-table>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
2025-06-16 15:00:20 +08:00
<!--编辑会员基础信息-->
<el-dialog title="编辑商品详情" v-model="productModalInfo.open" width="600px" append-to-body>
<el-form label-width="auto" :rules="productEditRules" :model="productModalInfo.data" ref="editForm" size="default">
<el-form-item label="昵称" prop="nickname">
<el-input v-model.trim="productModalInfo.data.nickname" placeholder="请输入会员昵称" size="small" />
</el-form-item>
<el-form-item label="密码" prop="password">
<el-input v-model.trim="productModalInfo.data.password" placeholder="请输入会员密码" size="small" />
</el-form-item>
<el-form-item label="手机号" prop="phone">
<el-input v-model.trim="productModalInfo.data.phone" placeholder="请输入会员手机号" size="small" />
</el-form-item>
<el-form-item label="备注" prop="mark">
<el-input v-model.trim="productModalInfo.data.mark" placeholder="请输入备注" size="small" />
</el-form-item>
<el-form-item label="状态" prop="status">
<el-switch
:active-value="1"
:inactive-value="0"
active-text="启用"
inactive-text="禁用"
inline-prompt
v-model="productModalInfo.data.status"
/>
</el-form-item>
<el-form-item label="头像" prop="avatar">
<!-- 暂时先用输入框组件后续OSS上传功能好了迁移到上传upload组件-->
<el-input v-model.trim="productModalInfo.data.avatar" placeholder="请输入头像" size="small" />
</el-form-item>
<el-form-item label="性别" prop="gender">
<DictRadio v-model="productModalInfo.data.gender" radioData="sys_user_sex" size="small" :show-all="'all'" />
</el-form-item>
<el-form-item label="地址" prop="address">
<AddressSelector v-model="productModalInfo.data.fullArea" style="width: 100%" />
</el-form-item>
<el-form-item label="生日" prop="birthday">
<el-input v-model.trim="productModalInfo.data.birthday" placeholder="请选择生日" size="small" />
</el-form-item>
<el-form-item label="用户等级" prop="level">
<el-input v-model.trim="productModalInfo.data.level" placeholder="请输入用户等级" size="small" />
</el-form-item>
<el-form-item label="剩余积分" prop="integral">
<el-input v-model.trim="productModalInfo.data.integral" placeholder="请输入剩余积分" size="small" />
</el-form-item>
<el-row>
<el-col :span="12"> </el-col>
<el-col :span="12">
<el-button type="danger" @click="closeEditProduct">关闭</el-button>
<el-button type="primary" @click="submitEditProduct">保存</el-button>
</el-col>
</el-row>
</el-form>
</el-dialog>
</div>
<!-- <SeeAdsComponent ref="seeAdsComponentRef" v-if="!show" @confirmOk="confirmOk"/>-->
</div>
</template>
<script>
import { delPmsProduct, listPmsProduct } from '@/api/pms/product';
import { isStarRepo } from '@/utils/is-star-plugin';
import { useUserStore } from '@/store/modules/user';
2025-06-16 15:00:20 +08:00
import AddressSelector from '@/views/components/AddressSelector/index.vue';
import { editUserData } from '@/api/ums/member.js';
export default {
name: 'PmsProduct',
2025-06-16 15:00:20 +08:00
components: { AddressSelector },
dicts: ['pms_publish_status'],
data() {
return {
show: true,
// 遮罩层
loading: true,
// 导出遮罩层
exportLoading: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 商品信息表格数据
pmsProductList: [],
2025-06-16 15:00:20 +08:00
productModalInfo: {
open: false,
data: {}
},
productEditRules: {
nickname: [{ required: true, message: '昵称不能为空', trigger: 'blur' }],
/*password: [{ required: true, message: '密码不能为空', trigger: 'blur' }],*/
/* address: [{ required: true, message: '地址不能为空', trigger: 'change' }],*/
/* avatar: [{ required: true, message: '头像不能为空', trigger: 'change' }],*/
/* gendor: [{ required: true, message: '性别不能为空', trigger: 'change' }],*/
birthday: [{ required: true, message: '生日不能为空', trigger: 'change' }],
level: [{ required: true, message: '用户等级不能为空', trigger: 'blur' }],
integral: [{ required: true, message: '积分不能为空', trigger: 'blur' }],
/* email: [{ type: 'email', message: '请输入正确的邮箱地址', trigger: ['blur', 'change'] }],*/
phone: [{ required: true, pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, message: '请输入正确的手机号码', trigger: 'blur' }]
},
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
brandId: null,
categoryId: null,
outProductId: null,
name: null,
pic: null,
albumPics: null,
publishStatus: null,
sort: null,
price: null,
unit: null,
weight: null,
detailHtml: null,
detailMobileHtml: null,
brandName: null,
productCategoryName: null
}
};
},
created() {
this.getList();
},
computed: {
userId: {
get() {
return useUserStore().userId;
}
}
},
methods: {
2025-06-16 15:00:20 +08:00
submitEditProduct() {
this.$refs['editForm'].validate((valid) => {
if (valid) {
const { fullArea } = this.userAccountEditModal.data || {};
const params = {
...this.userAccountEditModal.data
};
if (fullArea && fullArea.length) {
const [province = '', city = '', district = ''] = fullArea;
params.province = province;
params.city = city;
params.district = district;
}
editUserData(params).then((response) => {
this.$modal.msgSuccess('修改成功');
this.closeEditUser();
this.getList();
});
}
});
},
closeEditProduct() {
this.productModalInfo = {
open: false,
data: {}
};
},
// 编辑商品详情弹框
showProductEditModal(record) {
this.productModalInfo = {
data: { ...record, gender: String(record.gender) } || {},
open: true
};
},
async confirmOk(success) {
if (success) {
const res = await isStarRepo(
'zccbbg',
'RuoYi-Mall',
this.userId,
'https://mall.ichengle.top/pms/product',
'ruoyi-mall-商城',
'https://gitee.com/zccbbg/RuoYi-Mall'
);
this.show = res;
if (res) {
this.getList();
}
}
},
/** 查询商品信息列表 */
getList() {
this.loading = true;
const { pageNum, pageSize } = this.queryParams;
const query = { ...this.queryParams, pageNum: undefined, pageSize: undefined };
const pageReq = { current: pageNum - 1, size: pageSize };
listPmsProduct(query, pageReq).then((response) => {
const { records, total } = response.data || {};
this.pmsProductList = records;
this.total = total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm('queryForm');
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.$router.push({ path: '/product/edit' });
},
/** 修改按钮操作 */
handleUpdate(row) {
this.$router.push({ path: '/product/edit', query: { id: row.id } });
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal
.confirm('是否确认删除商品信息编号为"' + ids + '"的数据项?')
.then(function () {
return delPmsProduct(ids);
})
.then(() => {
this.getList();
this.$modal.msgSuccess('删除成功');
})
.catch(() => {});
}
}
};
</script>