diff --git a/.env.development b/.env.development
index bd0a84a..2f2d385 100644
--- a/.env.development
+++ b/.env.development
@@ -6,13 +6,13 @@ VITE_PUBLIC_PATH = /
# 跨域代理,您可以配置多个 ,请注意,没有换行符
-VITE_PROXY = [["/jeecgboot","http://localhost:8080/jeecg-boot"],["/upload","http://localhost:3300/upload"]]
+VITE_PROXY = [["/contract","http://localhost:8080/contract"],["/upload","http://localhost:3300/upload"]]
#后台接口全路径地址(必填)
-VITE_GLOB_DOMAIN_URL=http://localhost:8080/jeecg-boot
+VITE_GLOB_DOMAIN_URL=http://localhost:8080/contract
#后台接口父地址(必填)
-VITE_GLOB_API_URL=/jeecgboot
+VITE_GLOB_API_URL=/contract
# 接口前缀
VITE_GLOB_API_URL_PREFIX=
diff --git a/.env.production b/.env.production
index 02c5afb..4288172 100644
--- a/.env.production
+++ b/.env.production
@@ -13,10 +13,10 @@ VITE_BUILD_COMPRESS = 'gzip'
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
#后台接口父地址(必填)
-VITE_GLOB_API_URL=/jeecgboot
+VITE_GLOB_API_URL=/contract
#后台接口全路径地址(必填)
-VITE_GLOB_DOMAIN_URL=http://jeecg-boot-system:8080/jeecg-boot
+VITE_GLOB_DOMAIN_URL=https://gpt.aiym.run/contract
# 接口父路径前缀
VITE_GLOB_API_URL_PREFIX=
diff --git a/mock/_util.ts b/mock/_util.ts
index 6a171d5..625a977 100644
--- a/mock/_util.ts
+++ b/mock/_util.ts
@@ -60,4 +60,4 @@ export function getRequestToken({ headers }: requestParams): string | undefined
}
//TODO 接口父路径(写死不够灵活)
-export const baseUrl = '/jeecgboot/mock';
+export const baseUrl = '/contract/mock';
diff --git a/src/views/miniapp/appbanner/AppBanner.api.ts b/src/views/miniapp/appbanner/AppBanner.api.ts
new file mode 100644
index 0000000..c8f403b
--- /dev/null
+++ b/src/views/miniapp/appbanner/AppBanner.api.ts
@@ -0,0 +1,63 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from '/@/hooks/web/useMessage';
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/appbanner/appBanner/list',
+ save = '/appbanner/appBanner/add',
+ edit = '/appbanner/appBanner/edit',
+ deleteOne = '/appbanner/appBanner/delete',
+ deleteBatch = '/appbanner/appBanner/deleteBatch',
+ importExcel = '/appbanner/appBanner/importExcel',
+ exportXls = '/appbanner/appBanner/exportXls',
+}
+/**
+ * 导出api
+ * @param params
+ */
+export const getExportUrl = Api.exportXls;
+/**
+ * 导入api
+ */
+export const getImportUrl = Api.importExcel;
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) => defHttp.get({ url: Api.list, params });
+
+/**
+ * 删除单个
+ */
+export const deleteOne = (params, handleSuccess) => {
+ return defHttp.delete({ url: Api.deleteOne, params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+};
+/**
+ * 批量删除
+ * @param params
+ */
+export const batchDelete = (params, handleSuccess) => {
+ createConfirm({
+ iconType: 'warning',
+ title: '确认删除',
+ content: '是否删除选中数据',
+ okText: '确认',
+ cancelText: '取消',
+ onOk: () => {
+ return defHttp.delete({ url: Api.deleteBatch, data: params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+ },
+ });
+};
+/**
+ * 保存或者更新
+ * @param params
+ */
+export const saveOrUpdate = (params, isUpdate) => {
+ const url = isUpdate ? Api.edit : Api.save;
+ return defHttp.post({ url: url, params });
+};
diff --git a/src/views/miniapp/appbanner/AppBanner.data.ts b/src/views/miniapp/appbanner/AppBanner.data.ts
new file mode 100644
index 0000000..62f25e2
--- /dev/null
+++ b/src/views/miniapp/appbanner/AppBanner.data.ts
@@ -0,0 +1,197 @@
+import { BasicColumn } from '/@/components/Table';
+import { FormSchema } from '/@/components/Table';
+import { rules } from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '图片地址',
+ align: 'center',
+ dataIndex: 'image',
+ customRender: render.renderImage,
+ },
+ {
+ title: '跳转地址',
+ align: 'center',
+ dataIndex: 'jumpUrl',
+ },
+ {
+ title: '跳转类型',
+ align: 'center',
+ dataIndex: 'jumpType_dictText',
+ },
+ {
+ title: '广告位置',
+ align: 'center',
+ dataIndex: 'position_dictText',
+ },
+ {
+ title: '状态',
+ align: 'center',
+ dataIndex: 'status_dictText',
+ },
+ {
+ title: '分享名称',
+ align: 'center',
+ dataIndex: 'shareName',
+ },
+ {
+ title: '分享图',
+ align: 'center',
+ dataIndex: 'shareImage',
+ customRender: render.renderImage,
+ },
+ {
+ title: '创建日期',
+ align: 'center',
+ dataIndex: 'createTime',
+ },
+ {
+ title: '更新日期',
+ align: 'center',
+ dataIndex: 'updateTime',
+ },
+];
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+ {
+ label: '跳转类型',
+ field: 'jumpType',
+ component: 'JSelectMultiple',
+ componentProps: {
+ dictCode: 'app_banner_jump_type',
+ },
+ //colProps: {span: 6},
+ },
+ {
+ label: '广告位置',
+ field: 'position',
+ component: 'JSelectMultiple',
+ componentProps: {
+ dictCode: 'app_banner_position',
+ },
+ //colProps: {span: 6},
+ },
+ {
+ label: '状态',
+ field: 'status',
+ component: 'JSelectMultiple',
+ componentProps: {
+ dictCode: 'dict_item_status',
+ },
+ //colProps: {span: 6},
+ },
+ {
+ label: '创建日期',
+ field: 'createTime',
+ component: 'RangePicker',
+ componentProps: {
+ valueType: 'Date',
+ showTime: true,
+ },
+ //colProps: {span: 6},
+ },
+];
+//表单数据
+export const formSchema: FormSchema[] = [
+ {
+ label: '图片地址',
+ field: 'image',
+ component: 'JImageUpload',
+ componentProps: {
+ fileMax: 0,
+ },
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入图片地址!' }];
+ },
+ },
+ {
+ label: '跳转地址',
+ field: 'jumpUrl',
+ component: 'Input',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入跳转地址!' }];
+ },
+ },
+ {
+ label: '跳转类型',
+ field: 'jumpType',
+ component: 'JDictSelectTag',
+ componentProps: {
+ dictCode: 'app_banner_jump_type',
+ stringToNumber: true,
+ },
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入跳转类型!' }];
+ },
+ },
+ {
+ label: '广告位置',
+ field: 'position',
+ component: 'JDictSelectTag',
+ componentProps: {
+ dictCode: 'app_banner_position',
+ stringToNumber: true,
+ },
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入广告位置!' }];
+ },
+ },
+ {
+ label: '状态',
+ field: 'status',
+ defaultValue: 1,
+ component: 'JDictSelectTag',
+ componentProps: {
+ dictCode: 'dict_item_status',
+ type: 'radio',
+ stringToNumber: true,
+ },
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入状态!' }];
+ },
+ },
+ {
+ label: '分享名称',
+ field: 'shareName',
+ component: 'Input',
+ },
+ {
+ label: '分享图',
+ field: 'shareImage',
+ component: 'JImageUpload',
+ componentProps: {
+ fileMax: 0,
+ },
+ },
+ // TODO 主键隐藏字段,目前写死为ID
+ {
+ label: '',
+ field: 'id',
+ component: 'Input',
+ show: false,
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ image: { title: '图片地址', order: 0, view: 'image', type: 'string' },
+ jumpUrl: { title: '跳转地址', order: 1, view: 'text', type: 'string' },
+ jumpType: { title: '跳转类型', order: 2, view: 'number', type: 'number', dictCode: 'app_banner_jump_type' },
+ position: { title: '广告位置', order: 3, view: 'number', type: 'number', dictCode: 'app_banner_position' },
+ status: { title: '状态', order: 4, view: 'number', type: 'number', dictCode: 'dict_item_status' },
+ shareName: { title: '分享名称', order: 5, view: 'text', type: 'string' },
+ shareImage: { title: '分享图', order: 6, view: 'image', type: 'string' },
+ createTime: { title: '创建日期', order: 7, view: 'datetime', type: 'string' },
+ updateTime: { title: '更新日期', order: 8, view: 'datetime', type: 'string' },
+};
+
+/**
+ * 流程表单调用这个方法获取formSchema
+ * @param param
+ */
+export function getBpmFormSchema(_formData): FormSchema[] {
+ // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
+ return formSchema;
+}
diff --git a/src/views/miniapp/appbanner/AppBannerList.vue b/src/views/miniapp/appbanner/AppBannerList.vue
new file mode 100644
index 0000000..b1e8a5b
--- /dev/null
+++ b/src/views/miniapp/appbanner/AppBannerList.vue
@@ -0,0 +1,190 @@
+
+
+
+
+
+
+ 新增
+ 导出
+ 导入
+
+
+
+
+
+ 删除
+
+
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/miniapp/appbanner/components/AppBannerForm.vue b/src/views/miniapp/appbanner/components/AppBannerForm.vue
new file mode 100644
index 0000000..9e1da12
--- /dev/null
+++ b/src/views/miniapp/appbanner/components/AppBannerForm.vue
@@ -0,0 +1,70 @@
+
+
+
+
+
diff --git a/src/views/miniapp/appbanner/components/AppBannerModal.vue b/src/views/miniapp/appbanner/components/AppBannerModal.vue
new file mode 100644
index 0000000..b04fbaf
--- /dev/null
+++ b/src/views/miniapp/appbanner/components/AppBannerModal.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/miniapp/appuser/AppUser.data.ts b/src/views/miniapp/appuser/AppUser.data.ts
index 2634232..019d933 100644
--- a/src/views/miniapp/appuser/AppUser.data.ts
+++ b/src/views/miniapp/appuser/AppUser.data.ts
@@ -6,7 +6,7 @@ import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据
export const columns: BasicColumn[] = [
{
- title: '昵称',
+ title: '用户名',
align: 'center',
dataIndex: 'nickName',
},
@@ -14,32 +14,18 @@ export const columns: BasicColumn[] = [
title: '头像',
align: 'center',
dataIndex: 'avatar',
+ customRender: render.renderImage,
},
{
title: '手机号',
align: 'center',
dataIndex: 'phone',
},
- {
- title: '小程序 openid',
- align: 'center',
- dataIndex: 'openid',
- },
- {
- title: '小程序 unionid',
- align: 'center',
- dataIndex: 'unionid',
- },
{
title: '状态',
align: 'center',
dataIndex: 'status_dictText',
},
- {
- title: '邮箱',
- align: 'center',
- dataIndex: 'email',
- },
{
title: '最后登录时间',
align: 'center',
@@ -50,11 +36,6 @@ export const columns: BasicColumn[] = [
align: 'center',
dataIndex: 'lastLoginIp',
},
- {
- title: '邀请人',
- align: 'center',
- dataIndex: 'inviterId',
- },
{
title: '创建日期',
align: 'center',
@@ -69,7 +50,7 @@ export const columns: BasicColumn[] = [
//查询数据
export const searchFormSchema: FormSchema[] = [
{
- label: '昵称',
+ label: '用户名',
field: 'nickName',
component: 'JInput',
},
@@ -79,29 +60,13 @@ export const searchFormSchema: FormSchema[] = [
component: 'Input',
//colProps: {span: 6},
},
- {
- label: '小程序 openid',
- field: 'openid',
- component: 'Input',
- //colProps: {span: 6},
- },
- {
- label: '小程序 unionid',
- field: 'unionid',
- component: 'Input',
- //colProps: {span: 6},
- },
{
label: '状态',
field: 'status',
component: 'JSelectMultiple',
- componentProps: {},
- //colProps: {span: 6},
- },
- {
- label: '邮箱',
- field: 'email',
- component: 'Input',
+ componentProps: {
+ dictCode: 'dict_item_status',
+ },
//colProps: {span: 6},
},
{
@@ -118,110 +83,48 @@ export const searchFormSchema: FormSchema[] = [
//表单数据
export const formSchema: FormSchema[] = [
{
- label: '昵称',
+ label: '用户名',
field: 'nickName',
component: 'Input',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入用户名!' }];
+ },
},
{
label: '头像',
field: 'avatar',
- component: 'Input',
+ component: 'JImageUpload',
+ componentProps: {
+ fileMax: 0,
+ },
},
{
label: '手机号',
field: 'phone',
component: 'Input',
},
- {
- label: '小程序 openid',
- field: 'openid',
- component: 'Input',
- dynamicRules: ({ model, schema }) => {
- return [{ required: true, message: '请输入小程序 openid!' }];
- },
- },
- {
- label: '小程序 unionid',
- field: 'unionid',
- component: 'Input',
- dynamicRules: ({ model, schema }) => {
- return [{ required: true, message: '请输入小程序 unionid!' }];
- },
- },
{
label: '密码',
field: 'password',
- component: 'Input',
+ component: 'InputPassword',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入密码!' }];
+ },
},
{
label: '状态',
field: 'status',
component: 'JDictSelectTag',
+ defaultValue: 1,
componentProps: {
- dictCode: '',
+ dictCode: 'dict_item_status',
+ type: 'radio',
+ stringToNumber: true,
},
dynamicRules: ({ model, schema }) => {
return [{ required: true, message: '请输入状态!' }];
},
},
- {
- label: '邮箱',
- field: 'email',
- component: 'Input',
- },
- {
- label: '最后登录时间',
- field: 'lastLoginAt',
- component: 'DatePicker',
- componentProps: {
- showTime: true,
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- },
- },
- {
- label: '最后登录 IP',
- field: 'lastLoginIp',
- component: 'Input',
- },
- {
- label: '密码盐值',
- field: 'passwordSalt',
- component: 'Input',
- dynamicRules: ({ model, schema }) => {
- return [{ required: true, message: '请输入密码盐值!' }];
- },
- },
- {
- label: '邀请人',
- field: 'inviterId',
- component: 'InputNumber',
- },
- {
- label: '创建日期',
- field: 'createTime',
- component: 'DatePicker',
- componentProps: {
- showTime: true,
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- },
- dynamicRules: ({ model, schema }) => {
- return [{ required: true, message: '请输入创建日期!' }];
- },
- },
- {
- label: '更新日期',
- field: 'updateTime',
- component: 'DatePicker',
- componentProps: {
- showTime: true,
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- },
- },
- {
- label: '所属部门',
- field: 'sysOrgCode',
- component: 'Input',
- },
// TODO 主键隐藏字段,目前写死为ID
{
label: '',
@@ -233,18 +136,14 @@ export const formSchema: FormSchema[] = [
// 高级查询数据
export const superQuerySchema = {
- nickName: { title: '昵称', order: 0, view: 'text', type: 'string' },
- avatar: { title: '头像', order: 1, view: 'text', type: 'string' },
+ nickName: { title: '用户名', order: 0, view: 'text', type: 'string' },
+ avatar: { title: '头像', order: 1, view: 'image', type: 'string' },
phone: { title: '手机号', order: 2, view: 'text', type: 'string' },
- openid: { title: '小程序 openid', order: 3, view: 'text', type: 'string' },
- unionid: { title: '小程序 unionid', order: 4, view: 'text', type: 'string' },
- status: { title: '状态', order: 6, view: 'number', type: 'number', dictCode: '' },
- email: { title: '邮箱', order: 7, view: 'text', type: 'string' },
- lastLoginAt: { title: '最后登录时间', order: 8, view: 'datetime', type: 'string' },
- lastLoginIp: { title: '最后登录 IP', order: 9, view: 'text', type: 'string' },
- inviterId: { title: '邀请人', order: 11, view: 'number', type: 'number' },
- createTime: { title: '创建日期', order: 12, view: 'datetime', type: 'string' },
- updateTime: { title: '更新日期', order: 13, view: 'datetime', type: 'string' },
+ status: { title: '状态', order: 4, view: 'number', type: 'number', dictCode: 'dict_item_status' },
+ lastLoginAt: { title: '最后登录时间', order: 5, view: 'datetime', type: 'string' },
+ lastLoginIp: { title: '最后登录 IP', order: 6, view: 'text', type: 'string' },
+ createTime: { title: '创建日期', order: 7, view: 'datetime', type: 'string' },
+ updateTime: { title: '更新日期', order: 8, view: 'datetime', type: 'string' },
};
/**
diff --git a/src/views/miniapp/appuser/AppUserList.vue b/src/views/miniapp/appuser/AppUserList.vue
index dd9f8c1..a414abc 100644
--- a/src/views/miniapp/appuser/AppUserList.vue
+++ b/src/views/miniapp/appuser/AppUserList.vue
@@ -1,93 +1,94 @@
-
-
+
+
- 新增
- 导出
- 导入
-
-
-
-
-
- 删除
-
-
-
- 批量操作
-
-
+ 新增
+ 导出
+ 导入
+
+
+
+
+
+ 删除
+
+
+
+ 批量操作
+
+
-
+
-
+
-
+
+
-
+
+
\ No newline at end of file
diff --git a/src/views/miniapp/appuser/V20250210_1__menu_insert_AppUser.sql b/src/views/miniapp/appuser/V20250210_1__menu_insert_AppUser.sql
deleted file mode 100644
index d1f3167..0000000
--- a/src/views/miniapp/appuser/V20250210_1__menu_insert_AppUser.sql
+++ /dev/null
@@ -1,26 +0,0 @@
--- 注意:该页面对应的前台目录为views/appuser文件夹下
--- 如果你想更改到其他目录,请修改sql中component字段对应的值
-
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
-VALUES ('2025021011269440530', NULL, '应用用户表', '/appuser/appUserList', 'appuser/AppUserList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2025-02-10 11:26:53', NULL, NULL, 0);
-
--- 权限控制sql
--- 新增
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2025021011269440531', '2025021011269440530', '添加应用用户表', NULL, NULL, 0, NULL, NULL, 2, 'appuser:app_user:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-02-10 11:26:53', NULL, NULL, 0, 0, '1', 0);
--- 编辑
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2025021011269440532', '2025021011269440530', '编辑应用用户表', NULL, NULL, 0, NULL, NULL, 2, 'appuser:app_user:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-02-10 11:26:53', NULL, NULL, 0, 0, '1', 0);
--- 删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2025021011269440533', '2025021011269440530', '删除应用用户表', NULL, NULL, 0, NULL, NULL, 2, 'appuser:app_user:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-02-10 11:26:53', NULL, NULL, 0, 0, '1', 0);
--- 批量删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2025021011269440534', '2025021011269440530', '批量删除应用用户表', NULL, NULL, 0, NULL, NULL, 2, 'appuser:app_user:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-02-10 11:26:53', NULL, NULL, 0, 0, '1', 0);
--- 导出excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2025021011269440535', '2025021011269440530', '导出excel_应用用户表', NULL, NULL, 0, NULL, NULL, 2, 'appuser:app_user:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-02-10 11:26:53', NULL, NULL, 0, 0, '1', 0);
--- 导入excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2025021011269440536', '2025021011269440530', '导入excel_应用用户表', NULL, NULL, 0, NULL, NULL, 2, 'appuser:app_user:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-02-10 11:26:53', NULL, NULL, 0, 0, '1', 0);
\ No newline at end of file
diff --git a/src/views/miniapp/notice/AppNotice.api.ts b/src/views/miniapp/notice/AppNotice.api.ts
new file mode 100644
index 0000000..33426e1
--- /dev/null
+++ b/src/views/miniapp/notice/AppNotice.api.ts
@@ -0,0 +1,63 @@
+import { defHttp } from '/src/utils/http/axios';
+import { useMessage } from '/src/hooks/web/useMessage';
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/notice/appNotice/list',
+ save = '/notice/appNotice/add',
+ edit = '/notice/appNotice/edit',
+ deleteOne = '/notice/appNotice/delete',
+ deleteBatch = '/notice/appNotice/deleteBatch',
+ importExcel = '/notice/appNotice/importExcel',
+ exportXls = '/notice/appNotice/exportXls',
+}
+/**
+ * 导出api
+ * @param params
+ */
+export const getExportUrl = Api.exportXls;
+/**
+ * 导入api
+ */
+export const getImportUrl = Api.importExcel;
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) => defHttp.get({ url: Api.list, params });
+
+/**
+ * 删除单个
+ */
+export const deleteOne = (params, handleSuccess) => {
+ return defHttp.delete({ url: Api.deleteOne, params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+};
+/**
+ * 批量删除
+ * @param params
+ */
+export const batchDelete = (params, handleSuccess) => {
+ createConfirm({
+ iconType: 'warning',
+ title: '确认删除',
+ content: '是否删除选中数据',
+ okText: '确认',
+ cancelText: '取消',
+ onOk: () => {
+ return defHttp.delete({ url: Api.deleteBatch, data: params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+ },
+ });
+};
+/**
+ * 保存或者更新
+ * @param params
+ */
+export const saveOrUpdate = (params, isUpdate) => {
+ const url = isUpdate ? Api.edit : Api.save;
+ return defHttp.post({ url: url, params });
+};
diff --git a/src/views/miniapp/notice/AppNotice.data.ts b/src/views/miniapp/notice/AppNotice.data.ts
new file mode 100644
index 0000000..a46e0f4
--- /dev/null
+++ b/src/views/miniapp/notice/AppNotice.data.ts
@@ -0,0 +1,122 @@
+import { BasicColumn } from '/src/components/Table';
+import { FormSchema } from '/src/components/Table';
+import { rules } from '/src/utils/helper/validator';
+import { render } from '/src/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/src/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '标题',
+ align: 'center',
+ dataIndex: 'title',
+ },
+ {
+ title: '状态',
+ align: 'center',
+ dataIndex: 'status_dictText',
+ },
+ {
+ title: '排序',
+ align: 'center',
+ sorter: true,
+ dataIndex: 'sort',
+ },
+ {
+ title: '创建日期',
+ align: 'center',
+ sorter: true,
+ dataIndex: 'createTime',
+ },
+];
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+ {
+ label: '标题',
+ field: 'title',
+ component: 'JInput',
+ },
+ {
+ label: '状态',
+ field: 'status',
+ component: 'JSelectMultiple',
+ componentProps: {
+ dictCode: 'dict_item_status',
+ },
+ //colProps: {span: 6},
+ },
+ {
+ label: '创建日期',
+ field: 'createTime',
+ component: 'RangePicker',
+ componentProps: {
+ valueType: 'Date',
+ showTime: true,
+ },
+ //colProps: {span: 6},
+ },
+];
+//表单数据
+export const formSchema: FormSchema[] = [
+ {
+ label: '标题',
+ field: 'title',
+ component: 'Input',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入标题!' }];
+ },
+ },
+ {
+ label: '内容',
+ field: 'content',
+ component: 'JEditor',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入内容!' }];
+ },
+ },
+ {
+ label: '状态',
+ field: 'status',
+ defaultValue: 1,
+ component: 'JDictSelectTag',
+ componentProps: {
+ dictCode: 'dict_item_status',
+ type: 'radio',
+ stringToNumber: true,
+ },
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入状态!' }];
+ },
+ },
+ {
+ label: '排序',
+ field: 'sort',
+ component: 'InputNumber',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入排序!' }];
+ },
+ },
+ // TODO 主键隐藏字段,目前写死为ID
+ {
+ label: '',
+ field: 'id',
+ component: 'Input',
+ show: false,
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ title: { title: '标题', order: 0, view: 'text', type: 'string' },
+ status: { title: '状态', order: 2, view: 'number', type: 'number', dictCode: 'dict_item_status' },
+ sort: { title: '排序', order: 3, view: 'number', type: 'number' },
+ createTime: { title: '创建日期', order: 4, view: 'datetime', type: 'string' },
+};
+
+/**
+ * 流程表单调用这个方法获取formSchema
+ * @param param
+ */
+export function getBpmFormSchema(_formData): FormSchema[] {
+ // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
+ return formSchema;
+}
diff --git a/src/views/miniapp/notice/AppNoticeList.vue b/src/views/miniapp/notice/AppNoticeList.vue
new file mode 100644
index 0000000..a852f29
--- /dev/null
+++ b/src/views/miniapp/notice/AppNoticeList.vue
@@ -0,0 +1,190 @@
+
+
+
+
+
+
+ 新增
+ 导出
+ 导入
+
+
+
+
+
+ 删除
+
+
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/miniapp/notice/components/AppNoticeForm.vue b/src/views/miniapp/notice/components/AppNoticeForm.vue
new file mode 100644
index 0000000..74a2c08
--- /dev/null
+++ b/src/views/miniapp/notice/components/AppNoticeForm.vue
@@ -0,0 +1,70 @@
+
+
+
+
+
diff --git a/src/views/miniapp/notice/components/AppNoticeModal.vue b/src/views/miniapp/notice/components/AppNoticeModal.vue
new file mode 100644
index 0000000..b75f2c9
--- /dev/null
+++ b/src/views/miniapp/notice/components/AppNoticeModal.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/miniapp/product/AppProduct.api.ts b/src/views/miniapp/product/AppProduct.api.ts
new file mode 100644
index 0000000..a027ec3
--- /dev/null
+++ b/src/views/miniapp/product/AppProduct.api.ts
@@ -0,0 +1,63 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from '/@/hooks/web/useMessage';
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/product/appProduct/list',
+ save = '/product/appProduct/add',
+ edit = '/product/appProduct/edit',
+ deleteOne = '/product/appProduct/delete',
+ deleteBatch = '/product/appProduct/deleteBatch',
+ importExcel = '/product/appProduct/importExcel',
+ exportXls = '/product/appProduct/exportXls',
+}
+/**
+ * 导出api
+ * @param params
+ */
+export const getExportUrl = Api.exportXls;
+/**
+ * 导入api
+ */
+export const getImportUrl = Api.importExcel;
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) => defHttp.get({ url: Api.list, params });
+
+/**
+ * 删除单个
+ */
+export const deleteOne = (params, handleSuccess) => {
+ return defHttp.delete({ url: Api.deleteOne, params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+};
+/**
+ * 批量删除
+ * @param params
+ */
+export const batchDelete = (params, handleSuccess) => {
+ createConfirm({
+ iconType: 'warning',
+ title: '确认删除',
+ content: '是否删除选中数据',
+ okText: '确认',
+ cancelText: '取消',
+ onOk: () => {
+ return defHttp.delete({ url: Api.deleteBatch, data: params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+ },
+ });
+};
+/**
+ * 保存或者更新
+ * @param params
+ */
+export const saveOrUpdate = (params, isUpdate) => {
+ const url = isUpdate ? Api.edit : Api.save;
+ return defHttp.post({ url: url, params });
+};
diff --git a/src/views/miniapp/product/AppProduct.data.ts b/src/views/miniapp/product/AppProduct.data.ts
new file mode 100644
index 0000000..f26705c
--- /dev/null
+++ b/src/views/miniapp/product/AppProduct.data.ts
@@ -0,0 +1,123 @@
+import { BasicColumn } from '/@/components/Table';
+import { FormSchema } from '/@/components/Table';
+import { rules } from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+import {getAllTenantList} from "@/views/system/user/user.api";
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '产品名称',
+ align: 'center',
+ dataIndex: 'name',
+ },
+ {
+ title: '产品分类',
+ align: 'center',
+ dataIndex: 'categoryId_dictText',
+ },
+ {
+ title: '产品内容',
+ align: 'center',
+ dataIndex: 'content',
+ },
+ {
+ title: '产品合同模板',
+ align: 'center',
+ dataIndex: 'pdf',
+ },
+ {
+ title: '创建日期',
+ align: 'center',
+ dataIndex: 'createTime',
+ },
+];
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+ {
+ label: '产品名称',
+ field: 'name',
+ component: 'JInput',
+ },
+ {
+ label: '产品内容',
+ field: 'content',
+ component: 'JInput',
+ },
+ {
+ label: '创建日期',
+ field: 'createTime',
+ component: 'RangePicker',
+ componentProps: {
+ valueType: 'Date',
+ showTime: true,
+ },
+ //colProps: {span: 6},
+ },
+];
+//表单数据
+export const formSchema: FormSchema[] = [
+ {
+ label: '产品名称',
+ field: 'name',
+ component: 'Input',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入产品名称!' }];
+ },
+ },
+ {
+ label: '产品分类',
+ field: 'categoryId',
+ component: 'JDictSelectTag',
+ componentProps: {
+ mode: 'multiple',
+ api: getAllTenantList,
+ numberToString: true,
+ labelField: 'name',
+ valueField: 'id',
+ immediate: false,
+ },
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入产品分类!' }];
+ },
+ },
+ {
+ label: '产品内容',
+ field: 'content',
+ component: 'Input',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入产品内容!' }];
+ },
+ },
+ {
+ label: '产品合同模板',
+ field: 'pdf',
+ component: 'JUpload',
+ componentProps: {},
+ },
+ // TODO 主键隐藏字段,目前写死为ID
+ {
+ label: '',
+ field: 'id',
+ component: 'Input',
+ show: false,
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ name: { title: '产品名称', order: 0, view: 'text', type: 'string' },
+ categoryId: { title: '产品分类', order: 1, view: 'number', type: 'number', dictCode: '' },
+ content: { title: '产品内容', order: 2, view: 'text', type: 'string' },
+ pdf: { title: '产品合同模板', order: 3, view: 'file', type: 'string' },
+ createTime: { title: '创建日期', order: 4, view: 'datetime', type: 'string' },
+};
+
+/**
+ * 流程表单调用这个方法获取formSchema
+ * @param param
+ */
+export function getBpmFormSchema(_formData): FormSchema[] {
+ // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
+ return formSchema;
+}
diff --git a/src/views/miniapp/product/AppProductList.vue b/src/views/miniapp/product/AppProductList.vue
new file mode 100644
index 0000000..9d0eea4
--- /dev/null
+++ b/src/views/miniapp/product/AppProductList.vue
@@ -0,0 +1,198 @@
+
+
+
+
+
+
+ 新增
+ 导出
+ 导入
+
+
+
+
+
+ 删除
+
+
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无文件
+ 下载
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/miniapp/product/components/AppProductForm.vue b/src/views/miniapp/product/components/AppProductForm.vue
new file mode 100644
index 0000000..180413b
--- /dev/null
+++ b/src/views/miniapp/product/components/AppProductForm.vue
@@ -0,0 +1,70 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/miniapp/product/components/AppProductModal.vue b/src/views/miniapp/product/components/AppProductModal.vue
new file mode 100644
index 0000000..7f4453b
--- /dev/null
+++ b/src/views/miniapp/product/components/AppProductModal.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/miniapp/productCategory/AppCategory.api.ts b/src/views/miniapp/productCategory/AppCategory.api.ts
new file mode 100644
index 0000000..7e0611d
--- /dev/null
+++ b/src/views/miniapp/productCategory/AppCategory.api.ts
@@ -0,0 +1,64 @@
+import {defHttp} from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/productCategory/appCategory/list',
+ save='/productCategory/appCategory/add',
+ edit='/productCategory/appCategory/edit',
+ deleteOne = '/productCategory/appCategory/delete',
+ deleteBatch = '/productCategory/appCategory/deleteBatch',
+ importExcel = '/productCategory/appCategory/importExcel',
+ exportXls = '/productCategory/appCategory/exportXls',
+}
+/**
+ * 导出api
+ * @param params
+ */
+export const getExportUrl = Api.exportXls;
+/**
+ * 导入api
+ */
+export const getImportUrl = Api.importExcel;
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) =>
+ defHttp.get({url: Api.list, params});
+
+/**
+ * 删除单个
+ */
+export const deleteOne = (params,handleSuccess) => {
+ return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
+ handleSuccess();
+ });
+}
+/**
+ * 批量删除
+ * @param params
+ */
+export const batchDelete = (params, handleSuccess) => {
+ createConfirm({
+ iconType: 'warning',
+ title: '确认删除',
+ content: '是否删除选中数据',
+ okText: '确认',
+ cancelText: '取消',
+ onOk: () => {
+ return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
+ handleSuccess();
+ });
+ }
+ });
+}
+/**
+ * 保存或者更新
+ * @param params
+ */
+export const saveOrUpdate = (params, isUpdate) => {
+ let url = isUpdate ? Api.edit : Api.save;
+ return defHttp.post({url: url, params});
+}
diff --git a/src/views/miniapp/productCategory/AppCategory.data.ts b/src/views/miniapp/productCategory/AppCategory.data.ts
new file mode 100644
index 0000000..88c247d
--- /dev/null
+++ b/src/views/miniapp/productCategory/AppCategory.data.ts
@@ -0,0 +1,71 @@
+import {BasicColumn} from '/@/components/Table';
+import {FormSchema} from '/@/components/Table';
+import { rules} from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '名称',
+ align:"center",
+ dataIndex: 'categoryName'
+ },
+ {
+ title: '创建日期',
+ align:"center",
+ dataIndex: 'createTime'
+ },
+];
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+ {
+ label: "名称",
+ field: "categoryName",
+ component: 'JInput',
+ },
+ {
+ label: "创建日期",
+ field: "createTime",
+ component: 'RangePicker',
+ componentProps: {
+ valueType: 'Date',
+ showTime:true
+ },
+ //colProps: {span: 6},
+ },
+];
+//表单数据
+export const formSchema: FormSchema[] = [
+ {
+ label: '名称',
+ field: 'categoryName',
+ component: 'Input',
+ dynamicRules: ({model,schema}) => {
+ return [
+ { required: true, message: '请输入名称!'},
+ ];
+ },
+ },
+ // TODO 主键隐藏字段,目前写死为ID
+ {
+ label: '',
+ field: 'id',
+ component: 'Input',
+ show: false
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ categoryName: {title: '名称',order: 0,view: 'text', type: 'string',},
+ createTime: {title: '创建日期',order: 1,view: 'datetime', type: 'string',},
+};
+
+/**
+* 流程表单调用这个方法获取formSchema
+* @param param
+*/
+export function getBpmFormSchema(_formData): FormSchema[]{
+ // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
+ return formSchema;
+}
\ No newline at end of file
diff --git a/src/views/miniapp/productCategory/AppCategoryList.vue b/src/views/miniapp/productCategory/AppCategoryList.vue
new file mode 100644
index 0000000..6bad93a
--- /dev/null
+++ b/src/views/miniapp/productCategory/AppCategoryList.vue
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+ 新增
+ 导出
+ 导入
+
+
+
+
+
+ 删除
+
+
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/miniapp/productCategory/components/AppCategoryForm.vue b/src/views/miniapp/productCategory/components/AppCategoryForm.vue
new file mode 100644
index 0000000..754258f
--- /dev/null
+++ b/src/views/miniapp/productCategory/components/AppCategoryForm.vue
@@ -0,0 +1,70 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/miniapp/productCategory/components/AppCategoryModal.vue b/src/views/miniapp/productCategory/components/AppCategoryModal.vue
new file mode 100644
index 0000000..b147a1a
--- /dev/null
+++ b/src/views/miniapp/productCategory/components/AppCategoryModal.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/miniapp/store/AppStore.api.ts b/src/views/miniapp/store/AppStore.api.ts
new file mode 100644
index 0000000..bb4d068
--- /dev/null
+++ b/src/views/miniapp/store/AppStore.api.ts
@@ -0,0 +1,63 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from '/@/hooks/web/useMessage';
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/store/appStore/list',
+ save = '/store/appStore/add',
+ edit = '/store/appStore/edit',
+ deleteOne = '/store/appStore/delete',
+ deleteBatch = '/store/appStore/deleteBatch',
+ importExcel = '/store/appStore/importExcel',
+ exportXls = '/store/appStore/exportXls',
+}
+/**
+ * 导出api
+ * @param params
+ */
+export const getExportUrl = Api.exportXls;
+/**
+ * 导入api
+ */
+export const getImportUrl = Api.importExcel;
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) => defHttp.get({ url: Api.list, params });
+
+/**
+ * 删除单个
+ */
+export const deleteOne = (params, handleSuccess) => {
+ return defHttp.delete({ url: Api.deleteOne, params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+};
+/**
+ * 批量删除
+ * @param params
+ */
+export const batchDelete = (params, handleSuccess) => {
+ createConfirm({
+ iconType: 'warning',
+ title: '确认删除',
+ content: '是否删除选中数据',
+ okText: '确认',
+ cancelText: '取消',
+ onOk: () => {
+ return defHttp.delete({ url: Api.deleteBatch, data: params }, { joinParamsToUrl: true }).then(() => {
+ handleSuccess();
+ });
+ },
+ });
+};
+/**
+ * 保存或者更新
+ * @param params
+ */
+export const saveOrUpdate = (params, isUpdate) => {
+ const url = isUpdate ? Api.edit : Api.save;
+ return defHttp.post({ url: url, params });
+};
diff --git a/src/views/miniapp/store/AppStore.data.ts b/src/views/miniapp/store/AppStore.data.ts
new file mode 100644
index 0000000..720e77e
--- /dev/null
+++ b/src/views/miniapp/store/AppStore.data.ts
@@ -0,0 +1,99 @@
+import { BasicColumn } from '/@/components/Table';
+import { FormSchema } from '/@/components/Table';
+import { rules } from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '门店名称',
+ align: 'center',
+ dataIndex: 'storeName',
+ },
+ {
+ title: '状态',
+ align: 'center',
+ dataIndex: 'status_dictText',
+ },
+ {
+ title: '备注',
+ align: 'center',
+ dataIndex: 'remark',
+ },
+ {
+ title: '创建日期',
+ align: 'center',
+ dataIndex: 'createTime',
+ },
+];
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+ {
+ label: '门店名称',
+ field: 'storeName',
+ component: 'JInput',
+ },
+ {
+ label: '状态',
+ field: 'status',
+ component: 'JSelectMultiple',
+ componentProps: {
+ dictCode: 'dict_item_status',
+ },
+ //colProps: {span: 6},
+ },
+];
+//表单数据
+export const formSchema: FormSchema[] = [
+ {
+ label: '门店名称',
+ field: 'storeName',
+ component: 'Input',
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入门店名称!' }];
+ },
+ },
+ {
+ label: '状态',
+ field: 'status',
+ defaultValue: 1,
+ component: 'JDictSelectTag',
+ componentProps: {
+ dictCode: 'dict_item_status',
+ type: 'radio',
+ stringToNumber: true,
+ },
+ dynamicRules: ({ model, schema }) => {
+ return [{ required: true, message: '请输入状态!' }];
+ },
+ },
+ {
+ label: '备注',
+ field: 'remark',
+ component: 'Input',
+ },
+ // TODO 主键隐藏字段,目前写死为ID
+ {
+ label: '',
+ field: 'id',
+ component: 'Input',
+ show: false,
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ storeName: { title: '门店名称', order: 0, view: 'text', type: 'string' },
+ status: { title: '状态', order: 1, view: 'number', type: 'number', dictCode: 'dict_item_status' },
+ remark: { title: '备注', order: 2, view: 'text', type: 'string' },
+ createTime: { title: '创建日期', order: 3, view: 'datetime', type: 'string' },
+};
+
+/**
+ * 流程表单调用这个方法获取formSchema
+ * @param param
+ */
+export function getBpmFormSchema(_formData): FormSchema[] {
+ // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
+ return formSchema;
+}
diff --git a/src/views/miniapp/store/AppStoreList.vue b/src/views/miniapp/store/AppStoreList.vue
new file mode 100644
index 0000000..fa9cc2e
--- /dev/null
+++ b/src/views/miniapp/store/AppStoreList.vue
@@ -0,0 +1,190 @@
+
+
+
+
+
+
+ 新增
+ 导出
+ 导入
+
+
+
+
+
+ 删除
+
+
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/miniapp/store/components/AppStoreForm.vue b/src/views/miniapp/store/components/AppStoreForm.vue
new file mode 100644
index 0000000..83330af
--- /dev/null
+++ b/src/views/miniapp/store/components/AppStoreForm.vue
@@ -0,0 +1,70 @@
+
+
+
+
+
diff --git a/src/views/miniapp/store/components/AppStoreModal.vue b/src/views/miniapp/store/components/AppStoreModal.vue
new file mode 100644
index 0000000..dbac1db
--- /dev/null
+++ b/src/views/miniapp/store/components/AppStoreModal.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+