修复:图形验证码大写不识别

修复:按商户ID查询订单、商品、分类等
This commit is contained in:
2024-09-23 01:45:42 +08:00
parent 625568eb41
commit c0328fa23e
22 changed files with 28 additions and 1894 deletions

View File

@@ -120,6 +120,7 @@
specId: undefined,
specName: undefined,
specValue: undefined,
merchantId: undefined,
status: 0,
comments: '',
sortNumber: 100

View File

@@ -81,6 +81,7 @@
import SpecEdit from './components/specEdit.vue';
import { pageSpec, removeSpec, removeBatchSpec } from '@/api/shop/spec';
import type { Spec, SpecParam } from '@/api/shop/spec/model';
import { getMerchantId } from "@/utils/merchant";
// 表格实例
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
@@ -107,6 +108,7 @@
if (filters) {
where.status = filters.status;
}
where.merchantId = getMerchantId();
return pageSpec({
...where,
...orders,