Compare commits
57 Commits
526bfa65b5
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
246ae7ae2f | ||
|
|
c8b45e7477 | ||
|
|
208e58c1f6 | ||
|
|
5a843344ee | ||
|
|
3723414588 | ||
|
|
d4447eaf55 | ||
|
|
04afb056c3 | ||
|
|
fab443b8a0 | ||
|
|
cdaa6797fa | ||
|
|
88795fe559 | ||
|
|
2f8937ae13 | ||
|
|
a2d24b9492 | ||
|
|
994fd58bb0 | ||
|
|
21f10b6e88 | ||
|
|
df572949f3 | ||
|
|
8e3c2ec88f | ||
|
|
2ffb3ae55c | ||
|
|
05ac02f58a | ||
|
|
0a39446c65 | ||
|
|
2f798b6b48 | ||
|
|
0014b71888 | ||
|
|
15cbb02e50 | ||
|
|
90da064f25 | ||
|
|
f3a2438066 | ||
|
|
6d8de8016b | ||
|
|
bdd0d478df | ||
|
|
c4c2a8bd67 | ||
|
|
7ca2ebcf5d | ||
|
|
fd0e324bc9 | ||
|
|
056672e443 | ||
|
|
e24e89c513 | ||
|
|
9085a77931 | ||
|
|
d1d2840abd | ||
|
|
7ce15ddf0e | ||
|
|
541fc2ff8a | ||
|
|
6f859ebaa0 | ||
|
|
fbf3579fa8 | ||
|
|
8953941362 | ||
|
|
0b6c1e9000 | ||
|
|
6e4eb46da6 | ||
|
|
4072e8b1c4 | ||
|
|
1deb6e58ec | ||
|
|
d96b8f4329 | ||
|
|
1b6fb9968e | ||
|
|
edb74d7bf3 | ||
|
|
c9537f5f04 | ||
|
|
8ebf15cdc4 | ||
|
|
9af5995d65 | ||
|
|
e390000c9b | ||
|
|
cdf349aabb | ||
|
|
8e35143058 | ||
|
|
f190f0ebea | ||
|
|
d1356f167c | ||
|
|
ee0525e62b | ||
|
|
566da2e791 | ||
|
|
c0b5e0bfd5 | ||
|
|
9e27d62e0e |
3
.env
3
.env
@@ -1 +1,2 @@
|
|||||||
VITE_HTTP_PREFIX='/api'
|
VITE_HTTP_PREFIX='/api'
|
||||||
|
VITE_UPLOAD_PREFIX='http://localhost:5173/api'
|
||||||
2
.env.production
Normal file
2
.env.production
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
VITE_HTTP_PREFIX='/api'
|
||||||
|
VITE_UPLOAD_PREFIX= 'https://ims.riemann.tech/api'
|
||||||
@@ -29,7 +29,7 @@ export default [
|
|||||||
dictionary: true,
|
dictionary: true,
|
||||||
sensor: true,
|
sensor: true,
|
||||||
station: true,
|
station: true,
|
||||||
material: true,
|
material: true,
|
||||||
},
|
},
|
||||||
ecmaVersion: 2020,
|
ecmaVersion: 2020,
|
||||||
parser: parserVue,
|
parser: parserVue,
|
||||||
|
|||||||
286
src/api/acl/api.d.ts
vendored
286
src/api/acl/api.d.ts
vendored
@@ -1,198 +1,198 @@
|
|||||||
declare namespace acl {
|
declare namespace acl {
|
||||||
/**
|
/**
|
||||||
* 权限
|
* 权限
|
||||||
*/
|
*/
|
||||||
export interface Permission {
|
export interface Permission {
|
||||||
/** createdTime */
|
/** createdTime */
|
||||||
createdTime?: string;
|
createdTime?: string
|
||||||
|
|
||||||
/** 权限描述 */
|
/** 权限描述 */
|
||||||
description?: string;
|
description?: string
|
||||||
|
|
||||||
/** id */
|
/** id */
|
||||||
id?: number;
|
id?: number
|
||||||
|
|
||||||
/** 权限key,英文 */
|
/** 权限key,英文 */
|
||||||
key?: string;
|
key?: string
|
||||||
|
|
||||||
/** 权限keyPath,用来做业务,(父级keyPath.key) */
|
/** 权限keyPath,用来做业务,(父级keyPath.key) */
|
||||||
keyPath?: string;
|
keyPath?: string
|
||||||
|
|
||||||
/** 权限名称,中文用来做标识 */
|
/** 权限名称,中文用来做标识 */
|
||||||
name?: string;
|
name?: string
|
||||||
|
|
||||||
/** 父权限key */
|
/** 父权限key */
|
||||||
parentKey?: string;
|
parentKey?: string
|
||||||
|
|
||||||
/** 权限类型 */
|
/** 权限类型 */
|
||||||
type?: 'MENU' | 'BUTTON' | 'OTHER';
|
type?: 'MENU' | 'BUTTON' | 'OTHER'
|
||||||
|
|
||||||
/** typeInfo */
|
/** typeInfo */
|
||||||
typeInfo?: acl.Codebook;
|
typeInfo?: acl.Codebook
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string;
|
updatedTime?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 权限信息,包含是否选中标识
|
* 权限信息,包含是否选中标识
|
||||||
*/
|
*/
|
||||||
export interface PermissionInfo {
|
export interface PermissionInfo {
|
||||||
/** createdTime */
|
/** createdTime */
|
||||||
createdTime?: string;
|
createdTime?: string
|
||||||
|
|
||||||
/** 权限描述 */
|
/** 权限描述 */
|
||||||
description?: string;
|
description?: string
|
||||||
|
|
||||||
/** id */
|
/** id */
|
||||||
id?: number;
|
id?: number
|
||||||
|
|
||||||
/** 权限key,英文 */
|
/** 权限key,英文 */
|
||||||
key?: string;
|
key?: string
|
||||||
|
|
||||||
/** 权限keyPath,用来做业务,(父级keyPath.key) */
|
/** 权限keyPath,用来做业务,(父级keyPath.key) */
|
||||||
keyPath?: string;
|
keyPath?: string
|
||||||
|
|
||||||
/** 权限名称,中文用来做标识 */
|
/** 权限名称,中文用来做标识 */
|
||||||
name?: string;
|
name?: string
|
||||||
|
|
||||||
/** 父权限key */
|
/** 父权限key */
|
||||||
parentKey?: string;
|
parentKey?: string
|
||||||
|
|
||||||
/** 权限是否选中标识 */
|
/** 权限是否选中标识 */
|
||||||
selected: boolean;
|
selected: boolean
|
||||||
|
|
||||||
/** 权限类型 */
|
/** 权限类型 */
|
||||||
type?: 'MENU' | 'BUTTON' | 'OTHER';
|
type?: 'MENU' | 'BUTTON' | 'OTHER'
|
||||||
|
|
||||||
/** typeInfo */
|
/** typeInfo */
|
||||||
typeInfo?: acl.Codebook;
|
typeInfo?: acl.Codebook
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string;
|
updatedTime?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 角色
|
* 角色
|
||||||
*/
|
*/
|
||||||
export interface Role {
|
export interface Role {
|
||||||
/** createdTime */
|
/** createdTime */
|
||||||
createdTime?: string;
|
createdTime?: string
|
||||||
|
|
||||||
/** 角色描述 */
|
/** 角色描述 */
|
||||||
description?: string;
|
description?: string
|
||||||
|
|
||||||
/** id */
|
/** id */
|
||||||
id?: number;
|
id?: number
|
||||||
|
|
||||||
/** 角色key,英文,用来做业务 */
|
/** 角色key,英文,用来做业务 */
|
||||||
key: string;
|
key?: string
|
||||||
|
|
||||||
/** 角色名称,中文用来做标识 */
|
/** 角色名称,中文用来做标识 */
|
||||||
name?: string;
|
name?: string
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string;
|
updatedTime?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 角色信息,包含是否选中标识
|
* 角色信息,包含是否选中标识
|
||||||
*/
|
*/
|
||||||
export interface RoleInfo {
|
export interface RoleInfo {
|
||||||
/** createdTime */
|
/** createdTime */
|
||||||
createdTime?: string;
|
createdTime?: string
|
||||||
|
|
||||||
/** 角色描述 */
|
/** 角色描述 */
|
||||||
description?: string;
|
description?: string
|
||||||
|
|
||||||
/** id */
|
/** id */
|
||||||
id?: number;
|
id?: number
|
||||||
|
|
||||||
/** 角色key,英文,用来做业务 */
|
/** 角色key,英文,用来做业务 */
|
||||||
key: string;
|
key?: string
|
||||||
|
|
||||||
/** 角色名称,中文用来做标识 */
|
/** 角色名称,中文用来做标识 */
|
||||||
name?: string;
|
name?: string
|
||||||
|
|
||||||
/** 角色是否选中标识 */
|
/** 角色是否选中标识 */
|
||||||
selected: boolean;
|
selected: boolean
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string;
|
updatedTime?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 树
|
* 树
|
||||||
*/
|
*/
|
||||||
export interface TreeString {
|
export interface TreeString {
|
||||||
/** 下级列表 */
|
/** 下级列表 */
|
||||||
children?: Array<acl.TreeString>;
|
children?: Array<acl.TreeString>
|
||||||
|
|
||||||
/** 描述 */
|
/** 描述 */
|
||||||
description?: string;
|
description?: string
|
||||||
|
|
||||||
/** ID */
|
/** ID */
|
||||||
key: string;
|
key: string
|
||||||
|
|
||||||
/** 名称 */
|
/** 名称 */
|
||||||
name: string;
|
name: string
|
||||||
|
|
||||||
/** originData */
|
/** originData */
|
||||||
originData: acl.TreeableString;
|
originData: acl.TreeableString
|
||||||
|
|
||||||
/** 父级 ID */
|
/** 父级 ID */
|
||||||
parentKey?: string;
|
parentKey?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 原始数据
|
* 原始数据
|
||||||
*/
|
*/
|
||||||
export interface TreeableString {
|
export interface TreeableString {
|
||||||
/** description */
|
/** description */
|
||||||
description?: string;
|
description?: string
|
||||||
|
|
||||||
/** key */
|
/** key */
|
||||||
key?: string;
|
key?: string
|
||||||
|
|
||||||
/** name */
|
/** name */
|
||||||
name?: string;
|
name?: string
|
||||||
|
|
||||||
/** parentKey */
|
/** parentKey */
|
||||||
parentKey?: string;
|
parentKey?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户
|
* 用户
|
||||||
*/
|
*/
|
||||||
export interface User {
|
export interface User {
|
||||||
/** createdTime */
|
/** createdTime */
|
||||||
createdTime?: string;
|
createdTime?: string
|
||||||
|
|
||||||
/** 邮箱 */
|
/** 邮箱 */
|
||||||
email?: string;
|
email?: string
|
||||||
|
|
||||||
/** 真实姓名 */
|
/** 真实姓名 */
|
||||||
fullName?: string;
|
fullName?: string
|
||||||
|
|
||||||
/** id */
|
/** id */
|
||||||
id?: number;
|
id?: number
|
||||||
|
|
||||||
/** 手机号 */
|
/** 手机号 */
|
||||||
mobile?: string;
|
mobile?: string
|
||||||
|
|
||||||
/** 用户名 */
|
/** 用户名 */
|
||||||
name: string;
|
name: string
|
||||||
|
|
||||||
/** 密码 */
|
/** 密码 */
|
||||||
password?: string;
|
password?: string
|
||||||
|
|
||||||
/** 性别 */
|
/** 性别 */
|
||||||
sex?: 'MALE' | 'FEMALE';
|
sex?: 'MALE' | 'FEMALE'
|
||||||
|
|
||||||
/** sexInfo */
|
/** sexInfo */
|
||||||
sexInfo?: acl.Codebook;
|
sexInfo?: acl.Codebook
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string;
|
updatedTime?: string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
26
src/api/acl/mods/user/existName.ts
Normal file
26
src/api/acl/mods/user/existName.ts
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
/**
|
||||||
|
* @desc 检查用户名是否存在,true存在,false不存在
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export interface Params {
|
||||||
|
/** name */
|
||||||
|
name: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function (
|
||||||
|
params: Params,
|
||||||
|
success: (data: boolean) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/user/exist-name`,
|
||||||
|
|
||||||
|
params,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<boolean, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
@@ -2,30 +2,32 @@
|
|||||||
* @description 用户
|
* @description 用户
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
import saveOrUpdateUser from './saveOrUpdateUser';
|
import saveOrUpdateUser from './saveOrUpdateUser'
|
||||||
import all from './all';
|
import all from './all'
|
||||||
import sexes from './sexes';
|
import existName from './existName'
|
||||||
import detail from './detail';
|
import sexes from './sexes'
|
||||||
import deleteUser from './deleteUser';
|
import detail from './detail'
|
||||||
import resetPassword from './resetPassword';
|
import deleteUser from './deleteUser'
|
||||||
import permissionInfos from './permissionInfos';
|
import resetPassword from './resetPassword'
|
||||||
import permissions from './permissions';
|
import permissionInfos from './permissionInfos'
|
||||||
import grant from './grant';
|
import permissions from './permissions'
|
||||||
import roleInfos from './roleInfos';
|
import grant from './grant'
|
||||||
import grantRole from './grantRole';
|
import roleInfos from './roleInfos'
|
||||||
import users from './users';
|
import grantRole from './grantRole'
|
||||||
|
import users from './users'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
saveOrUpdateUser,
|
saveOrUpdateUser,
|
||||||
all,
|
all,
|
||||||
sexes,
|
existName,
|
||||||
detail,
|
sexes,
|
||||||
deleteUser,
|
detail,
|
||||||
resetPassword,
|
deleteUser,
|
||||||
permissionInfos,
|
resetPassword,
|
||||||
permissions,
|
permissionInfos,
|
||||||
grant,
|
permissions,
|
||||||
roleInfos,
|
grant,
|
||||||
grantRole,
|
roleInfos,
|
||||||
users,
|
grantRole,
|
||||||
};
|
users,
|
||||||
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
100
src/api/auth/api.d.ts
vendored
100
src/api/auth/api.d.ts
vendored
@@ -1,71 +1,71 @@
|
|||||||
declare namespace auth {
|
declare namespace auth {
|
||||||
/**
|
/**
|
||||||
* AuthUser
|
* AuthUser
|
||||||
*/
|
*/
|
||||||
export interface AuthUser {
|
export interface AuthUser {
|
||||||
/** anonymous */
|
/** anonymous */
|
||||||
anonymous?: boolean;
|
anonymous?: boolean
|
||||||
|
|
||||||
/** 用户头像 */
|
/** 用户头像 */
|
||||||
avatar?: string;
|
avatar?: string
|
||||||
|
|
||||||
/** 邮箱 */
|
/** 邮箱 */
|
||||||
email?: string;
|
email?: string
|
||||||
|
|
||||||
/** extInfo */
|
/** extInfo */
|
||||||
extInfo?: auth.NutMap;
|
extInfo?: auth.NutMap
|
||||||
|
|
||||||
/** 姓名 */
|
/** 姓名 */
|
||||||
fullName: string;
|
fullName: string
|
||||||
|
|
||||||
/** 电话 */
|
/** 电话 */
|
||||||
mobile?: string;
|
mobile?: string
|
||||||
|
|
||||||
/** 密码 */
|
/** 密码 */
|
||||||
password: string;
|
password: string
|
||||||
|
|
||||||
/** 权限列表 */
|
/** 权限列表 */
|
||||||
permissions: Array<string>;
|
permissions: Array<string>
|
||||||
|
|
||||||
/** jwt refreshToken */
|
/** jwt refreshToken */
|
||||||
refreshToken: string;
|
refreshToken: string
|
||||||
|
|
||||||
/** 角色列表 */
|
/** 角色列表 */
|
||||||
roles: Array<string>;
|
roles: Array<string>
|
||||||
|
|
||||||
/** 性别 */
|
/** 性别 */
|
||||||
sex?: 'MALE' | 'FEMALE';
|
sex?: 'MALE' | 'FEMALE'
|
||||||
|
|
||||||
/** sexInfo */
|
/** sexInfo */
|
||||||
sexInfo?: auth.Codebook;
|
sexInfo?: auth.Codebook
|
||||||
|
|
||||||
/** jwt Token */
|
/** jwt Token */
|
||||||
token: string;
|
token: string
|
||||||
|
|
||||||
/** 用户名 */
|
/** 用户名 */
|
||||||
userName: string;
|
userName: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 登录实体
|
* 登录实体
|
||||||
*/
|
*/
|
||||||
export interface LoginDTO {
|
export interface LoginDTO {
|
||||||
/** 验证码 */
|
/** 验证码 */
|
||||||
captcha?: string;
|
captcha?: string
|
||||||
|
|
||||||
/** 手机号 */
|
/** 手机号 */
|
||||||
mobile?: string;
|
mobile?: string
|
||||||
|
|
||||||
/** 密码 */
|
/** 密码 */
|
||||||
password?: string;
|
password?: string
|
||||||
|
|
||||||
/** 登录类型 */
|
/** 登录类型 */
|
||||||
type: 'ACCOUNT' | 'WECHAT';
|
type: 'ACCOUNT' | 'WECHAT'
|
||||||
|
|
||||||
/** 用户名 */
|
/** 用户名 */
|
||||||
userName?: string;
|
userName?: string
|
||||||
|
|
||||||
/** uuid */
|
/** uuid */
|
||||||
uuid?: string;
|
uuid?: string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
/**
|
/**
|
||||||
* @desc 当前用户
|
* @desc 当前用户
|
||||||
*/
|
*/
|
||||||
import { defaultSuccess, defaultError, http } from '@/plugins/axios';
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosResponse } from 'axios'
|
||||||
export default async function (
|
export default async function (
|
||||||
success: (data: auth.AuthUser) => void = defaultSuccess,
|
success: (data: auth.AuthUser) => void = defaultSuccess,
|
||||||
fail: (error: { code: string; error?: string }) => void = defaultError,
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
return http({
|
return http({
|
||||||
method: 'get',
|
method: 'get',
|
||||||
url: `/auth/current-user`,
|
url: `/auth/current-user`,
|
||||||
})
|
})
|
||||||
.then((data: AxiosResponse<auth.AuthUser, unknown>) => {
|
.then((data: AxiosResponse<auth.AuthUser, unknown>) => {
|
||||||
success(data.data);
|
success(data.data)
|
||||||
})
|
})
|
||||||
.catch((error: { code: string; error?: string }) => fail(error));
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
/**
|
/**
|
||||||
* @desc 登录
|
* @desc 登录
|
||||||
*/
|
*/
|
||||||
import { defaultSuccess, defaultError, http } from '@/plugins/axios';
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosResponse } from 'axios'
|
||||||
export default async function (
|
export default async function (
|
||||||
/** 请求体 */
|
/** 请求体 */
|
||||||
requestBody: auth.LoginDTO,
|
requestBody: auth.LoginDTO,
|
||||||
|
|
||||||
success: (data: auth.AuthUser) => void = defaultSuccess,
|
success: (data: auth.AuthUser) => void = defaultSuccess,
|
||||||
fail: (error: { code: string; error?: string }) => void = defaultError,
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
return http({
|
return http({
|
||||||
method: 'post',
|
method: 'post',
|
||||||
url: `/auth/login`,
|
url: `/auth/login`,
|
||||||
data: requestBody,
|
data: requestBody,
|
||||||
})
|
})
|
||||||
.then((data: AxiosResponse<auth.AuthUser, unknown>) => {
|
.then((data: AxiosResponse<auth.AuthUser, unknown>) => {
|
||||||
success(data.data);
|
success(data.data)
|
||||||
})
|
})
|
||||||
.catch((error: { code: string; error?: string }) => fail(error));
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
}
|
}
|
||||||
|
|||||||
196
src/api/material/api.d.ts
vendored
196
src/api/material/api.d.ts
vendored
@@ -9,15 +9,24 @@ declare namespace material {
|
|||||||
/** 申请日期 */
|
/** 申请日期 */
|
||||||
applyDate?: string
|
applyDate?: string
|
||||||
|
|
||||||
|
/** 申请id */
|
||||||
|
applyId?: number
|
||||||
|
|
||||||
/** 申请数量 */
|
/** 申请数量 */
|
||||||
applyNum?: string
|
applyNum?: string
|
||||||
|
|
||||||
/** 申请类型 */
|
/** 申请类型 */
|
||||||
applyType?: 'PURCHASE_RECEIPT' | 'RETURN_RECEIPT' | 'LOAN_OUT' | 'AUDIT'
|
applyType?: 'PURCHASE_RECEIPT' | 'RETURN_RECEIPT' | 'LOAN_OUT' | 'AUDIT' | 'SCRAP_OUT'
|
||||||
|
|
||||||
|
/** applyTypeInfo */
|
||||||
|
applyTypeInfo?: material.Codebook
|
||||||
|
|
||||||
/** 物料编码 */
|
/** 物料编码 */
|
||||||
code?: string
|
code?: string
|
||||||
|
|
||||||
|
/** 是否确认 */
|
||||||
|
confirm?: boolean
|
||||||
|
|
||||||
/** 确认数量 */
|
/** 确认数量 */
|
||||||
confirmNum?: string
|
confirmNum?: string
|
||||||
|
|
||||||
@@ -27,11 +36,20 @@ declare namespace material {
|
|||||||
/** 备注 */
|
/** 备注 */
|
||||||
remark?: string
|
remark?: string
|
||||||
|
|
||||||
|
/** 审核状态 */
|
||||||
|
reviewResult?: 'WAIT_SCAN' | 'WAIT_SUBMIT' | 'WAIT_REVIEW' | 'PASS' | 'REJECT'
|
||||||
|
|
||||||
|
/** 审核人 */
|
||||||
|
reviewer?: string
|
||||||
|
|
||||||
/** 物料规格 */
|
/** 物料规格 */
|
||||||
spec?: string
|
spec?: string
|
||||||
|
|
||||||
/** 物料类型 */
|
/** 物料类型 */
|
||||||
type?: string
|
type?: string
|
||||||
|
|
||||||
|
/** 类型名称 */
|
||||||
|
typeName?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -41,8 +59,8 @@ declare namespace material {
|
|||||||
/** 申请单ID */
|
/** 申请单ID */
|
||||||
applyId?: number
|
applyId?: number
|
||||||
|
|
||||||
/** assignRule */
|
/** 是否需要赋码 */
|
||||||
assignRule?: 'LOW_VALUE' | 'HIGH_VALUE'
|
assignRule?: boolean
|
||||||
|
|
||||||
/** 确认数量 */
|
/** 确认数量 */
|
||||||
confirmQuantity?: number
|
confirmQuantity?: number
|
||||||
@@ -76,8 +94,8 @@ declare namespace material {
|
|||||||
/** 申请日期 */
|
/** 申请日期 */
|
||||||
applyDate?: string
|
applyDate?: string
|
||||||
|
|
||||||
/** 盘点类型(1: 全盘 2: 部分盘点) */
|
/** 盘点类型(1: 扫码 2: 人工) */
|
||||||
auditType?: 'ALL' | 'PARTIAL'
|
auditType?: 'SCAN' | 'MANUAL'
|
||||||
|
|
||||||
/** 是否确认(0: 未确认 1: 已确认) */
|
/** 是否确认(0: 未确认 1: 已确认) */
|
||||||
confirm?: boolean
|
confirm?: boolean
|
||||||
@@ -101,7 +119,7 @@ declare namespace material {
|
|||||||
taker?: string
|
taker?: string
|
||||||
|
|
||||||
/** 类型(1: 采购入库申请 2: 归还入库申请 3: 出库外借申请 4: 盘点申请) */
|
/** 类型(1: 采购入库申请 2: 归还入库申请 3: 出库外借申请 4: 盘点申请) */
|
||||||
type?: 'PURCHASE_RECEIPT' | 'RETURN_RECEIPT' | 'LOAN_OUT' | 'AUDIT'
|
type?: 'PURCHASE_RECEIPT' | 'RETURN_RECEIPT' | 'LOAN_OUT' | 'AUDIT' | 'SCRAP_OUT'
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string
|
updatedTime?: string
|
||||||
@@ -131,8 +149,8 @@ declare namespace material {
|
|||||||
/** 申请日期 */
|
/** 申请日期 */
|
||||||
applyDate?: string
|
applyDate?: string
|
||||||
|
|
||||||
/** 盘点类型(1: 全盘 2: 部分盘点) */
|
/** 盘点类型(1: 扫码 2: 人工) */
|
||||||
auditType?: 'ALL' | 'PARTIAL'
|
auditType?: 'SCAN' | 'MANUAL'
|
||||||
|
|
||||||
/** 是否确认(0: 未确认 1: 已确认) */
|
/** 是否确认(0: 未确认 1: 已确认) */
|
||||||
confirm?: boolean
|
confirm?: boolean
|
||||||
@@ -159,7 +177,10 @@ declare namespace material {
|
|||||||
taker?: string
|
taker?: string
|
||||||
|
|
||||||
/** 类型(1: 采购入库申请 2: 归还入库申请 3: 出库外借申请 4: 盘点申请) */
|
/** 类型(1: 采购入库申请 2: 归还入库申请 3: 出库外借申请 4: 盘点申请) */
|
||||||
type?: 'PURCHASE_RECEIPT' | 'RETURN_RECEIPT' | 'LOAN_OUT' | 'AUDIT'
|
type?: 'PURCHASE_RECEIPT' | 'RETURN_RECEIPT' | 'LOAN_OUT' | 'AUDIT' | 'SCRAP_OUT'
|
||||||
|
|
||||||
|
/** 物料类型 */
|
||||||
|
types?: Array<string>
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string
|
updatedTime?: string
|
||||||
@@ -176,12 +197,79 @@ declare namespace material {
|
|||||||
exceptionalData?: Array<material.StocktakingScanExceptionalData>
|
exceptionalData?: Array<material.StocktakingScanExceptionalData>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ManualStockDTO
|
||||||
|
*/
|
||||||
|
export interface ManualStockDTO {
|
||||||
|
/** 申请id */
|
||||||
|
applyId?: number
|
||||||
|
|
||||||
|
/** 编码 */
|
||||||
|
code?: string
|
||||||
|
|
||||||
|
/** 手动核实库存数量 */
|
||||||
|
manualStock?: number
|
||||||
|
|
||||||
|
/** 物料id */
|
||||||
|
materialId?: number
|
||||||
|
|
||||||
|
/** 异常原因 */
|
||||||
|
msg?: string
|
||||||
|
|
||||||
|
/** 名称 */
|
||||||
|
name?: string
|
||||||
|
|
||||||
|
/** 价格 */
|
||||||
|
price?: number
|
||||||
|
|
||||||
|
/** 规格 */
|
||||||
|
spec?: string
|
||||||
|
|
||||||
|
/** 库存数量 */
|
||||||
|
stock?: number
|
||||||
|
|
||||||
|
/** 类型 */
|
||||||
|
type?: string
|
||||||
|
|
||||||
|
/** typeName */
|
||||||
|
typeName?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 人工手动核实物料库存明细
|
||||||
|
*/
|
||||||
|
export interface ManualStockDetail {
|
||||||
|
/** 申请id */
|
||||||
|
applyId?: number
|
||||||
|
|
||||||
|
/** createdTime */
|
||||||
|
createdTime?: string
|
||||||
|
|
||||||
|
/** id */
|
||||||
|
id?: number
|
||||||
|
|
||||||
|
/** 手动核实库存数量 */
|
||||||
|
manualStock?: number
|
||||||
|
|
||||||
|
/** 物料id */
|
||||||
|
materialId?: number
|
||||||
|
|
||||||
|
/** 异常原因 */
|
||||||
|
msg?: string
|
||||||
|
|
||||||
|
/** 库存数量 */
|
||||||
|
stock?: number
|
||||||
|
|
||||||
|
/** updatedTime */
|
||||||
|
updatedTime?: string
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 物料信息
|
* 物料信息
|
||||||
*/
|
*/
|
||||||
export interface Material {
|
export interface Material {
|
||||||
/** 赋码规则(2-低值易耗品(不参与赋码) 1-高价值工具类(参与唯一赋码) */
|
/** 是否赋码 */
|
||||||
assignRule?: 'LOW_VALUE' | 'HIGH_VALUE'
|
assignRule?: boolean
|
||||||
|
|
||||||
/** 编码 */
|
/** 编码 */
|
||||||
code?: string
|
code?: string
|
||||||
@@ -198,6 +286,9 @@ declare namespace material {
|
|||||||
/** 名称 */
|
/** 名称 */
|
||||||
name?: string
|
name?: string
|
||||||
|
|
||||||
|
/** 价格 */
|
||||||
|
price?: number
|
||||||
|
|
||||||
/** 规格 */
|
/** 规格 */
|
||||||
spec?: string
|
spec?: string
|
||||||
|
|
||||||
@@ -207,6 +298,9 @@ declare namespace material {
|
|||||||
/** 类型 */
|
/** 类型 */
|
||||||
type?: string
|
type?: string
|
||||||
|
|
||||||
|
/** typeName */
|
||||||
|
typeName?: string
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string
|
updatedTime?: string
|
||||||
}
|
}
|
||||||
@@ -231,7 +325,7 @@ declare namespace material {
|
|||||||
materialId?: number
|
materialId?: number
|
||||||
|
|
||||||
/** 状态 */
|
/** 状态 */
|
||||||
status?: 'IN' | 'OUT' | 'OFF' | 'LOST'
|
status?: 'IN' | 'OUT' | 'OFF' | 'LOST' | 'SCRAP_OUT'
|
||||||
|
|
||||||
/** updatedTime */
|
/** updatedTime */
|
||||||
updatedTime?: string
|
updatedTime?: string
|
||||||
@@ -251,6 +345,38 @@ declare namespace material {
|
|||||||
reviewResult?: 'WAIT_SCAN' | 'WAIT_SUBMIT' | 'WAIT_REVIEW' | 'PASS' | 'REJECT'
|
reviewResult?: 'WAIT_SCAN' | 'WAIT_SUBMIT' | 'WAIT_REVIEW' | 'PASS' | 'REJECT'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ScrapOutApplyDTO
|
||||||
|
*/
|
||||||
|
export interface ScrapOutApplyDTO {
|
||||||
|
/** 申请人 */
|
||||||
|
applicant?: string
|
||||||
|
|
||||||
|
/** 条码集合 */
|
||||||
|
barcodeList?: string
|
||||||
|
|
||||||
|
/** 确认数量 */
|
||||||
|
confirmQuantity?: number
|
||||||
|
|
||||||
|
/** 物料名称 */
|
||||||
|
name?: string
|
||||||
|
|
||||||
|
/** 单价 */
|
||||||
|
price?: string
|
||||||
|
|
||||||
|
/** 报废原因 */
|
||||||
|
remark?: string
|
||||||
|
|
||||||
|
/** 物料规格 */
|
||||||
|
spec?: string
|
||||||
|
|
||||||
|
/** 类型 */
|
||||||
|
type?: string
|
||||||
|
|
||||||
|
/** 类型名称 */
|
||||||
|
typeName?: string
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 库存明细
|
* 库存明细
|
||||||
*/
|
*/
|
||||||
@@ -332,6 +458,52 @@ declare namespace material {
|
|||||||
updatedTime?: string
|
updatedTime?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 类型
|
||||||
|
*/
|
||||||
|
export interface Type {
|
||||||
|
/** createdTime */
|
||||||
|
createdTime?: string
|
||||||
|
|
||||||
|
/** id */
|
||||||
|
id?: number
|
||||||
|
|
||||||
|
/** 类型级别 */
|
||||||
|
level: 'ONE' | 'TWO'
|
||||||
|
|
||||||
|
/** levelInfo */
|
||||||
|
levelInfo?: material.Codebook
|
||||||
|
|
||||||
|
/** 类型名称 */
|
||||||
|
name: string
|
||||||
|
|
||||||
|
/** 类型编码 */
|
||||||
|
no: string
|
||||||
|
|
||||||
|
/** 上级类型编码 */
|
||||||
|
parentNo?: string
|
||||||
|
|
||||||
|
/** updatedTime */
|
||||||
|
updatedTime?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TypeTree
|
||||||
|
*/
|
||||||
|
export interface TypeTree {
|
||||||
|
/** children */
|
||||||
|
children?: Array<material.TypeTree>
|
||||||
|
|
||||||
|
/** 类型名称 */
|
||||||
|
label: string
|
||||||
|
|
||||||
|
/** parentNo */
|
||||||
|
parentNo?: string
|
||||||
|
|
||||||
|
/** 类型编码 */
|
||||||
|
value: string
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WaitScanInfo
|
* WaitScanInfo
|
||||||
*/
|
*/
|
||||||
|
|||||||
32
src/api/material/mods/apply/downloadAuditExcel.ts
Normal file
32
src/api/material/mods/apply/downloadAuditExcel.ts
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
/**
|
||||||
|
* @desc 导出盘点申请单列表
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export interface Params {
|
||||||
|
/** 盘点类型 */
|
||||||
|
auditType?: 'SCAN' | 'MANUAL'
|
||||||
|
/** 盘点人 */
|
||||||
|
taker?: string
|
||||||
|
/** 创建日期 */
|
||||||
|
createDate?: string
|
||||||
|
/** 审核状态 */
|
||||||
|
reviewResults?: Array<'WAIT_SCAN' | 'WAIT_SUBMIT' | 'WAIT_REVIEW' | 'PASS' | 'REJECT'>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function (
|
||||||
|
params: Params,
|
||||||
|
success: (data: void) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/apply/audit/download-excel`,
|
||||||
|
|
||||||
|
params,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<void, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
30
src/api/material/mods/apply/downloadExcel.ts
Normal file
30
src/api/material/mods/apply/downloadExcel.ts
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
/**
|
||||||
|
* @desc 导出申请单列表
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export interface Params {
|
||||||
|
/** 申请类型(1入库 3出库 4盘点) */
|
||||||
|
applyType: number
|
||||||
|
/** 物料类型 */
|
||||||
|
type?: string
|
||||||
|
/** 编码/名称 */
|
||||||
|
key?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function (
|
||||||
|
params: Params,
|
||||||
|
success: (data: void) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/apply/download-excel`,
|
||||||
|
|
||||||
|
params,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<void, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
21
src/api/material/mods/apply/getManualCheckData.ts
Normal file
21
src/api/material/mods/apply/getManualCheckData.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
/**
|
||||||
|
* @desc 查询人工盘点选中物料的待核查数据
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
/** 申请单ID */
|
||||||
|
applyId: number,
|
||||||
|
|
||||||
|
success: (data: Array<material.Material>) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/manual/check-data/${applyId}`,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<Array<material.Material>, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
21
src/api/material/mods/apply/getManualStock.ts
Normal file
21
src/api/material/mods/apply/getManualStock.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
/**
|
||||||
|
* @desc 获取人工盘点数据
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
/** 申请单ID */
|
||||||
|
applyId: number,
|
||||||
|
|
||||||
|
success: (data: Array<material.ManualStockDTO>) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/manual/data/${applyId}`,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<Array<material.ManualStockDTO>, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
21
src/api/material/mods/apply/getScrapOutById.ts
Normal file
21
src/api/material/mods/apply/getScrapOutById.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
/**
|
||||||
|
* @desc 获取报废出库申请单
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
/** 申请单ID */
|
||||||
|
applyId: number,
|
||||||
|
|
||||||
|
success: (data: Array<material.ScrapOutApplyDTO>) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/scrap-out/${applyId}`,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<Array<material.ScrapOutApplyDTO>, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
@@ -4,24 +4,38 @@
|
|||||||
*/
|
*/
|
||||||
import searchPage from './searchPage'
|
import searchPage from './searchPage'
|
||||||
import saveApply from './saveApply'
|
import saveApply from './saveApply'
|
||||||
|
import downloadAuditExcel from './downloadAuditExcel'
|
||||||
|
import downloadExcel from './downloadExcel'
|
||||||
import detail from './detail'
|
import detail from './detail'
|
||||||
import searchAuditPage from './searchAuditPage'
|
import searchAuditPage from './searchAuditPage'
|
||||||
import auditApply from './auditApply'
|
import auditApply from './auditApply'
|
||||||
import getComparisonRes from './getComparisonRes'
|
import getComparisonRes from './getComparisonRes'
|
||||||
import updateReviewResult from './updateReviewResult'
|
import updateReviewResult from './updateReviewResult'
|
||||||
|
import submitManualStock from './submitManualStock'
|
||||||
|
import getManualCheckData from './getManualCheckData'
|
||||||
|
import getManualStock from './getManualStock'
|
||||||
import saveScanData from './saveScanData'
|
import saveScanData from './saveScanData'
|
||||||
|
import submitScrapOutReview from './submitScrapOutReview'
|
||||||
|
import getScrapOutById from './getScrapOutById'
|
||||||
import submitReview from './submitReview'
|
import submitReview from './submitReview'
|
||||||
import getWaitScanData from './getWaitScanData'
|
import getWaitScanData from './getWaitScanData'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
searchPage,
|
searchPage,
|
||||||
saveApply,
|
saveApply,
|
||||||
|
downloadAuditExcel,
|
||||||
|
downloadExcel,
|
||||||
detail,
|
detail,
|
||||||
searchAuditPage,
|
searchAuditPage,
|
||||||
auditApply,
|
auditApply,
|
||||||
getComparisonRes,
|
getComparisonRes,
|
||||||
updateReviewResult,
|
updateReviewResult,
|
||||||
|
submitManualStock,
|
||||||
|
getManualCheckData,
|
||||||
|
getManualStock,
|
||||||
saveScanData,
|
saveScanData,
|
||||||
|
submitScrapOutReview,
|
||||||
|
getScrapOutById,
|
||||||
submitReview,
|
submitReview,
|
||||||
getWaitScanData,
|
getWaitScanData,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,39 +1,37 @@
|
|||||||
/**
|
/**
|
||||||
* @desc 分页查询盘点列表
|
* @desc 分页查询盘点列表
|
||||||
*/
|
*/
|
||||||
import { defaultSuccess, defaultError, http } from '@/plugins/axios';
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosResponse } from 'axios'
|
||||||
import type { IPage } from '@/api/api';
|
import type { IPage } from '@/api/api'
|
||||||
export interface Params {
|
export interface Params {
|
||||||
/** 页码 */
|
/** 页码 */
|
||||||
page?: number;
|
page?: number
|
||||||
/** 页面大小 */
|
/** 页面大小 */
|
||||||
size?: number;
|
size?: number
|
||||||
/** 盘点类型 */
|
/** 盘点类型 */
|
||||||
auditType?: 'ALL' | 'PARTIAL';
|
auditType?: 'SCAN' | 'MANUAL'
|
||||||
/** 盘点人 */
|
/** 盘点人 */
|
||||||
taker?: string;
|
taker?: string
|
||||||
/** 创建日期 */
|
/** 创建日期 */
|
||||||
createDate?: string;
|
createDate?: string
|
||||||
/** 审核状态 */
|
/** 审核状态 */
|
||||||
reviewResults?: Array<
|
reviewResults?: Array<'WAIT_SCAN' | 'WAIT_SUBMIT' | 'WAIT_REVIEW' | 'PASS' | 'REJECT'>
|
||||||
'WAIT_SCAN' | 'WAIT_SUBMIT' | 'WAIT_REVIEW' | 'PASS' | 'REJECT'
|
|
||||||
>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function (
|
export default async function (
|
||||||
params: Params,
|
params: Params,
|
||||||
success: (data: IPage<material.ApplyForm>) => void = defaultSuccess,
|
success: (data: IPage<material.ApplyForm>) => void = defaultSuccess,
|
||||||
fail: (error: { code: string; error?: string }) => void = defaultError,
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
return http({
|
return http({
|
||||||
method: 'get',
|
method: 'get',
|
||||||
url: `/audit-applies`,
|
url: `/audit-applies`,
|
||||||
|
|
||||||
params,
|
params,
|
||||||
})
|
})
|
||||||
.then((data: AxiosResponse<IPage<material.ApplyForm>, unknown>) => {
|
.then((data: AxiosResponse<IPage<material.ApplyForm>, unknown>) => {
|
||||||
success(data.data);
|
success(data.data)
|
||||||
})
|
})
|
||||||
.catch((error: { code: string; error?: string }) => fail(error));
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,37 +1,35 @@
|
|||||||
/**
|
/**
|
||||||
* @desc 分页查询申请列表
|
* @desc 分页查询申请列表
|
||||||
*/
|
*/
|
||||||
import { defaultSuccess, defaultError, http } from '@/plugins/axios';
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosResponse } from 'axios'
|
||||||
import type { IPage } from '@/api/api';
|
import type { IPage } from '@/api/api'
|
||||||
export interface Params {
|
export interface Params {
|
||||||
/** 申请类型(1入库 3出库 4盘点) */
|
/** 申请类型(1入库 3出库 4盘点) */
|
||||||
applyType: number;
|
applyType: number
|
||||||
/** 页码 */
|
/** 页码 */
|
||||||
page?: number;
|
page?: number
|
||||||
/** 页面大小 */
|
/** 页面大小 */
|
||||||
size?: number;
|
size?: number
|
||||||
/** 物料类型 */
|
/** 物料类型 */
|
||||||
type?: string;
|
type?: string
|
||||||
/** 物料编码 */
|
/** 编码/名称 */
|
||||||
code?: string;
|
key?: string
|
||||||
/** 物料名称 */
|
|
||||||
name?: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function (
|
export default async function (
|
||||||
params: Params,
|
params: Params,
|
||||||
success: (data: IPage<material.ApplyDTO>) => void = defaultSuccess,
|
success: (data: IPage<material.ApplyDTO>) => void = defaultSuccess,
|
||||||
fail: (error: { code: string; error?: string }) => void = defaultError,
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
return http({
|
return http({
|
||||||
method: 'get',
|
method: 'get',
|
||||||
url: `/applies`,
|
url: `/applies`,
|
||||||
|
|
||||||
params,
|
params,
|
||||||
})
|
})
|
||||||
.then((data: AxiosResponse<IPage<material.ApplyDTO>, unknown>) => {
|
.then((data: AxiosResponse<IPage<material.ApplyDTO>, unknown>) => {
|
||||||
success(data.data);
|
success(data.data)
|
||||||
})
|
})
|
||||||
.catch((error: { code: string; error?: string }) => fail(error));
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
}
|
}
|
||||||
|
|||||||
22
src/api/material/mods/apply/submitManualStock.ts
Normal file
22
src/api/material/mods/apply/submitManualStock.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
/**
|
||||||
|
* @desc 提交人工盘点数据
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
/** 请求体 */
|
||||||
|
requestBody: Array<material.ManualStockDetail>,
|
||||||
|
|
||||||
|
success: (data: void) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'post',
|
||||||
|
url: `/manual/audit-apply`,
|
||||||
|
data: requestBody,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<void, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
22
src/api/material/mods/apply/submitScrapOutReview.ts
Normal file
22
src/api/material/mods/apply/submitScrapOutReview.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
/**
|
||||||
|
* @desc 提交报废出库审核
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
/** 请求体 */
|
||||||
|
requestBody: material.ReviewDTO,
|
||||||
|
|
||||||
|
success: (data: void) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'post',
|
||||||
|
url: `/scrap-out-review`,
|
||||||
|
data: requestBody,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<void, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
@@ -1,8 +1,11 @@
|
|||||||
import apply from './apply';
|
import apply from './apply'
|
||||||
|
|
||||||
import material from './material';
|
import material from './material'
|
||||||
|
|
||||||
|
import type from './type'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
apply,
|
apply,
|
||||||
material,
|
material,
|
||||||
};
|
type,
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,18 +1,28 @@
|
|||||||
/**
|
/**
|
||||||
* @desc 查询所有物料列表
|
* @desc 查询所有物料列表
|
||||||
*/
|
*/
|
||||||
import { defaultSuccess, defaultError, http } from '@/plugins/axios';
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosResponse } from 'axios'
|
||||||
export default async function (
|
export interface Params {
|
||||||
success: (data: Array<material.Material>) => void = defaultSuccess,
|
/** 类型 */
|
||||||
fail: (error: { code: string; error?: string }) => void = defaultError,
|
type?: string
|
||||||
): Promise<void> {
|
/** 是否赋码 */
|
||||||
return http({
|
assignRule?: boolean
|
||||||
method: 'get',
|
}
|
||||||
url: `/material/list`,
|
|
||||||
})
|
export default async function (
|
||||||
.then((data: AxiosResponse<Array<material.Material>, unknown>) => {
|
params: Params,
|
||||||
success(data.data);
|
success: (data: Array<material.Material>) => void = defaultSuccess,
|
||||||
})
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
.catch((error: { code: string; error?: string }) => fail(error));
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'post',
|
||||||
|
url: `/material/list`,
|
||||||
|
|
||||||
|
params,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<Array<material.Material>, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
}
|
}
|
||||||
|
|||||||
28
src/api/material/mods/material/downloadExcel.ts
Normal file
28
src/api/material/mods/material/downloadExcel.ts
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
/**
|
||||||
|
* @desc 导出物料列表
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export interface Params {
|
||||||
|
/** 类型 */
|
||||||
|
type?: string
|
||||||
|
/** 搜索关键词 */
|
||||||
|
key?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function (
|
||||||
|
params: Params,
|
||||||
|
success: (data: void) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/material/download-excel`,
|
||||||
|
|
||||||
|
params,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<void, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
@@ -3,6 +3,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
import saveOrUpdateMaterial from './saveOrUpdateMaterial'
|
import saveOrUpdateMaterial from './saveOrUpdateMaterial'
|
||||||
|
import downloadExcel from './downloadExcel'
|
||||||
import all from './all'
|
import all from './all'
|
||||||
import detail from './detail'
|
import detail from './detail'
|
||||||
import deleteMaterial from './deleteMaterial'
|
import deleteMaterial from './deleteMaterial'
|
||||||
@@ -11,6 +12,7 @@ import materials from './materials'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
saveOrUpdateMaterial,
|
saveOrUpdateMaterial,
|
||||||
|
downloadExcel,
|
||||||
all,
|
all,
|
||||||
detail,
|
detail,
|
||||||
deleteMaterial,
|
deleteMaterial,
|
||||||
|
|||||||
@@ -1,33 +1,33 @@
|
|||||||
/**
|
/**
|
||||||
* @desc 分页查询物料列表
|
* @desc 分页查询物料列表
|
||||||
*/
|
*/
|
||||||
import { defaultSuccess, defaultError, http } from '@/plugins/axios';
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosResponse } from 'axios'
|
||||||
import type { IPage } from '@/api/api';
|
import type { IPage } from '@/api/api'
|
||||||
export interface Params {
|
export interface Params {
|
||||||
/** 页码 */
|
/** 页码 */
|
||||||
page?: number;
|
page?: number
|
||||||
/** 页面大小 */
|
/** 页面大小 */
|
||||||
size?: number;
|
size?: number
|
||||||
/** 类型 */
|
/** 类型 */
|
||||||
type?: number;
|
type?: string
|
||||||
/** 搜索关键词 */
|
/** 搜索关键词 */
|
||||||
key?: string;
|
key?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function (
|
export default async function (
|
||||||
params: Params,
|
params: Params,
|
||||||
success: (data: IPage<material.Material>) => void = defaultSuccess,
|
success: (data: IPage<material.Material>) => void = defaultSuccess,
|
||||||
fail: (error: { code: string; error?: string }) => void = defaultError,
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
return http({
|
return http({
|
||||||
method: 'get',
|
method: 'get',
|
||||||
url: `/materials`,
|
url: `/materials`,
|
||||||
|
|
||||||
params,
|
params,
|
||||||
})
|
})
|
||||||
.then((data: AxiosResponse<IPage<material.Material>, unknown>) => {
|
.then((data: AxiosResponse<IPage<material.Material>, unknown>) => {
|
||||||
success(data.data);
|
success(data.data)
|
||||||
})
|
})
|
||||||
.catch((error: { code: string; error?: string }) => fail(error));
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
/**
|
/**
|
||||||
* @desc 增加/编辑物料
|
* @desc 增加/编辑物料
|
||||||
*/
|
*/
|
||||||
import { defaultSuccess, defaultError, http } from '@/plugins/axios';
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosResponse } from 'axios'
|
||||||
export default async function (
|
export default async function (
|
||||||
/** 请求体 */
|
/** 请求体 */
|
||||||
requestBody: material.Material,
|
requestBody: material.Material,
|
||||||
|
|
||||||
success: (data: material.Material) => void = defaultSuccess,
|
success: (data: material.Material) => void = defaultSuccess,
|
||||||
fail: (error: { code: string; error?: string }) => void = defaultError,
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
return http({
|
return http({
|
||||||
method: 'put',
|
method: 'put',
|
||||||
url: `/material`,
|
url: `/material`,
|
||||||
data: requestBody,
|
data: requestBody,
|
||||||
})
|
})
|
||||||
.then((data: AxiosResponse<material.Material, unknown>) => {
|
.then((data: AxiosResponse<material.Material, unknown>) => {
|
||||||
success(data.data);
|
success(data.data)
|
||||||
})
|
})
|
||||||
.catch((error: { code: string; error?: string }) => fail(error));
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
}
|
}
|
||||||
|
|||||||
22
src/api/material/mods/type/addAndModify.ts
Normal file
22
src/api/material/mods/type/addAndModify.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
/**
|
||||||
|
* @desc 增加/更新地区
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
/** 请求体 */
|
||||||
|
requestBody: material.Type,
|
||||||
|
|
||||||
|
success: (data: material.Type) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'post',
|
||||||
|
url: `/area`,
|
||||||
|
data: requestBody,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<material.Type, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
26
src/api/material/mods/type/areas.ts
Normal file
26
src/api/material/mods/type/areas.ts
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
/**
|
||||||
|
* @desc 查询类型
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export interface Params {
|
||||||
|
/** 搜索关键词 */
|
||||||
|
key?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function (
|
||||||
|
params: Params,
|
||||||
|
success: (data: Array<material.Type>) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/areas`,
|
||||||
|
|
||||||
|
params,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<Array<material.Type>, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
21
src/api/material/mods/type/deleteArea.ts
Normal file
21
src/api/material/mods/type/deleteArea.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
/**
|
||||||
|
* @desc 删除类型
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
/** id */
|
||||||
|
id: number,
|
||||||
|
|
||||||
|
success: (data: void) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'delete',
|
||||||
|
url: `/area/${id}`,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<void, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
17
src/api/material/mods/type/index.ts
Normal file
17
src/api/material/mods/type/index.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
/**
|
||||||
|
* @description 物料类型管理
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
import addAndModify from './addAndModify'
|
||||||
|
import levels from './levels'
|
||||||
|
import trees from './trees'
|
||||||
|
import deleteArea from './deleteArea'
|
||||||
|
import areas from './areas'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
addAndModify,
|
||||||
|
levels,
|
||||||
|
trees,
|
||||||
|
deleteArea,
|
||||||
|
areas,
|
||||||
|
}
|
||||||
20
src/api/material/mods/type/levels.ts
Normal file
20
src/api/material/mods/type/levels.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* @desc 级别
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
import type { Codebook } from '@/api/api'
|
||||||
|
|
||||||
|
export default async function (
|
||||||
|
success: (data: Array<Codebook>) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/area/levels`,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<Array<Codebook>, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
18
src/api/material/mods/type/trees.ts
Normal file
18
src/api/material/mods/type/trees.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
/**
|
||||||
|
* @desc 类型树
|
||||||
|
*/
|
||||||
|
import { defaultSuccess, defaultError, http } from '@/plugins/axios'
|
||||||
|
import type { AxiosResponse } from 'axios'
|
||||||
|
export default async function (
|
||||||
|
success: (data: Array<material.TypeTree>) => void = defaultSuccess,
|
||||||
|
fail: (error: { code: string; error?: string }) => void = defaultError,
|
||||||
|
): Promise<void> {
|
||||||
|
return http({
|
||||||
|
method: 'get',
|
||||||
|
url: `/area/trees`,
|
||||||
|
})
|
||||||
|
.then((data: AxiosResponse<Array<material.TypeTree>, unknown>) => {
|
||||||
|
success(data.data)
|
||||||
|
})
|
||||||
|
.catch((error: { code: string; error?: string }) => fail(error))
|
||||||
|
}
|
||||||
1
src/components.d.ts
vendored
1
src/components.d.ts
vendored
@@ -56,6 +56,7 @@ declare module 'vue' {
|
|||||||
ATooltip: typeof import('ant-design-vue/es')['Tooltip']
|
ATooltip: typeof import('ant-design-vue/es')['Tooltip']
|
||||||
ATransfer: typeof import('ant-design-vue/es')['Transfer']
|
ATransfer: typeof import('ant-design-vue/es')['Transfer']
|
||||||
ATree: typeof import('ant-design-vue/es')['Tree']
|
ATree: typeof import('ant-design-vue/es')['Tree']
|
||||||
|
ATreeSelect: typeof import('ant-design-vue/es')['TreeSelect']
|
||||||
ATypographyLink: typeof import('ant-design-vue/es')['TypographyLink']
|
ATypographyLink: typeof import('ant-design-vue/es')['TypographyLink']
|
||||||
ATypographyParagraph: typeof import('ant-design-vue/es')['TypographyParagraph']
|
ATypographyParagraph: typeof import('ant-design-vue/es')['TypographyParagraph']
|
||||||
ATypographyTitle: typeof import('ant-design-vue/es')['TypographyTitle']
|
ATypographyTitle: typeof import('ant-design-vue/es')['TypographyTitle']
|
||||||
|
|||||||
@@ -169,7 +169,7 @@
|
|||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (width <= 576px) {
|
@media (width <=576px) {
|
||||||
.content {
|
.content {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import { RouteRecordRaw } from 'vue-router'
|
|||||||
import XEUtils from 'xe-utils'
|
import XEUtils from 'xe-utils'
|
||||||
import i18n from '@/locales'
|
import i18n from '@/locales'
|
||||||
import { routes } from '@/router'
|
import { routes } from '@/router'
|
||||||
|
import { useUserStore } from '@/stores/user'
|
||||||
const { t } = i18n.global
|
const { t } = i18n.global
|
||||||
export interface MenuNode {
|
export interface MenuNode {
|
||||||
key: string
|
key: string
|
||||||
@@ -73,8 +74,8 @@ export function menuTree() {
|
|||||||
|
|
||||||
export function hasPermission(key?: string) {
|
export function hasPermission(key?: string) {
|
||||||
console.log(key)
|
console.log(key)
|
||||||
// return useUserStore().hasPermission(key);
|
return useUserStore().hasPermission(key) // 过滤菜单是否显示
|
||||||
return true
|
// return true
|
||||||
}
|
}
|
||||||
|
|
||||||
export function permissions() {
|
export function permissions() {
|
||||||
@@ -91,6 +92,7 @@ export function fliteredMenus() {
|
|||||||
return !item.hidden
|
return !item.hidden
|
||||||
})
|
})
|
||||||
.filter((item) => {
|
.filter((item) => {
|
||||||
|
if (item.key === 'Dashboard') return true // 首页显示
|
||||||
return hasPermission(item.keyPath)
|
return hasPermission(item.keyPath)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,6 +67,7 @@
|
|||||||
import { config } from '@/settings/application'
|
import { config } from '@/settings/application'
|
||||||
import { MenuInfo } from 'ant-design-vue/es/menu/src/interface'
|
import { MenuInfo } from 'ant-design-vue/es/menu/src/interface'
|
||||||
import { useUserStore } from '@/stores/user'
|
import { useUserStore } from '@/stores/user'
|
||||||
|
import api from '@/api'
|
||||||
const t = useI18n()
|
const t = useI18n()
|
||||||
const user = useUserStore()
|
const user = useUserStore()
|
||||||
|
|
||||||
@@ -81,11 +82,13 @@
|
|||||||
}
|
}
|
||||||
const logout = () => {
|
const logout = () => {
|
||||||
Modal.confirm({
|
Modal.confirm({
|
||||||
title: t.t('layout.user.modal.logout.title'),
|
title: '退出登录',
|
||||||
icon: createVNode(ExclamationCircleOutlined),
|
icon: createVNode(ExclamationCircleOutlined),
|
||||||
content: createVNode('div', { style: 'color:red;' }, t.t('layout.user.modal.logout.content')),
|
content: createVNode('div', { style: 'color:red;' }, '确定退出系统吗?'),
|
||||||
onOk() {
|
onOk() {
|
||||||
console.log(1)
|
api.authApi.auth.logout(() => {
|
||||||
|
user.logout()
|
||||||
|
})
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"index": "首页",
|
"index": "首页",
|
||||||
|
"dashboard": "首页",
|
||||||
"acl": {
|
"acl": {
|
||||||
"name": "系统管理",
|
"name": "系统管理",
|
||||||
"users": "用户管理",
|
"users": "用户管理",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { http } from '@/settings/http'
|
|||||||
import { useUserStore } from '@/stores/user'
|
import { useUserStore } from '@/stores/user'
|
||||||
import axios, { InternalAxiosRequestConfig, type AxiosError, type AxiosResponse } from 'axios'
|
import axios, { InternalAxiosRequestConfig, type AxiosError, type AxiosResponse } from 'axios'
|
||||||
import type { App } from 'vue'
|
import type { App } from 'vue'
|
||||||
import router from '@/router'
|
import { notification } from 'ant-design-vue'
|
||||||
|
|
||||||
export interface GlobalError {
|
export interface GlobalError {
|
||||||
/** 错误码 */
|
/** 错误码 */
|
||||||
@@ -24,9 +24,13 @@ export function defaultSuccess(data: unknown): void {
|
|||||||
console.log(data)
|
console.log(data)
|
||||||
}
|
}
|
||||||
export function defaultError(error: { code: string; error?: string }): void {
|
export function defaultError(error: { code: string; error?: string }): void {
|
||||||
if (error) {
|
window.console.log(error)
|
||||||
router.push({ path: '/message', query: { status: error.code, message: error.error } })
|
notification.error({
|
||||||
}
|
message: '操作异常: ',
|
||||||
|
placement: 'top',
|
||||||
|
description: error.error + '(' + error.code + ')',
|
||||||
|
duration: 6,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
const config = {
|
const config = {
|
||||||
baseURL: http.prefix,
|
baseURL: http.prefix,
|
||||||
|
|||||||
@@ -2,8 +2,15 @@ import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
|
|||||||
import UserLayout from '@/layout/user-layout.vue'
|
import UserLayout from '@/layout/user-layout.vue'
|
||||||
import AdminLayout from '@/layout/admin-layout.vue'
|
import AdminLayout from '@/layout/admin-layout.vue'
|
||||||
import BlankLayout from '@/layout/blank-layout.vue'
|
import BlankLayout from '@/layout/blank-layout.vue'
|
||||||
|
import router from '@/router'
|
||||||
|
|
||||||
export const routes: Array<RouteRecordRaw> = [
|
export const routes: Array<RouteRecordRaw> = [
|
||||||
|
{
|
||||||
|
path: '/admin/dashboard',
|
||||||
|
meta: { title: 'menus.dashboard', icon: 'icon-dashboard', flat: true },
|
||||||
|
name: 'Dashboard',
|
||||||
|
component: () => import('../views/admin/dashboard-page.vue'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/admin/acl', // 系统管理
|
path: '/admin/acl', // 系统管理
|
||||||
name: 'ACL',
|
name: 'ACL',
|
||||||
@@ -35,11 +42,17 @@ export const routes: Array<RouteRecordRaw> = [
|
|||||||
meta: { title: 'menus.acl.material', icon: 'icon-permission' },
|
meta: { title: 'menus.acl.material', icon: 'icon-permission' },
|
||||||
component: () => import('../views/stock/material/material-page.vue'),
|
component: () => import('../views/stock/material/material-page.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/admin/acl/type', //物料类型
|
||||||
|
name: 'Type',
|
||||||
|
meta: { title: '物料类型', icon: 'icon-permission' },
|
||||||
|
component: () => import('../views/stock/type/type-page.vue'),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/stock/name', // 库存管理
|
path: '/stock/name', // 库存管理
|
||||||
name: 'STOCK',
|
name: 'Stock',
|
||||||
meta: { title: 'menus.stock.name', icon: 'icon-acl', flat: true },
|
meta: { title: 'menus.stock.name', icon: 'icon-acl', flat: true },
|
||||||
component: BlankLayout,
|
component: BlankLayout,
|
||||||
redirect: () => ({ name: 'Inbound' }),
|
redirect: () => ({ name: 'Inbound' }),
|
||||||
@@ -66,32 +79,32 @@ export const routes: Array<RouteRecordRaw> = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/statistic/name', // 统计报表
|
path: '/statistic/name', // 统计报表
|
||||||
name: 'STATISTIC',
|
name: 'Statistic',
|
||||||
meta: { title: 'menus.statistic.name', icon: 'icon-acl', flat: true },
|
meta: { title: 'menus.statistic.name', icon: 'icon-acl', flat: true },
|
||||||
component: BlankLayout,
|
component: BlankLayout,
|
||||||
redirect: () => ({ name: 'S-Inbound' }),
|
redirect: () => ({ name: 'Query-Stock' }),
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '/statistic/stock', //库存
|
path: '/statistic/stock', //库存
|
||||||
name: 'S-stock',
|
name: 'Query-Stock',
|
||||||
meta: { title: 'menus.statistic.stock', icon: 'icon-permission' },
|
meta: { title: 'menus.statistic.stock', icon: 'icon-permission' },
|
||||||
component: () => import('../views/stock/report/materialReport-page.vue'),
|
component: () => import('../views/stock/report/materialReport-page.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/statistic/inbound', //入库
|
path: '/statistic/inbound', //入库
|
||||||
name: 'S-Inbound',
|
name: 'Query-Inbound',
|
||||||
meta: { title: 'menus.statistic.inbound', icon: 'icon-permission' },
|
meta: { title: 'menus.statistic.inbound', icon: 'icon-permission' },
|
||||||
component: () => import('../views/stock/report/inboundReport-page.vue'),
|
component: () => import('../views/stock/report/inboundReport-page.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/statistic/outbound', //出库
|
path: '/statistic/outbound', //出库
|
||||||
name: 'S-Outbound',
|
name: 'Query-Outbound',
|
||||||
meta: { title: 'menus.statistic.outbound', icon: 'icon-permission' },
|
meta: { title: 'menus.statistic.outbound', icon: 'icon-permission' },
|
||||||
component: () => import('../views/stock/report/outboundReport-page.vue'),
|
component: () => import('../views/stock/report/outboundReport-page.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/statistic/stocktaking', //盘点
|
path: '/statistic/stocktaking', //盘点
|
||||||
name: 'S-stocktaking',
|
name: 'Query-Stocktaking',
|
||||||
meta: { title: 'menus.statistic.stocktaking', icon: 'icon-permission' },
|
meta: { title: 'menus.statistic.stocktaking', icon: 'icon-permission' },
|
||||||
component: () => import('../views/stock/report/stocktakingReport-page.vue'),
|
component: () => import('../views/stock/report/stocktakingReport-page.vue'),
|
||||||
},
|
},
|
||||||
@@ -99,49 +112,117 @@ export const routes: Array<RouteRecordRaw> = [
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
const getNewRouter = () => {
|
export default createRouter({
|
||||||
// TODO 用户store判断是否登录,登录就返回过滤的,没有登录就返回全量
|
history: createWebHashHistory(),
|
||||||
|
routes: [
|
||||||
|
{
|
||||||
|
path: '/',
|
||||||
|
name: 'Index',
|
||||||
|
redirect: '/login',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/login',
|
||||||
|
name: 'Login',
|
||||||
|
redirect: '/login/user',
|
||||||
|
component: UserLayout,
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'user',
|
||||||
|
name: 'LoginPage',
|
||||||
|
component: () => import('../views/login/user-login.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/admin',
|
||||||
|
name: 'Admin',
|
||||||
|
redirect: '/admin/dashboard',
|
||||||
|
component: AdminLayout,
|
||||||
|
meta: { title: 'menus.index', icon: 'icon-home' },
|
||||||
|
children: routes,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/:catchAll(.*)',
|
||||||
|
redirect: '/message',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/message',
|
||||||
|
name: 'Message',
|
||||||
|
component: () => import('@/views/message/message-page.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
return createRouter({
|
export const getP = (permissions: Array<string>): RouteRecordRaw => {
|
||||||
history: createWebHashHistory(),
|
const newRoutes: RouteRecordRaw[] = filterRoutesByPermission(routes, permissions)
|
||||||
routes: [
|
return {
|
||||||
{
|
path: '/admin',
|
||||||
path: '/',
|
name: 'Admin',
|
||||||
name: 'Index',
|
redirect: '/admin/dashboard',
|
||||||
redirect: '/login',
|
component: AdminLayout,
|
||||||
},
|
meta: { title: 'menus.index', icon: 'icon-home' },
|
||||||
{
|
children: newRoutes,
|
||||||
path: '/login',
|
}
|
||||||
name: 'Login',
|
|
||||||
redirect: '/login/user',
|
|
||||||
component: UserLayout,
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
path: 'user',
|
|
||||||
name: 'LoginPage',
|
|
||||||
component: () => import('../views/login/user-login.vue'),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/admin',
|
|
||||||
name: 'Admin',
|
|
||||||
redirect: '/admin/dashboard',
|
|
||||||
component: AdminLayout,
|
|
||||||
meta: { title: 'menus.index', icon: 'icon-home' },
|
|
||||||
children: routes,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/:catchAll(.*)',
|
|
||||||
redirect: '/message',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/message',
|
|
||||||
name: 'Message',
|
|
||||||
component: () => import('@/views/message/message-page.vue'),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default getNewRouter()
|
// 过滤路由,最多两层
|
||||||
|
const filterRoutesByPermission = (routes: RouteRecordRaw[], permissions: string[]): RouteRecordRaw[] => {
|
||||||
|
return routes
|
||||||
|
.map((route) => {
|
||||||
|
// 确保 route.name 是字符串
|
||||||
|
const parentName = typeof route.name === 'string' ? route.name : undefined
|
||||||
|
if ('Dashboard' === parentName) return route // 首页不做权限过滤
|
||||||
|
|
||||||
|
const hasParentPermission = parentName && permissions.includes(parentName)
|
||||||
|
|
||||||
|
// 如果有子路由,过滤子路由
|
||||||
|
if (Array.isArray(route.children) && route.children.length > 0) {
|
||||||
|
route.children = route.children.filter((child) => {
|
||||||
|
// 确保 child.name 是字符串
|
||||||
|
const childName = typeof child.name === 'string' ? child.name : undefined
|
||||||
|
|
||||||
|
// 拼接父级和子级的权限字符串
|
||||||
|
const fullName = parentName && childName ? `${parentName}.${childName}` : childName
|
||||||
|
|
||||||
|
// 确保 fullName 是字符串并且存在于 permissions 中
|
||||||
|
return typeof fullName === 'string' && permissions.includes(fullName)
|
||||||
|
})
|
||||||
|
|
||||||
|
// 如果子路由中有任何一个有权限,或者父级路由本身有权限,则保留该父级路由
|
||||||
|
if (route.children.length > 0 || hasParentPermission) {
|
||||||
|
return route
|
||||||
|
}
|
||||||
|
} else if (hasParentPermission) {
|
||||||
|
// 如果没有子路由,直接检查父级路由的权限
|
||||||
|
return route
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果不符合任何条件,返回 undefined,表示该路由将被过滤掉
|
||||||
|
return undefined
|
||||||
|
})
|
||||||
|
.filter((route): route is RouteRecordRaw => route !== undefined) // 过滤掉 undefined 的项并确保类型正确
|
||||||
|
}
|
||||||
|
|
||||||
|
// 白名单
|
||||||
|
const whiteList = ['Index', 'Admin', 'Message', 'LoginPage', 'Login']
|
||||||
|
|
||||||
|
// 路由守卫
|
||||||
|
router.beforeEach(async (to, _, next) => {
|
||||||
|
// 使用 _ 来忽略 from 参数
|
||||||
|
if (to.name && whiteList.includes(to.name as string)) {
|
||||||
|
next()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 其他页面需要登录 用pinia会报错
|
||||||
|
const user = localStorage.getItem('user')
|
||||||
|
if (user) {
|
||||||
|
// 将json字符串转换为对象auth.AuthUser
|
||||||
|
const obj: auth.AuthUser = JSON.parse(user)
|
||||||
|
if (obj.token && obj.token.length > 0) {
|
||||||
|
next()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
window.console.log('没有登录')
|
||||||
|
next({ name: 'LoginPage' })
|
||||||
|
})
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
export interface Http {
|
export interface Http {
|
||||||
prefix: string // 前缀
|
prefix: string // 前缀
|
||||||
timeout: number
|
timeout: number
|
||||||
|
downloadUrl: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export const http: Http = {
|
export const http: Http = {
|
||||||
prefix: import.meta.env.VITE_HTTP_PREFIX,
|
prefix: import.meta.env.VITE_HTTP_PREFIX,
|
||||||
timeout: 10 * 1000,
|
timeout: 10 * 1000,
|
||||||
|
downloadUrl: import.meta.env.VITE_UPLOAD_PREFIX,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
import router from '@/router'
|
import router, { getP } from '@/router'
|
||||||
|
|
||||||
export const useUserStore = defineStore('user', {
|
export const useUserStore = defineStore('user', {
|
||||||
state: (): auth.AuthUser => ({
|
state: (): auth.AuthUser => ({
|
||||||
@@ -18,6 +18,12 @@ export const useUserStore = defineStore('user', {
|
|||||||
isAdmin(state) {
|
isAdmin(state) {
|
||||||
return state.roles.includes('admin')
|
return state.roles.includes('admin')
|
||||||
},
|
},
|
||||||
|
isLogin(state) {
|
||||||
|
return state.token && state.refreshToken
|
||||||
|
},
|
||||||
|
getPermission(state) {
|
||||||
|
return state.permissions
|
||||||
|
},
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
refreshUserInfo(user: auth.AuthUser) {
|
refreshUserInfo(user: auth.AuthUser) {
|
||||||
@@ -25,10 +31,13 @@ export const useUserStore = defineStore('user', {
|
|||||||
},
|
},
|
||||||
userLogin(user: auth.AuthUser) {
|
userLogin(user: auth.AuthUser) {
|
||||||
Object.assign(this, user)
|
Object.assign(this, user)
|
||||||
// 过了路由的地址
|
// 根据权限动态添加地址
|
||||||
// router.addRoute
|
if (!this.isAdmin) {
|
||||||
|
const path = getP(this.permissions)
|
||||||
router.push({ path: '/admin/acl/users' }) // 登录后跳转到用户列表页面
|
router.addRoute(path)
|
||||||
|
// router.replace(router.currentRoute.value.fullPath)
|
||||||
|
}
|
||||||
|
router.push({ path: '/admin/dashboard' })
|
||||||
},
|
},
|
||||||
logout() {
|
logout() {
|
||||||
this.mobile = ''
|
this.mobile = ''
|
||||||
@@ -41,6 +50,11 @@ export const useUserStore = defineStore('user', {
|
|||||||
this.sex = 'FEMALE'
|
this.sex = 'FEMALE'
|
||||||
this.token = ''
|
this.token = ''
|
||||||
this.refreshToken = ''
|
this.refreshToken = ''
|
||||||
|
router.push({ path: '/login/user' })
|
||||||
|
},
|
||||||
|
hasPermission(permission?: string) {
|
||||||
|
if (this.isAdmin) return true
|
||||||
|
return permission !== undefined && this.permissions.includes(permission)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
persist: {
|
persist: {
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
watch(
|
watch(
|
||||||
roles,
|
roles,
|
||||||
(newVal: acl.RoleInfo[]) => {
|
(newVal: acl.RoleInfo[]) => {
|
||||||
targetKeys.value = newVal.filter((item) => item.selected).map((item) => item.key)
|
targetKeys.value = newVal.filter((item) => item.selected).map((item) => item.key as string)
|
||||||
},
|
},
|
||||||
{ immediate: true, deep: true },
|
{ immediate: true, deep: true },
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -100,10 +100,6 @@
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
const columns = [
|
const columns = [
|
||||||
{
|
|
||||||
title: t('pages.acl.role.table.columns.key'),
|
|
||||||
dataIndex: 'key',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: t('pages.acl.role.table.columns.name'),
|
title: t('pages.acl.role.table.columns.name'),
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
@@ -115,7 +111,6 @@
|
|||||||
{
|
{
|
||||||
title: t('pages.acl.role.table.columns.operation'),
|
title: t('pages.acl.role.table.columns.operation'),
|
||||||
dataIndex: 'operation',
|
dataIndex: 'operation',
|
||||||
width: 300,
|
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
const pagination = computed(() => {
|
const pagination = computed(() => {
|
||||||
@@ -178,7 +173,7 @@
|
|||||||
|
|
||||||
const tryLoadPermissions = (expanded: boolean, record: acl.Role & { permissions?: acl.Permission[] }) => {
|
const tryLoadPermissions = (expanded: boolean, record: acl.Role & { permissions?: acl.Permission[] }) => {
|
||||||
if (expanded && !record.permissions) {
|
if (expanded && !record.permissions) {
|
||||||
api.aclApi.role.permissions(record.key, (data) => {
|
api.aclApi.role.permissions(record.key as unknown as string, (data) => {
|
||||||
record.permissions = data
|
record.permissions = data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,26 +15,6 @@ export const config: FormConfig = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const formItems: FormItem[] = [
|
export const formItems: FormItem[] = [
|
||||||
{
|
|
||||||
group: 'form',
|
|
||||||
type: 'input',
|
|
||||||
config: {
|
|
||||||
autoLink: true,
|
|
||||||
hasFeedback: false,
|
|
||||||
label: t('pages.acl.role.form.add.filed.key'),
|
|
||||||
name: 'key',
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
properties: {
|
|
||||||
size: 'default',
|
|
||||||
type: 'text',
|
|
||||||
allowClear: true,
|
|
||||||
bordered: true,
|
|
||||||
showCount: true,
|
|
||||||
placeholder: t('pages.acl.role.form.add.placeholder.key'),
|
|
||||||
},
|
|
||||||
rules: [],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
group: 'form',
|
group: 'form',
|
||||||
type: 'input',
|
type: 'input',
|
||||||
|
|||||||
@@ -177,12 +177,10 @@
|
|||||||
{
|
{
|
||||||
title: t('pages.acl.user.table.columns.sex'),
|
title: t('pages.acl.user.table.columns.sex'),
|
||||||
dataIndex: 'sex',
|
dataIndex: 'sex',
|
||||||
width: 75,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: t('pages.acl.user.table.columns.operation'),
|
title: t('pages.acl.user.table.columns.operation'),
|
||||||
dataIndex: 'operation',
|
dataIndex: 'operation',
|
||||||
width: 400,
|
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ const { t } = i18n.global
|
|||||||
import { useAppStore } from '@/stores/app'
|
import { useAppStore } from '@/stores/app'
|
||||||
|
|
||||||
import { FormItem, FormConfig } from '@/components/form-render/form-render-types'
|
import { FormItem, FormConfig } from '@/components/form-render/form-render-types'
|
||||||
|
import { Rule } from 'ant-design-vue/es/form'
|
||||||
|
import api from '@/api'
|
||||||
|
|
||||||
export const config: FormConfig = {
|
export const config: FormConfig = {
|
||||||
layout: 'horizontal',
|
layout: 'horizontal',
|
||||||
@@ -40,7 +42,12 @@ export const formItems = (sexes: Codebook[]): FormItem[] => {
|
|||||||
placeholder: t('pages.acl.user.form.add.placeholder.name'),
|
placeholder: t('pages.acl.user.form.add.placeholder.name'),
|
||||||
maxlength: 20,
|
maxlength: 20,
|
||||||
},
|
},
|
||||||
rules: [],
|
rules: [
|
||||||
|
{
|
||||||
|
validator: validate,
|
||||||
|
trigger: ['blur', 'change'],
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'radio',
|
type: 'radio',
|
||||||
@@ -80,7 +87,16 @@ export const formItems = (sexes: Codebook[]): FormItem[] => {
|
|||||||
showCount: true,
|
showCount: true,
|
||||||
placeholder: t('pages.acl.user.form.add.placeholder.password'),
|
placeholder: t('pages.acl.user.form.add.placeholder.password'),
|
||||||
},
|
},
|
||||||
rules: [],
|
rules: [
|
||||||
|
{
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
whitespace: true,
|
||||||
|
trigger: ['blur', 'change'],
|
||||||
|
pattern: new RegExp('^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{8,}$'),
|
||||||
|
message: '8位数字字母组合',
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
group: 'form',
|
group: 'form',
|
||||||
@@ -143,3 +159,19 @@ export const formItems = (sexes: Codebook[]): FormItem[] => {
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const validate = async (_rule: Rule, value: string): Promise<void> => {
|
||||||
|
const regex = /^[a-zA-Z0-9]{4,8}$/
|
||||||
|
if (!regex.test(value)) {
|
||||||
|
return Promise.reject('用户名只能是4-8位字母或数字')
|
||||||
|
}
|
||||||
|
return new Promise<void>((resolve, reject) => {
|
||||||
|
api.aclApi.user.existName({ name: value }, (data) => {
|
||||||
|
if (data) {
|
||||||
|
reject('用户名已经存在')
|
||||||
|
} else {
|
||||||
|
resolve()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
4
src/views/admin/dashboard-page.vue
Normal file
4
src/views/admin/dashboard-page.vue
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<template>
|
||||||
|
<p>这是首页,欢迎使用库管系统!!</p>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts"></script>
|
||||||
@@ -14,13 +14,13 @@
|
|||||||
<vxe-column field="name" title="物料名称" />
|
<vxe-column field="name" title="物料名称" />
|
||||||
<vxe-column field="assignRule" title="是否扫码">
|
<vxe-column field="assignRule" title="是否扫码">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ row.assignRule === 'HIGH_VALUE' ? '是' : '否' }}
|
{{ row.assignRule ? '是' : '否' }}
|
||||||
</template>
|
</template>
|
||||||
</vxe-column>
|
</vxe-column>
|
||||||
<vxe-column field="applyNum" title="申请数量" :edit-render="{ name: 'VxeInput', props: { type: 'integer' } }" />
|
<vxe-column field="applyNum" title="申请数量" :edit-render="{ name: 'VxeInput', props: { type: 'integer' } }" />
|
||||||
<vxe-column field="scanNum" title="扫码数量" :edit-render="{ name: 'VxeInput', props: { type: 'integer' } }">
|
<vxe-column field="scanNum" title="扫码数量">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ row.assignRule === 'LOW_VALUE' ? '~' : row.scanNum }}
|
{{ row.assignRule ? row.scanNum : '~' }}
|
||||||
</template>
|
</template>
|
||||||
</vxe-column>
|
</vxe-column>
|
||||||
<vxe-column field="remark" title="备注" :edit-render="{ name: 'VxeInput' }" />
|
<vxe-column field="remark" title="备注" :edit-render="{ name: 'VxeInput' }" />
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<a-form :model="formData" name="basic" layout="horizontal" label-wrap>
|
<a-form :model="formData" name="basic" layout="horizontal" label-wrap>
|
||||||
<a-form-item label="申请人" name="applicant">
|
<a-form-item label="申请人" name="applicant">
|
||||||
<a-input :value="formData.applicant" style="width: 40%" />
|
<a-input v-model:value="formData.applicant" style="width: 40%" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="申请类型" name="applyType">
|
<a-form-item label="申请类型" name="applyType">
|
||||||
@@ -11,23 +11,40 @@
|
|||||||
<a-radio-button v-if="applyType === 'PURCHASE_RECEIPT'" value="PURCHASE_RECEIPT">采购入库</a-radio-button>
|
<a-radio-button v-if="applyType === 'PURCHASE_RECEIPT'" value="PURCHASE_RECEIPT">采购入库</a-radio-button>
|
||||||
<a-radio-button v-if="applyType === 'PURCHASE_RECEIPT'" value="RETURN_RECEIPT">归还入库</a-radio-button>
|
<a-radio-button v-if="applyType === 'PURCHASE_RECEIPT'" value="RETURN_RECEIPT">归还入库</a-radio-button>
|
||||||
<a-radio-button v-if="applyType === 'LOAN_OUT'" value="LOAN_OUT">出库外借</a-radio-button>
|
<a-radio-button v-if="applyType === 'LOAN_OUT'" value="LOAN_OUT">出库外借</a-radio-button>
|
||||||
|
<a-radio-button v-if="applyType === 'LOAN_OUT'" value="SCRAP_OUT">报废出库</a-radio-button>
|
||||||
</a-radio-group>
|
</a-radio-group>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
<a-form-item v-if="formData.applyType === 'SCRAP_OUT'" label="审核人" name="reviewer">
|
||||||
|
<a-select v-model:value="formData.reviewer" style="width: 40%" :options="personList"></a-select>
|
||||||
|
</a-form-item>
|
||||||
<a-form-item label="申请日期" name="applyDate" style="width: 40%">
|
<a-form-item label="申请日期" name="applyDate" style="width: 40%">
|
||||||
<a-date-picker v-model:value="formData.applyDate" />
|
<a-date-picker v-model:value="formData.applyDate" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="选择物料" name="selected">
|
<a-form-item label="选择物料" name="selected">
|
||||||
<a-select
|
<div style="display: flex; justify-content: space-between">
|
||||||
v-model:value="formData.slectedList"
|
<a-tree-select
|
||||||
mode="multiple"
|
v-model:value="typeVal"
|
||||||
bordered
|
show-search
|
||||||
placeholder="请选择物料"
|
style="width: 49%"
|
||||||
style="width: 40%"
|
:dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
|
||||||
show-search
|
placeholder="请选择物料类型"
|
||||||
:options="options"
|
allow-clear
|
||||||
@deselect="removeEvent($event)"
|
:tree-data="types"
|
||||||
@select="insertEvent($event)"
|
tree-node-filter-prop="label"
|
||||||
></a-select>
|
/>
|
||||||
|
<a-select
|
||||||
|
v-model:value="formData.slectedList"
|
||||||
|
mode="multiple"
|
||||||
|
bordered
|
||||||
|
placeholder="请选择物料"
|
||||||
|
style="width: 49%"
|
||||||
|
show-search
|
||||||
|
:options="options"
|
||||||
|
:filter-option="filterOption"
|
||||||
|
@deselect="removeEvent($event)"
|
||||||
|
@select="insertEvent($event)"
|
||||||
|
></a-select>
|
||||||
|
</div>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
</div>
|
</div>
|
||||||
@@ -49,10 +66,11 @@
|
|||||||
<vxe-column field="name" title="物料名称" />
|
<vxe-column field="name" title="物料名称" />
|
||||||
<vxe-column field="code" title="编码" />
|
<vxe-column field="code" title="编码" />
|
||||||
<vxe-column field="spec" title="规格" />
|
<vxe-column field="spec" title="规格" />
|
||||||
<vxe-column field="type" title="类型" />
|
<vxe-column field="price" title="价格" />
|
||||||
|
<vxe-column field="typeName" title="类型" />
|
||||||
<vxe-column field="assignRule" title="是否赋码">
|
<vxe-column field="assignRule" title="是否赋码">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ row.assignRule === 'HIGH_VALUE' ? '是' : '否' }}
|
{{ row.assignRule ? '是' : '否' }}
|
||||||
</template>
|
</template>
|
||||||
</vxe-column>
|
</vxe-column>
|
||||||
<vxe-column
|
<vxe-column
|
||||||
@@ -79,10 +97,10 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { VxeTableInstance } from 'vxe-table'
|
import { VxeTableInstance } from 'vxe-table'
|
||||||
import api from '@/api'
|
import api from '@/api'
|
||||||
import { useUserStore } from '@/stores/user'
|
|
||||||
import dayjs, { Dayjs } from 'dayjs'
|
import dayjs, { Dayjs } from 'dayjs'
|
||||||
import { LabeledValue, DefaultOptionType } from 'ant-design-vue/es/select'
|
import { LabeledValue, DefaultOptionType } from 'ant-design-vue/es/select'
|
||||||
import { SelectHandler } from 'ant-design-vue/es/vc-select/Select'
|
import { SelectHandler } from 'ant-design-vue/es/vc-select/Select'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
|
||||||
// 和外层界面的数据交互
|
// 和外层界面的数据交互
|
||||||
const props = defineProps(
|
const props = defineProps(
|
||||||
@@ -104,6 +122,7 @@
|
|||||||
applyDate: formData.value.applyDate.format('YYYY-MM-DD HH:mm:ss'),
|
applyDate: formData.value.applyDate.format('YYYY-MM-DD HH:mm:ss'),
|
||||||
isConfirm: true,
|
isConfirm: true,
|
||||||
result: '',
|
result: '',
|
||||||
|
reviewer: formData.value.reviewer,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
defineExpose({ getTableData, getApplyForm })
|
defineExpose({ getTableData, getApplyForm })
|
||||||
@@ -113,16 +132,41 @@
|
|||||||
applyDate: Dayjs // 申请日期
|
applyDate: Dayjs // 申请日期
|
||||||
applyType: string // 申请类型
|
applyType: string // 申请类型
|
||||||
slectedList: number[] // 入库物料
|
slectedList: number[] // 入库物料
|
||||||
|
reviewer: string // 审核人
|
||||||
}
|
}
|
||||||
|
|
||||||
const userStore = useUserStore()
|
|
||||||
const formData = ref<FormData>({
|
const formData = ref<FormData>({
|
||||||
applicant: userStore.userName,
|
applicant: '',
|
||||||
applyDate: dayjs(),
|
applyDate: dayjs(),
|
||||||
applyType: props.applyType,
|
applyType: props.applyType,
|
||||||
slectedList: [],
|
slectedList: [],
|
||||||
|
reviewer: '',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// 审核人
|
||||||
|
const personList = ref<Array<{ value: string | undefined; label: string | undefined }>>([])
|
||||||
|
api.aclApi.user.all((data) => {
|
||||||
|
personList.value = data.map((item) => {
|
||||||
|
return {
|
||||||
|
value: item?.name,
|
||||||
|
label: item?.fullName,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
// 物料类型树
|
||||||
|
const types = ref<Array<TreeDataNode>>([])
|
||||||
|
api.materialApi.type.trees((data) => {
|
||||||
|
types.value = children(data)
|
||||||
|
})
|
||||||
|
const children = (res: Array<material.TypeTree>): Array<TreeDataNode> => {
|
||||||
|
return res.map((areaTree) => ({
|
||||||
|
label: areaTree.label,
|
||||||
|
value: areaTree.value,
|
||||||
|
children: areaTree.children ? children(areaTree.children) : [],
|
||||||
|
key: areaTree.value,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
// vxe-table相关的设置
|
// vxe-table相关的设置
|
||||||
export interface RowVO {
|
export interface RowVO {
|
||||||
id: number
|
id: number
|
||||||
@@ -130,26 +174,38 @@
|
|||||||
code: string
|
code: string
|
||||||
spec: string
|
spec: string
|
||||||
type: string
|
type: string
|
||||||
|
typeName: string
|
||||||
quantity: number
|
quantity: number
|
||||||
disabled: boolean
|
disabled: boolean
|
||||||
checked: boolean
|
checked: boolean
|
||||||
assignRule: string
|
price: number
|
||||||
|
assignRule: boolean
|
||||||
}
|
}
|
||||||
const tableRef = ref<VxeTableInstance<RowVO>>()
|
const tableRef = ref<VxeTableInstance<RowVO>>()
|
||||||
// vxe-table 数据结果
|
// vxe-table 数据结果
|
||||||
const tableData = ref<Array<RowVO>>([])
|
const tableData = ref<Array<RowVO>>([])
|
||||||
|
|
||||||
// 物料选择器
|
// 物料选择器
|
||||||
|
const typeVal = ref<string>()
|
||||||
const options = ref<{ label: string; value: number }[]>([])
|
const options = ref<{ label: string; value: number }[]>([])
|
||||||
const materialList = ref<material.Material[]>([])
|
const materialList = ref<material.Material[]>([])
|
||||||
const getMaterialList = async () => {
|
const getMaterialList = async () => {
|
||||||
await api.materialApi.material.all((data) => {
|
await api.materialApi.material.all({ type: typeVal.value }, (data) => {
|
||||||
materialList.value = data
|
materialList.value = data
|
||||||
})
|
})
|
||||||
options.value = materialList.value.map((item) => {
|
options.value = materialList.value.map((item) => {
|
||||||
return { label: item.name ? item.name : '未知', value: item.id ? item.id : -1 }
|
return { label: item.name ? item.name + '(' + item.spec + ')' : '未知', value: item.id ? item.id : -1 }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
getMaterialList()
|
watch(
|
||||||
|
typeVal,
|
||||||
|
(newVal) => {
|
||||||
|
if (newVal !== '') {
|
||||||
|
getMaterialList()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ immediate: true, deep: true },
|
||||||
|
)
|
||||||
|
|
||||||
// 选中时在末尾新增一行
|
// 选中时在末尾新增一行
|
||||||
// value: number, option: { label: string, value: number }
|
// value: number, option: { label: string, value: number }
|
||||||
@@ -160,12 +216,14 @@
|
|||||||
if (m) {
|
if (m) {
|
||||||
const row: RowVO = {
|
const row: RowVO = {
|
||||||
id: m.id ? m.id : -1,
|
id: m.id ? m.id : -1,
|
||||||
name: m.name ? m.name : '未知',
|
name: m.name ? m.name : '',
|
||||||
code: m.code ? m.code : '未知',
|
code: m.code ? m.code : '',
|
||||||
spec: m.spec ? m.spec : '未知',
|
spec: m.spec ? m.spec : '',
|
||||||
type: m.type ? m.type : '未知',
|
typeName: m.typeName ? m.typeName : '',
|
||||||
|
type: m.type ? m.type : '',
|
||||||
|
price: m.price ? m.price : 0,
|
||||||
quantity: 1,
|
quantity: 1,
|
||||||
assignRule: m.assignRule ? m.assignRule : 'HIGH_VALUE',
|
assignRule: m.assignRule ? m.assignRule : false,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
checked: false,
|
checked: false,
|
||||||
}
|
}
|
||||||
@@ -175,6 +233,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 过滤选项
|
||||||
|
const filterOption = (input: string, option: { label: string; value: number }) => {
|
||||||
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
||||||
|
}
|
||||||
|
|
||||||
// 取消选中时,删除table中的行
|
// 取消选中时,删除table中的行
|
||||||
const removeEvent = (value: Insert) => {
|
const removeEvent = (value: Insert) => {
|
||||||
|
|||||||
@@ -56,7 +56,6 @@
|
|||||||
const loading = ref(false) // 提交按钮的loading状态
|
const loading = ref(false) // 提交按钮的loading状态
|
||||||
|
|
||||||
const items = [{ title: '录入申请' }, { title: '扫码点货' }, { title: '人工确认' }]
|
const items = [{ title: '录入申请' }, { title: '扫码点货' }, { title: '人工确认' }]
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 点击下一步
|
* 点击下一步
|
||||||
*/
|
*/
|
||||||
@@ -67,7 +66,7 @@
|
|||||||
// 再step1中点击下一步的时候,就去获取step1中的表单数据
|
// 再step1中点击下一步的时候,就去获取step1中的表单数据
|
||||||
selectData.value = applyFormRef.value.getTableData()
|
selectData.value = applyFormRef.value.getTableData()
|
||||||
selectData.value.forEach((item: RowVO) => {
|
selectData.value.forEach((item: RowVO) => {
|
||||||
if (item.assignRule === 'HIGH_VALUE') {
|
if (item.assignRule) {
|
||||||
totalValue.value += item.quantity
|
totalValue.value += item.quantity
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -91,7 +90,7 @@
|
|||||||
applyNum: item.quantity,
|
applyNum: item.quantity,
|
||||||
assignRule: item.assignRule,
|
assignRule: item.assignRule,
|
||||||
scanNum: groupedSums[item.code] || 0,
|
scanNum: groupedSums[item.code] || 0,
|
||||||
remark: item.quantity != groupedSums[item.code] && item.assignRule === 'HIGH_VALUE' ? `数量不一致` : '',
|
remark: item.quantity != groupedSums[item.code] && item.assignRule ? `数量不一致` : '',
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,157 +0,0 @@
|
|||||||
<template>
|
|
||||||
<page-container>
|
|
||||||
<!-- 页面操作栏 -->
|
|
||||||
<template #ops>
|
|
||||||
<a-row>
|
|
||||||
<a-col :span="18">
|
|
||||||
<a-input-search
|
|
||||||
v-model:value="searchKey"
|
|
||||||
:placeholder="`请输入`"
|
|
||||||
allow-clear
|
|
||||||
enter-button
|
|
||||||
@search="loadData()"
|
|
||||||
></a-input-search>
|
|
||||||
</a-col>
|
|
||||||
<a-col :span="6">
|
|
||||||
<a-button type="primary" style="margin-left: 10px" @click="showModal">
|
|
||||||
<template #icon>
|
|
||||||
<icon-font type="icon-plus" />
|
|
||||||
</template>
|
|
||||||
{{ pageType === '1' ? '申请入库' : '申请出库' }}
|
|
||||||
</a-button>
|
|
||||||
</a-col>
|
|
||||||
</a-row>
|
|
||||||
</template>
|
|
||||||
<!-- 页面表格内容 -->
|
|
||||||
<div style="min-height: calc(100vh - 305px)">
|
|
||||||
<!-- 表格行 -->
|
|
||||||
<a-table
|
|
||||||
:columns="columns"
|
|
||||||
:data-source="pagedata?.records"
|
|
||||||
bordered
|
|
||||||
:pagination="pagination"
|
|
||||||
:loading="loading"
|
|
||||||
row-key="key"
|
|
||||||
></a-table>
|
|
||||||
</div>
|
|
||||||
</page-container>
|
|
||||||
|
|
||||||
<!-- 弹窗 -->
|
|
||||||
<a-modal v-model:open="open" title="Basic Modal" width="100%" wrap-class-name="full-modal" @ok="handleOk">
|
|
||||||
<apply></apply>
|
|
||||||
</a-modal>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
|
||||||
import api from '@/api'
|
|
||||||
import { IPage } from '@/api/api'
|
|
||||||
import apply from './apply-modal.vue'
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
pageType: {
|
|
||||||
type: String as PropType<'1' | '2'>, // 1 入库 2 出库
|
|
||||||
required: false,
|
|
||||||
default: '1',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const { pageType } = toRefs(props)
|
|
||||||
|
|
||||||
const searchKey = ref('')
|
|
||||||
const pagedata = ref<IPage<material.ApplyDTO>>()
|
|
||||||
const loading = ref(false)
|
|
||||||
|
|
||||||
// 加载数据的方法
|
|
||||||
const loadData = async (page = 1, size = 10) => {
|
|
||||||
loading.value = true
|
|
||||||
api.materialApi.apply.searchPage(
|
|
||||||
//1: 采购入库 2: 归还入库 3: 出库外借
|
|
||||||
{
|
|
||||||
applyType: 1,
|
|
||||||
page: page || pagedata.value?.current,
|
|
||||||
size: size || pagedata.value?.size,
|
|
||||||
type: searchKey.value,
|
|
||||||
code: searchKey.value,
|
|
||||||
name: searchKey.value,
|
|
||||||
},
|
|
||||||
(data) => {
|
|
||||||
loading.value = false
|
|
||||||
pagedata.value = data
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
//初始加载
|
|
||||||
loadData()
|
|
||||||
|
|
||||||
//表格列
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
title: '类型',
|
|
||||||
dataIndex: 'type',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '申请人',
|
|
||||||
dataIndex: 'applicant',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '申请日期',
|
|
||||||
dataIndex: 'applyDate',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否确认',
|
|
||||||
dataIndex: 'isConfirm',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建人',
|
|
||||||
dataIndex: 'createdBy',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建时间',
|
|
||||||
dataIndex: 'createdTime',
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
//分页信息
|
|
||||||
const pagination = computed(() => {
|
|
||||||
return {
|
|
||||||
current: pagedata.value?.current,
|
|
||||||
pageSize: pagedata.value?.size,
|
|
||||||
total: pagedata.value?.total,
|
|
||||||
onChange: (page: number, pageSize: number) => {
|
|
||||||
loadData(page, pageSize)
|
|
||||||
},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
const open = ref<boolean>(false)
|
|
||||||
|
|
||||||
const showModal = () => {
|
|
||||||
open.value = true
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleOk = (e: MouseEvent) => {
|
|
||||||
console.log(e)
|
|
||||||
open.value = false
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less">
|
|
||||||
.full-modal {
|
|
||||||
.ant-modal {
|
|
||||||
max-width: 100%;
|
|
||||||
top: 0;
|
|
||||||
padding-bottom: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ant-modal-content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
height: calc(100vh);
|
|
||||||
}
|
|
||||||
|
|
||||||
.ant-modal-body {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
170
src/views/stock/component/manual-form.vue
Normal file
170
src/views/stock/component/manual-form.vue
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
<template>
|
||||||
|
<!-- vxe-table -->
|
||||||
|
<div>
|
||||||
|
<vxe-table
|
||||||
|
ref="tableRef"
|
||||||
|
v-model:data="tableData"
|
||||||
|
border
|
||||||
|
show-overflow
|
||||||
|
max-height="500"
|
||||||
|
size="medium"
|
||||||
|
empty-text="请先选择物料"
|
||||||
|
:edit-config="{ trigger: 'click', mode: 'cell', autoFocus: true }"
|
||||||
|
>
|
||||||
|
<vxe-column type="seq" title="序号" width="60" />
|
||||||
|
<vxe-column field="id" title="物料id" :visible="false" />
|
||||||
|
<vxe-column field="name" title="物料名称" />
|
||||||
|
<vxe-column field="code" title="编码" />
|
||||||
|
<vxe-column field="spec" title="规格" />
|
||||||
|
<vxe-column field="price" title="价格" />
|
||||||
|
<vxe-column field="typeName" title="类型" />
|
||||||
|
<vxe-column field="stock" title="库存数量" />
|
||||||
|
|
||||||
|
<vxe-column
|
||||||
|
field="manualStock"
|
||||||
|
title="手动核实数量"
|
||||||
|
:edit-render="{ name: 'input', autoSelect: true }"
|
||||||
|
keyboard-config="{edit: true, del: true}"
|
||||||
|
cell-type="number"
|
||||||
|
>
|
||||||
|
<template #edit="{ row }">
|
||||||
|
<vxe-number-input v-model="row.manualStock" type="integer"></vxe-number-input>
|
||||||
|
</template>
|
||||||
|
</vxe-column>
|
||||||
|
<vxe-column
|
||||||
|
field="msg"
|
||||||
|
title="异常原因"
|
||||||
|
:edit-render="{ name: 'input', autoSelect: true }"
|
||||||
|
keyboard-config="{edit: true, del: true}"
|
||||||
|
cell-type="string"
|
||||||
|
>
|
||||||
|
<template #edit="{ row }">
|
||||||
|
<vxe-input v-model="row.msg" placeholder="请输入异常原因" type="text"></vxe-input>
|
||||||
|
</template>
|
||||||
|
</vxe-column>
|
||||||
|
|
||||||
|
<vxe-column field="oprator" title="操作">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<vxe-button mode="text" status="error" @click="removeRow(row)">删除</vxe-button>
|
||||||
|
</template>
|
||||||
|
</vxe-column>
|
||||||
|
</vxe-table>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import api from '@/api'
|
||||||
|
import dayjs, { Dayjs } from 'dayjs'
|
||||||
|
import { VxeTableInstance } from 'vxe-table'
|
||||||
|
|
||||||
|
//组件交互
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
applyId: {
|
||||||
|
type: Number,
|
||||||
|
required: false,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
const getTableData = (): Array<material.ManualStockDetail> => {
|
||||||
|
const $table = tableRef.value
|
||||||
|
if (!$table) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
return $table?.getTableData().fullData.map((item) => {
|
||||||
|
// 只需要保存哪一个物料id,库存数量,手动核实数量
|
||||||
|
return {
|
||||||
|
materialId: item.id,
|
||||||
|
stock: item.stock,
|
||||||
|
manualStock: item.manualStock,
|
||||||
|
msg: item.msg,
|
||||||
|
applyId: props.applyId,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
defineExpose({ getTableData })
|
||||||
|
|
||||||
|
// vxe-table相关的设置
|
||||||
|
export interface RowVO {
|
||||||
|
id: number
|
||||||
|
name: string
|
||||||
|
code: string
|
||||||
|
spec: string
|
||||||
|
type: string
|
||||||
|
typeName: string
|
||||||
|
stock: number
|
||||||
|
manualStock: number
|
||||||
|
disabled: boolean
|
||||||
|
checked: boolean
|
||||||
|
price: number
|
||||||
|
assignRule: boolean
|
||||||
|
msg: string
|
||||||
|
}
|
||||||
|
// vxe引用
|
||||||
|
const tableRef = ref<VxeTableInstance<RowVO>>()
|
||||||
|
|
||||||
|
// vxe-table 数据结果
|
||||||
|
const tableData = ref<Array<RowVO>>([])
|
||||||
|
// 获取接口数据
|
||||||
|
const fetchData = () => {
|
||||||
|
api.materialApi.apply.getManualCheckData(props.applyId, (data) => {
|
||||||
|
tableData.value = data.map((item) => {
|
||||||
|
return {
|
||||||
|
id: item.id ? item.id : 0,
|
||||||
|
name: item.name ? item.name : '',
|
||||||
|
code: item.code ? item.code : '',
|
||||||
|
spec: item.spec ? item.spec : '',
|
||||||
|
type: item.type ? item.type : '',
|
||||||
|
typeName: item.typeName ? item.typeName : '',
|
||||||
|
stock: item.stock ? item.stock : 0,
|
||||||
|
manualStock: 0,
|
||||||
|
disabled: false,
|
||||||
|
checked: false,
|
||||||
|
price: item.price ? item.price : 0,
|
||||||
|
assignRule: false,
|
||||||
|
msg: '',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 监测applyId变化,重新获取数据
|
||||||
|
fetchData()
|
||||||
|
watch(
|
||||||
|
() => props.applyId,
|
||||||
|
(newVal, oldVal) => {
|
||||||
|
if (newVal !== oldVal) {
|
||||||
|
fetchData()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
interface FormData {
|
||||||
|
applicant: string // 申请人
|
||||||
|
applyDate: Dayjs // 申请日期
|
||||||
|
slectedList: number[] // 入库物料
|
||||||
|
reviewer: string // 审核人
|
||||||
|
}
|
||||||
|
const formData = ref<FormData>({
|
||||||
|
applicant: '',
|
||||||
|
applyDate: dayjs(),
|
||||||
|
slectedList: [],
|
||||||
|
reviewer: '',
|
||||||
|
})
|
||||||
|
|
||||||
|
// 手动删除table中的行
|
||||||
|
const removeRow = async (row: RowVO) => {
|
||||||
|
//打印tableData数组
|
||||||
|
const $table = tableRef.value
|
||||||
|
if ($table) {
|
||||||
|
// 根据row.id找到对应选中列表中的数据
|
||||||
|
formData.value.slectedList.forEach((item, index) => {
|
||||||
|
if (item.toString() === row.id.toString()) {
|
||||||
|
formData.value.slectedList.splice(index, 1)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
$table.remove(row)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-button type="primary" @click="beiginScan">开始扫码</a-button>
|
<a-button type="primary" @click="beiginScan">开始扫码</a-button>
|
||||||
<a-button type="primary" danger style="left: 20px">重新扫码</a-button>
|
<a-button type="primary" danger style="left: 20px" @click="clearScanData">全部重扫</a-button>
|
||||||
<a-input
|
<a-input
|
||||||
ref="snInput"
|
ref="snInput"
|
||||||
v-model:value="value"
|
v-model:value="value"
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
<vxe-column field="name" title="物料名称" />
|
<vxe-column field="name" title="物料名称" />
|
||||||
<vxe-column field="code" title="编码" />
|
<vxe-column field="code" title="编码" />
|
||||||
<vxe-column field="spec" title="规格" />
|
<vxe-column field="spec" title="规格" />
|
||||||
<vxe-column field="type" title="类型" />
|
<vxe-column field="typeName" title="类型" />
|
||||||
<vxe-column field="times" title="扫码时间" />
|
<vxe-column field="times" title="扫码时间" />
|
||||||
<vxe-column field="oprator" title="操作">
|
<vxe-column field="oprator" title="操作">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
* 请求接口获取缓存数据
|
* 请求接口获取缓存数据
|
||||||
*/
|
*/
|
||||||
const getCache = () => {
|
const getCache = () => {
|
||||||
api.materialApi.material.all((data) => {
|
api.materialApi.material.all({}, (data) => {
|
||||||
data.forEach((item) => {
|
data.forEach((item) => {
|
||||||
if (item.code) {
|
if (item.code) {
|
||||||
materialMapCache.value.set(item.code, item) // 物料编码定义为6位
|
materialMapCache.value.set(item.code, item) // 物料编码定义为6位
|
||||||
@@ -122,11 +122,12 @@
|
|||||||
interface TableRowVO {
|
interface TableRowVO {
|
||||||
id: number
|
id: number
|
||||||
barcode: string
|
barcode: string
|
||||||
assignRule: string
|
assignRule: boolean
|
||||||
name: string
|
name: string
|
||||||
code: string
|
code: string
|
||||||
spec: string
|
spec: string
|
||||||
type: string
|
type: string
|
||||||
|
typeName: string
|
||||||
times: string
|
times: string
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -176,7 +177,7 @@
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 找到条形码对应的物料编码
|
// 找到条形码对应的物料编码
|
||||||
const code = sn.slice(0, 6)
|
const code = sn.slice(0, 5)
|
||||||
const materialInfo = materialMapCache.value.get(code)
|
const materialInfo = materialMapCache.value.get(code)
|
||||||
if (!materialInfo) {
|
if (!materialInfo) {
|
||||||
value.value = ''
|
value.value = ''
|
||||||
@@ -188,11 +189,12 @@
|
|||||||
const row: TableRowVO = {
|
const row: TableRowVO = {
|
||||||
id: materialInfo?.id ?? 0,
|
id: materialInfo?.id ?? 0,
|
||||||
barcode: sn,
|
barcode: sn,
|
||||||
assignRule: materialInfo?.assignRule ?? '',
|
assignRule: materialInfo?.assignRule ?? false,
|
||||||
name: materialInfo?.name ?? '',
|
name: materialInfo?.name ?? '',
|
||||||
code: materialInfo?.code ?? '',
|
code: materialInfo?.code ?? '',
|
||||||
spec: materialInfo?.spec ?? '',
|
spec: materialInfo?.spec ?? '',
|
||||||
type: materialInfo?.type ?? '',
|
type: materialInfo?.type ?? '',
|
||||||
|
typeName: materialInfo?.typeName ?? '',
|
||||||
times: new Date().toLocaleString(),
|
times: new Date().toLocaleString(),
|
||||||
}
|
}
|
||||||
$table.insert(row)
|
$table.insert(row)
|
||||||
@@ -205,4 +207,14 @@
|
|||||||
value.value = ''
|
value.value = ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 清空扫码数据
|
||||||
|
const clearScanData = () => {
|
||||||
|
const $table = applyDetailTableRef.value
|
||||||
|
if ($table) {
|
||||||
|
$table.remove()
|
||||||
|
snListCache.value = []
|
||||||
|
remainderValue.value = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,9 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-result
|
<a-result status="success" title="操作成功!" sub-title="操作已完成,请仔细核对实物与清单,确保无误。">
|
||||||
status="success"
|
|
||||||
title="Successfully Purchased Cloud Server ECS!"
|
|
||||||
sub-title="Order number: 2017182818828182881 Cloud server configuration takes 1-5 minutes, please wait."
|
|
||||||
>
|
|
||||||
<template #extra>
|
<template #extra>
|
||||||
<a-button type="primary" @click="select">查询申请</a-button>
|
<a-button type="primary" @click="select">查询申请</a-button>
|
||||||
<a-button @click="again">继续提交申请</a-button>
|
<a-button @click="again">继续提交申请</a-button>
|
||||||
@@ -21,11 +17,11 @@
|
|||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
}, // 申请类型 applyType页面传值的使用1和2,1: 采购入库 和 归还入库 2: 出库外借
|
}, // 申请类型 applyType页面传值的使用PURCHASE_RECEIPT和LOAN_OUT,PURCHASE_RECEIPT: 采购入库 和 归还入库 LOAN_OUT: 出库外借
|
||||||
)
|
)
|
||||||
|
|
||||||
const select = () => {
|
const select = () => {
|
||||||
if (props.applyType === '1') {
|
if (props.applyType === 'PURCHASE_RECEIPT') {
|
||||||
router.push({ path: '/statistic/inbound' })
|
router.push({ path: '/statistic/inbound' })
|
||||||
} else {
|
} else {
|
||||||
router.push({ path: '/statistic/outbound' })
|
router.push({ path: '/statistic/outbound' })
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { FormItem, FormConfig } from '@/components/form-render/form-render-types'
|
import { FormItem, FormConfig } from '@/components/form-render/form-render-types'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
|
||||||
export const config: FormConfig = {
|
export const config: FormConfig = {
|
||||||
layout: 'horizontal',
|
layout: 'horizontal',
|
||||||
@@ -13,7 +14,7 @@ export const config: FormConfig = {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export const formItems: FormItem[] = [
|
export const formItems = (types: TreeDataNode[]): FormItem[] => [
|
||||||
{
|
{
|
||||||
group: 'form',
|
group: 'form',
|
||||||
type: 'input',
|
type: 'input',
|
||||||
@@ -34,22 +35,24 @@ export const formItems: FormItem[] = [
|
|||||||
},
|
},
|
||||||
rules: [],
|
rules: [],
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
type: 'tree-select',
|
||||||
group: 'form',
|
group: 'form',
|
||||||
type: 'input',
|
|
||||||
config: {
|
config: {
|
||||||
autoLink: true,
|
autoLink: true,
|
||||||
hasFeedback: false,
|
hasFeedback: false,
|
||||||
label: '物料类型',
|
label: '物料类型',
|
||||||
name: 'type',
|
name: 'type',
|
||||||
|
required: true,
|
||||||
|
extra: '',
|
||||||
|
help: '',
|
||||||
|
htmlFor: 'sgsg',
|
||||||
},
|
},
|
||||||
properties: {
|
properties: {
|
||||||
size: 'default',
|
size: 'default',
|
||||||
type: 'text',
|
treeData: types,
|
||||||
allowClear: false,
|
placeholder: '请选择物料类型',
|
||||||
bordered: true,
|
|
||||||
showCount: false,
|
|
||||||
placeholder: '请输入物料类型',
|
|
||||||
},
|
},
|
||||||
rules: [],
|
rules: [],
|
||||||
},
|
},
|
||||||
@@ -71,23 +74,35 @@ export const formItems: FormItem[] = [
|
|||||||
rules: [],
|
rules: [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'input-number',
|
||||||
group: 'form',
|
group: 'form',
|
||||||
config: {
|
config: {
|
||||||
autoLink: true,
|
autoLink: true,
|
||||||
hasFeedback: false,
|
hasFeedback: false,
|
||||||
label: '赋码规则',
|
label: '价格',
|
||||||
name: 'assignRule',
|
name: 'price',
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
properties: {
|
properties: {
|
||||||
size: 'default',
|
size: 'default',
|
||||||
controls: true,
|
controls: true,
|
||||||
placeholder: '请填写赋码规则',
|
placeholder: '请填写价格',
|
||||||
options: [
|
},
|
||||||
{ label: '低值易耗品', value: 'LOW_VALUE' },
|
rules: [],
|
||||||
{ label: '高价值工具类', value: 'HIGH_VALUE' },
|
},
|
||||||
],
|
|
||||||
|
{
|
||||||
|
type: 'switch',
|
||||||
|
group: 'form',
|
||||||
|
config: {
|
||||||
|
autoLink: true,
|
||||||
|
hasFeedback: false,
|
||||||
|
label: '是否赋码',
|
||||||
|
name: 'assignRule',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
properties: {
|
||||||
|
size: 'default',
|
||||||
},
|
},
|
||||||
rules: [],
|
rules: [],
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,17 +2,29 @@
|
|||||||
<page-container>
|
<page-container>
|
||||||
<!-- 页面操作栏 -->
|
<!-- 页面操作栏 -->
|
||||||
<template #ops>
|
<template #ops>
|
||||||
<a-row>
|
<a-row style="width: 600px">
|
||||||
<a-col :span="18">
|
<a-col :span="8">
|
||||||
|
<a-tree-select
|
||||||
|
v-model:value="typeVal"
|
||||||
|
show-search
|
||||||
|
style="width: 100%"
|
||||||
|
:dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
|
||||||
|
placeholder="请选择物料类型"
|
||||||
|
allow-clear
|
||||||
|
:tree-data="types"
|
||||||
|
tree-node-filter-prop="label"
|
||||||
|
/>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
<a-input-search
|
<a-input-search
|
||||||
v-model:value="searchKey"
|
v-model:value="searchKey"
|
||||||
:placeholder="`请输入物料名称`"
|
:placeholder="`名称/编码`"
|
||||||
allow-clear
|
allow-clear
|
||||||
enter-button
|
enter-button
|
||||||
@search="loadData()"
|
@search="loadData()"
|
||||||
></a-input-search>
|
></a-input-search>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="6">
|
<a-col :span="8">
|
||||||
<a-button type="primary" style="margin-left: 10px" @click="addOrEdit()">
|
<a-button type="primary" style="margin-left: 10px" @click="addOrEdit()">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<icon-font type="icon-plus" />
|
<icon-font type="icon-plus" />
|
||||||
@@ -36,7 +48,7 @@
|
|||||||
<!-- 操作按钮列 -->
|
<!-- 操作按钮列 -->
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.dataIndex === 'assignRule'">
|
<template v-if="column.dataIndex === 'assignRule'">
|
||||||
{{ record.assignRule === 'HIGH_VALUE' ? '高价值工具类' : '低值易耗品' }}
|
{{ record.assignRule ? '是' : '否' }}
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.dataIndex === 'operation'">
|
<template v-if="column.dataIndex === 'operation'">
|
||||||
<a-button type="link" :style="{ color: token.colorPrimary }" @click="addOrEdit(record)">
|
<a-button type="link" :style="{ color: token.colorPrimary }" @click="addOrEdit(record)">
|
||||||
@@ -46,7 +58,12 @@
|
|||||||
编辑
|
编辑
|
||||||
</a-button>
|
</a-button>
|
||||||
|
|
||||||
<a-button type="link" :style="{ color: token.colorPrimary }" @click="showPrintModal(record.id)">
|
<a-button
|
||||||
|
v-if="record.assignRule"
|
||||||
|
type="link"
|
||||||
|
:style="{ color: token.colorPrimary }"
|
||||||
|
@click="showPrintModal(record.id)"
|
||||||
|
>
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<icon-font type="icon-print" />
|
<icon-font type="icon-print" />
|
||||||
</template>
|
</template>
|
||||||
@@ -80,10 +97,10 @@
|
|||||||
title="条形码打印"
|
title="条形码打印"
|
||||||
width="100%"
|
width="100%"
|
||||||
wrap-class-name="full-modal"
|
wrap-class-name="full-modal"
|
||||||
@ok="openPrint = false"
|
@ok="closePrint"
|
||||||
@cancel="openPrint = false"
|
@cancel="closePrint"
|
||||||
>
|
>
|
||||||
<printCode :material-id="materialIdRef"></printCode>
|
<printCode ref="printcodeRef" :material-id="materialIdRef"></printCode>
|
||||||
</a-modal>
|
</a-modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -95,6 +112,7 @@
|
|||||||
import { config, formItems } from './form'
|
import { config, formItems } from './form'
|
||||||
import { FormDataType } from '@/components/form-render/form-render-types'
|
import { FormDataType } from '@/components/form-render/form-render-types'
|
||||||
import printCode from './print-code.vue'
|
import printCode from './print-code.vue'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
|
||||||
const { useToken } = theme
|
const { useToken } = theme
|
||||||
const { token } = useToken()
|
const { token } = useToken()
|
||||||
@@ -103,12 +121,34 @@
|
|||||||
const materialPage = ref<IPage<material.Material>>()
|
const materialPage = ref<IPage<material.Material>>()
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
const materialIdRef = ref<number>()
|
const materialIdRef = ref<number>()
|
||||||
|
const printcodeRef = ref()
|
||||||
|
const typeVal = ref<string>() // 物料类型选择值
|
||||||
|
|
||||||
|
//类型树
|
||||||
|
|
||||||
|
const types = ref<Array<TreeDataNode>>([])
|
||||||
|
api.materialApi.type.trees((data) => {
|
||||||
|
types.value = children(data)
|
||||||
|
})
|
||||||
|
const children = (res: Array<material.TypeTree>): Array<TreeDataNode> => {
|
||||||
|
return res.map((areaTree) => ({
|
||||||
|
label: areaTree.label,
|
||||||
|
value: areaTree.value,
|
||||||
|
children: areaTree.children ? children(areaTree.children) : [],
|
||||||
|
key: areaTree.value,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
// 加载数据的方法
|
// 加载数据的方法
|
||||||
const loadData = async (page = 1, size = 10) => {
|
const loadData = async (page = 1, size = 10) => {
|
||||||
loading.value = true
|
loading.value = true
|
||||||
api.materialApi.material.materials(
|
api.materialApi.material.materials(
|
||||||
{ page: page || materialPage.value?.current, size: size || materialPage.value?.size, key: searchKey.value },
|
{
|
||||||
|
page: page || materialPage.value?.current,
|
||||||
|
size: size || materialPage.value?.size,
|
||||||
|
key: searchKey.value,
|
||||||
|
type: typeVal.value,
|
||||||
|
},
|
||||||
(data) => {
|
(data) => {
|
||||||
loading.value = false
|
loading.value = false
|
||||||
materialPage.value = data
|
materialPage.value = data
|
||||||
@@ -120,30 +160,33 @@
|
|||||||
|
|
||||||
//表格列
|
//表格列
|
||||||
const columns = [
|
const columns = [
|
||||||
|
{
|
||||||
|
title: '序号',
|
||||||
|
dataIndex: 'key',
|
||||||
|
customRender: ({ index }: { index: number }) => `${index + 1}`,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '物料编码',
|
title: '物料编码',
|
||||||
dataIndex: 'code',
|
dataIndex: 'code',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
title: '物料ID',
|
|
||||||
dataIndex: 'id',
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
title: '物料名称',
|
title: '物料名称',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '价格',
|
||||||
|
dataIndex: 'price',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '物料类型',
|
title: '物料类型',
|
||||||
dataIndex: 'type',
|
dataIndex: 'typeName',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '物料型号',
|
title: '物料型号',
|
||||||
dataIndex: 'spec',
|
dataIndex: 'spec',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '赋码规则',
|
title: '是否赋码',
|
||||||
dataIndex: 'assignRule',
|
dataIndex: 'assignRule',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -153,7 +196,6 @@
|
|||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
dataIndex: 'operation',
|
dataIndex: 'operation',
|
||||||
width: 400,
|
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -179,7 +221,7 @@
|
|||||||
})
|
})
|
||||||
//表单配置
|
//表单配置
|
||||||
const items = computed(() => {
|
const items = computed(() => {
|
||||||
return formItems
|
return formItems(types.value)
|
||||||
})
|
})
|
||||||
|
|
||||||
//弹窗标题
|
//弹窗标题
|
||||||
@@ -234,8 +276,21 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 打开打印弹窗
|
||||||
const showPrintModal = (applyId: number) => {
|
const showPrintModal = (applyId: number) => {
|
||||||
openPrint.value = true
|
openPrint.value = true
|
||||||
materialIdRef.value = applyId
|
materialIdRef.value = applyId
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 关闭打印弹窗
|
||||||
|
const closePrint = () => {
|
||||||
|
openPrint.value = false
|
||||||
|
printcodeRef.value.clearContent()
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
.notshow {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -24,11 +24,18 @@
|
|||||||
// 接收父组件传递的条形码数量
|
// 接收父组件传递的条形码数量
|
||||||
materialId: {
|
materialId: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 1,
|
default: 0,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
const clearContent = () => {
|
||||||
|
inputRef.value = 0
|
||||||
|
const container = document.getElementById('barcodes-container')
|
||||||
|
if (container) container.innerHTML = ''
|
||||||
|
}
|
||||||
|
// 向父组件暴露清空条形码容器的函数
|
||||||
|
defineExpose({ clearContent })
|
||||||
|
|
||||||
const inputRef = ref(1)
|
const inputRef = ref(0)
|
||||||
|
|
||||||
watch(inputRef, (newVal) => {
|
watch(inputRef, (newVal) => {
|
||||||
fetchAndPrintBarcodes(newVal)
|
fetchAndPrintBarcodes(newVal)
|
||||||
@@ -52,23 +59,23 @@
|
|||||||
honorMarginPadding: false,
|
honorMarginPadding: false,
|
||||||
targetStyles: ['*'],
|
targetStyles: ['*'],
|
||||||
style: `
|
style: `
|
||||||
@page {
|
@page {
|
||||||
size: ${widthInches}in ${heightInches}in;
|
size: ${widthInches}in ${heightInches}in;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 6px;
|
font-size: 6px;
|
||||||
}
|
}
|
||||||
#barcodes-container canvas {
|
#barcodes-container canvas {
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 2mm; /* 调整条形码之间的间距 */
|
margin-bottom: 2mm; /* 调整条形码之间的间距 */
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
onLoadingStart: () => console.log('开始加载'),
|
onLoadingStart: () => console.log('开始加载'),
|
||||||
onLoadingEnd: () => console.log('加载完成'),
|
onLoadingEnd: () => console.log('加载完成'),
|
||||||
// onError: (err: Error) => console.error('打印出错:', err),
|
onError: (err: unknown) => console.error('打印出错:', err),
|
||||||
}
|
}
|
||||||
|
|
||||||
// 显示条形码容器以便打印
|
// 显示条形码容器以便打印
|
||||||
@@ -77,9 +84,9 @@
|
|||||||
// 调用 printJS 进行打印
|
// 调用 printJS 进行打印
|
||||||
printJS(printOptions)
|
printJS(printOptions)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 定义一个函数来从后端获取条形码字符串并打印
|
// 定义一个函数来从后端获取条形码字符串并打印
|
||||||
const fetchAndPrintBarcodes = (count: number) => {
|
const fetchAndPrintBarcodes = (count: number) => {
|
||||||
|
if (count <= 0) return
|
||||||
// 清空之前的条形码容器
|
// 清空之前的条形码容器
|
||||||
const container = document.getElementById('barcodes-container')
|
const container = document.getElementById('barcodes-container')
|
||||||
if (!container) throw new Error('条形码容器未找到')
|
if (!container) throw new Error('条形码容器未找到')
|
||||||
|
|||||||
@@ -2,16 +2,31 @@
|
|||||||
<page-container>
|
<page-container>
|
||||||
<!-- 页面操作栏 -->
|
<!-- 页面操作栏 -->
|
||||||
<template #ops>
|
<template #ops>
|
||||||
<a-row>
|
<a-row style="width: 600px">
|
||||||
<a-col :span="18">
|
<a-col :span="8">
|
||||||
|
<a-tree-select
|
||||||
|
v-model:value="typeVal"
|
||||||
|
show-search
|
||||||
|
style="width: 100%"
|
||||||
|
:dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
|
||||||
|
placeholder="请选择物料类型"
|
||||||
|
allow-clear
|
||||||
|
:tree-data="types"
|
||||||
|
tree-node-filter-prop="label"
|
||||||
|
/>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
<a-input-search
|
<a-input-search
|
||||||
v-model:value="searchKey"
|
v-model:value="searchKey"
|
||||||
:placeholder="`请输入`"
|
:placeholder="`名称/编码/型号`"
|
||||||
allow-clear
|
allow-clear
|
||||||
enter-button
|
enter-button
|
||||||
@search="loadData()"
|
@search="loadData()"
|
||||||
></a-input-search>
|
></a-input-search>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
|
<a-button type="primary" @click="downloadData()">导出</a-button>
|
||||||
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</template>
|
</template>
|
||||||
<!-- 页面表格内容 -->
|
<!-- 页面表格内容 -->
|
||||||
@@ -24,7 +39,13 @@
|
|||||||
:pagination="pagination"
|
:pagination="pagination"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
row-key="key"
|
row-key="key"
|
||||||
></a-table>
|
>
|
||||||
|
<template #bodyCell="{ column, record }">
|
||||||
|
<template v-if="column.dataIndex === 'applyTypeInfo'">
|
||||||
|
{{ record.applyTypeInfo.description }}
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</a-table>
|
||||||
</div>
|
</div>
|
||||||
</page-container>
|
</page-container>
|
||||||
</template>
|
</template>
|
||||||
@@ -32,10 +53,13 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import api from '@/api'
|
import api from '@/api'
|
||||||
import { IPage } from '@/api/api'
|
import { IPage } from '@/api/api'
|
||||||
|
import { http } from '@/settings/http'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
|
||||||
const searchKey = ref('')
|
const searchKey = ref('')
|
||||||
const pagedata = ref<IPage<material.ApplyDTO>>()
|
const pagedata = ref<IPage<material.ApplyDTO>>()
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
|
const typeVal = ref<string>() // 物料类型选择值
|
||||||
|
|
||||||
// 加载数据的方法
|
// 加载数据的方法
|
||||||
const loadData = async (page = 1, size = 10) => {
|
const loadData = async (page = 1, size = 10) => {
|
||||||
@@ -45,9 +69,8 @@
|
|||||||
page: page,
|
page: page,
|
||||||
size: size,
|
size: size,
|
||||||
applyType: 1,
|
applyType: 1,
|
||||||
type: searchKey.value,
|
type: typeVal.value,
|
||||||
code: searchKey.value,
|
key: searchKey.value,
|
||||||
name: searchKey.value,
|
|
||||||
},
|
},
|
||||||
(data) => {
|
(data) => {
|
||||||
pagedata.value = data
|
pagedata.value = data
|
||||||
@@ -58,16 +81,56 @@
|
|||||||
//初始加载
|
//初始加载
|
||||||
loadData()
|
loadData()
|
||||||
|
|
||||||
|
//导出数据
|
||||||
|
const downloadData = () => {
|
||||||
|
// 创建 URLSearchParams 对象
|
||||||
|
const params = new URLSearchParams()
|
||||||
|
if (typeVal.value) {
|
||||||
|
params.append('type', typeVal.value)
|
||||||
|
}
|
||||||
|
if (searchKey.value) {
|
||||||
|
params.append('key', searchKey.value)
|
||||||
|
}
|
||||||
|
params.append('applyType', '1')
|
||||||
|
const url = `${http.prefix}/apply/download-excel?${params.toString()}`
|
||||||
|
window.open(url)
|
||||||
|
}
|
||||||
//表格列
|
//表格列
|
||||||
const columns = [
|
const columns = [
|
||||||
|
{
|
||||||
|
title: '序号',
|
||||||
|
dataIndex: 'key',
|
||||||
|
customRender: ({ index }: { index: number }) => `${index + 1}`,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '物料名称',
|
title: '物料名称',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '物料类型',
|
||||||
|
dataIndex: 'typeName',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '物料编码',
|
title: '物料编码',
|
||||||
dataIndex: 'code',
|
dataIndex: 'code',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '物料型号',
|
||||||
|
dataIndex: 'spec',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '入库类型',
|
||||||
|
dataIndex: 'applyTypeInfo',
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
title: '申请数量',
|
||||||
|
dataIndex: 'applyNum',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '确认数量',
|
||||||
|
dataIndex: 'confirmNum',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '申请人',
|
title: '申请人',
|
||||||
dataIndex: 'applicant',
|
dataIndex: 'applicant',
|
||||||
@@ -76,14 +139,6 @@
|
|||||||
title: '申请日期',
|
title: '申请日期',
|
||||||
dataIndex: 'applyDate',
|
dataIndex: 'applyDate',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: '申请数量',
|
|
||||||
dataIndex: 'applyNum',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '确认数量',
|
|
||||||
dataIndex: 'confirmNum',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: '备注',
|
title: '备注',
|
||||||
dataIndex: 'remark',
|
dataIndex: 'remark',
|
||||||
@@ -101,4 +156,18 @@
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// 物料类型树
|
||||||
|
const types = ref<Array<TreeDataNode>>([])
|
||||||
|
api.materialApi.type.trees((data) => {
|
||||||
|
types.value = children(data)
|
||||||
|
})
|
||||||
|
const children = (res: Array<material.TypeTree>): Array<TreeDataNode> => {
|
||||||
|
return res.map((areaTree) => ({
|
||||||
|
label: areaTree.label,
|
||||||
|
value: areaTree.value,
|
||||||
|
children: areaTree.children ? children(areaTree.children) : [],
|
||||||
|
key: areaTree.value,
|
||||||
|
}))
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -2,16 +2,32 @@
|
|||||||
<page-container>
|
<page-container>
|
||||||
<!-- 页面操作栏 -->
|
<!-- 页面操作栏 -->
|
||||||
<template #ops>
|
<template #ops>
|
||||||
<a-row>
|
<a-row style="width: 600px">
|
||||||
<a-col :span="18">
|
<a-col :span="8">
|
||||||
|
<a-tree-select
|
||||||
|
v-model:value="typeVal"
|
||||||
|
show-search
|
||||||
|
style="width: 100%"
|
||||||
|
:dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
|
||||||
|
placeholder="请选择物料类型"
|
||||||
|
allow-clear
|
||||||
|
:tree-data="types"
|
||||||
|
tree-node-filter-prop="label"
|
||||||
|
/>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
<a-input-search
|
<a-input-search
|
||||||
v-model:value="searchKey"
|
v-model:value="searchKey"
|
||||||
:placeholder="`请输入物料名称`"
|
placeholder="名称/编码/型号"
|
||||||
allow-clear
|
allow-clear
|
||||||
enter-button
|
enter-button
|
||||||
|
width="100%"
|
||||||
@search="loadData()"
|
@search="loadData()"
|
||||||
></a-input-search>
|
></a-input-search>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
|
<a-button type="primary" @click="downloadData()">导出</a-button>
|
||||||
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</template>
|
</template>
|
||||||
<!-- 页面表格内容 -->
|
<!-- 页面表格内容 -->
|
||||||
@@ -28,7 +44,7 @@
|
|||||||
<!-- 操作按钮列 -->
|
<!-- 操作按钮列 -->
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.dataIndex === 'assignRule'">
|
<template v-if="column.dataIndex === 'assignRule'">
|
||||||
{{ record.assignRule === 1 ? '高价值工具类' : '低值易耗品' }}
|
{{ record.assignRule ? '是' : '否' }}
|
||||||
<!-- 这里定义为0和1,0再回显的时候不展示?-->
|
<!-- 这里定义为0和1,0再回显的时候不展示?-->
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@@ -40,16 +56,25 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import api from '@/api'
|
import api from '@/api'
|
||||||
import { IPage } from '@/api/api'
|
import { IPage } from '@/api/api'
|
||||||
|
import { http } from '@/settings/http'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
|
||||||
const searchKey = ref('')
|
const searchKey = ref('')
|
||||||
|
|
||||||
const materialPage = ref<IPage<material.Material>>()
|
const materialPage = ref<IPage<material.Material>>()
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
|
const typeVal = ref<string>() // 物料类型选择值
|
||||||
|
|
||||||
// 加载数据的方法
|
// 加载数据的方法
|
||||||
const loadData = async (page = 1, size = 10) => {
|
const loadData = async (page = 1, size = 10) => {
|
||||||
loading.value = true
|
loading.value = true
|
||||||
api.materialApi.material.materials(
|
api.materialApi.material.materials(
|
||||||
{ page: page || materialPage.value?.current, size: size || materialPage.value?.size, key: searchKey.value },
|
{
|
||||||
|
page: page || materialPage.value?.current,
|
||||||
|
size: size || materialPage.value?.size,
|
||||||
|
key: searchKey.value,
|
||||||
|
type: typeVal.value,
|
||||||
|
},
|
||||||
(data) => {
|
(data) => {
|
||||||
loading.value = false
|
loading.value = false
|
||||||
materialPage.value = data
|
materialPage.value = data
|
||||||
@@ -59,28 +84,53 @@
|
|||||||
//初始加载
|
//初始加载
|
||||||
loadData()
|
loadData()
|
||||||
|
|
||||||
|
//导出数据
|
||||||
|
const downloadData = () => {
|
||||||
|
// 创建 URLSearchParams 对象
|
||||||
|
const params = new URLSearchParams()
|
||||||
|
if (typeVal.value) {
|
||||||
|
params.append('type', typeVal.value)
|
||||||
|
}
|
||||||
|
if (searchKey.value) {
|
||||||
|
params.append('key', searchKey.value)
|
||||||
|
}
|
||||||
|
|
||||||
|
const url = `${http.prefix}/material/download-excel?${params.toString()}`
|
||||||
|
window.open(url)
|
||||||
|
}
|
||||||
|
|
||||||
//表格列
|
//表格列
|
||||||
const columns = [
|
const columns = [
|
||||||
{
|
{
|
||||||
title: '物料编码',
|
title: '序号',
|
||||||
dataIndex: 'code',
|
dataIndex: 'key',
|
||||||
|
customRender: ({ index }: { index: number }) => `${index + 1}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '物料名称',
|
title: '物料名称',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '物料编码',
|
||||||
|
dataIndex: 'code',
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
title: '物料类型',
|
title: '物料类型',
|
||||||
dataIndex: 'type',
|
dataIndex: 'typeName',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '物料型号',
|
title: '物料型号',
|
||||||
dataIndex: 'spec',
|
dataIndex: 'spec',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '赋码规则',
|
title: '是否赋码',
|
||||||
dataIndex: 'assignRule',
|
dataIndex: 'assignRule',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '价格',
|
||||||
|
dataIndex: 'price',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '库存数量',
|
title: '库存数量',
|
||||||
dataIndex: 'stock',
|
dataIndex: 'stock',
|
||||||
@@ -103,4 +153,18 @@
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// 物料类型树
|
||||||
|
const types = ref<Array<TreeDataNode>>([])
|
||||||
|
api.materialApi.type.trees((data) => {
|
||||||
|
types.value = children(data)
|
||||||
|
})
|
||||||
|
const children = (res: Array<material.TypeTree>): Array<TreeDataNode> => {
|
||||||
|
return res.map((areaTree) => ({
|
||||||
|
label: areaTree.label,
|
||||||
|
value: areaTree.value,
|
||||||
|
children: areaTree.children ? children(areaTree.children) : [],
|
||||||
|
key: areaTree.value,
|
||||||
|
}))
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -2,16 +2,31 @@
|
|||||||
<page-container>
|
<page-container>
|
||||||
<!-- 页面操作栏 -->
|
<!-- 页面操作栏 -->
|
||||||
<template #ops>
|
<template #ops>
|
||||||
<a-row>
|
<a-row style="width: 600px">
|
||||||
<a-col :span="18">
|
<a-col :span="8">
|
||||||
|
<a-tree-select
|
||||||
|
v-model:value="typeVal"
|
||||||
|
show-search
|
||||||
|
style="width: 100%"
|
||||||
|
:dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
|
||||||
|
placeholder="请选择物料类型"
|
||||||
|
allow-clear
|
||||||
|
:tree-data="types"
|
||||||
|
tree-node-filter-prop="label"
|
||||||
|
/>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
<a-input-search
|
<a-input-search
|
||||||
v-model:value="searchKey"
|
v-model:value="searchKey"
|
||||||
:placeholder="`请输入`"
|
:placeholder="`名称/编码/型号`"
|
||||||
allow-clear
|
allow-clear
|
||||||
enter-button
|
enter-button
|
||||||
@search="loadData()"
|
@search="loadData()"
|
||||||
></a-input-search>
|
></a-input-search>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
|
<a-button type="primary" @click="downloadData()">导出</a-button>
|
||||||
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</template>
|
</template>
|
||||||
<!-- 页面表格内容 -->
|
<!-- 页面表格内容 -->
|
||||||
@@ -24,19 +39,69 @@
|
|||||||
:pagination="pagination"
|
:pagination="pagination"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
row-key="key"
|
row-key="key"
|
||||||
></a-table>
|
>
|
||||||
|
<template #bodyCell="{ column, record }">
|
||||||
|
<template v-if="column.dataIndex === 'applyTypeInfo'">
|
||||||
|
{{ record.applyTypeInfo.description }}
|
||||||
|
</template>
|
||||||
|
<template v-if="column.dataIndex === 'reviewResult'">
|
||||||
|
<template v-if="record.reviewResult === 'PASS'"><span style="color: #52c41a">审核通过</span></template>
|
||||||
|
<template v-if="record.reviewResult === 'REJECT'"><span style="color: #f5222d">审核不通过</span></template>
|
||||||
|
</template>
|
||||||
|
<template v-if="column.dataIndex === 'operation'">
|
||||||
|
<a-button
|
||||||
|
v-if="record.applyType === 'SCRAP_OUT' && !record.confirm && record.reviewer === userStore.userName"
|
||||||
|
type="link"
|
||||||
|
style="margin-left: 10px"
|
||||||
|
@click="showResultModal(record.applyId)"
|
||||||
|
>
|
||||||
|
审核
|
||||||
|
</a-button>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</a-table>
|
||||||
</div>
|
</div>
|
||||||
</page-container>
|
</page-container>
|
||||||
|
<!-- 审核弹窗 -->
|
||||||
|
<a-modal v-model:open="openResult" title="报废出库数据:" width="80%" :confirm-loading="confirmLoading" @ok="submit">
|
||||||
|
<vxe-table border show-overflow max-height="500" size="medium" :data="reviewData">
|
||||||
|
<vxe-column type="seq" width="70" />
|
||||||
|
<vxe-column field="name" title="物料名称" />
|
||||||
|
<vxe-column field="typeName" title="类型" />
|
||||||
|
<vxe-column field="spec" title="规格" />
|
||||||
|
<vxe-column field="price" title="价格" />
|
||||||
|
<vxe-column field="applicant" title="申请人" />
|
||||||
|
<vxe-column field="confirmQuantity" title="报废数量" />
|
||||||
|
<vxe-column field="remark" title="报废原因" />
|
||||||
|
</vxe-table>
|
||||||
|
<a-form layout="vertical" style="margin-top: 20px">
|
||||||
|
<a-form-item label="审核意见">
|
||||||
|
<a-textarea v-model:value="remark" placeholder="请输入审核意见" :row="3" :maxlength="1000" />
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
|
<a-form-item label="审核结果">
|
||||||
|
<a-radio-group v-model:value="reviewResult" button-style="solid">
|
||||||
|
<a-radio-button value="PASS">审核通过</a-radio-button>
|
||||||
|
<a-radio-button value="REJECT" style="margin-left: 20px">审核不通过</a-radio-button>
|
||||||
|
</a-radio-group>
|
||||||
|
</a-form-item>
|
||||||
|
</a-form>
|
||||||
|
</a-modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import api from '@/api'
|
import api from '@/api'
|
||||||
import { IPage } from '@/api/api'
|
import { IPage } from '@/api/api'
|
||||||
|
import { useUserStore } from '@/stores/user'
|
||||||
|
import { http } from '@/settings/http'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
|
||||||
const searchKey = ref('')
|
const searchKey = ref()
|
||||||
const pagedata = ref<IPage<material.ApplyDTO>>()
|
const pagedata = ref<IPage<material.ApplyDTO>>()
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
|
const typeVal = ref<string>() // 物料类型选择值
|
||||||
|
|
||||||
|
const userStore = useUserStore()
|
||||||
// 加载数据的方法
|
// 加载数据的方法
|
||||||
const loadData = async (page = 1, size = 10) => {
|
const loadData = async (page = 1, size = 10) => {
|
||||||
loading.value = true
|
loading.value = true
|
||||||
@@ -45,9 +110,8 @@
|
|||||||
page: page,
|
page: page,
|
||||||
size: size,
|
size: size,
|
||||||
applyType: 3,
|
applyType: 3,
|
||||||
type: searchKey.value,
|
type: typeVal.value,
|
||||||
code: searchKey.value,
|
key: searchKey.value,
|
||||||
name: searchKey.value,
|
|
||||||
},
|
},
|
||||||
(data) => {
|
(data) => {
|
||||||
pagedata.value = data
|
pagedata.value = data
|
||||||
@@ -58,24 +122,49 @@
|
|||||||
//初始加载
|
//初始加载
|
||||||
loadData()
|
loadData()
|
||||||
|
|
||||||
|
//导出数据
|
||||||
|
const downloadData = () => {
|
||||||
|
// 创建 URLSearchParams 对象
|
||||||
|
const params = new URLSearchParams()
|
||||||
|
if (typeVal.value) {
|
||||||
|
params.append('type', typeVal.value)
|
||||||
|
}
|
||||||
|
if (searchKey.value) {
|
||||||
|
params.append('key', searchKey.value)
|
||||||
|
}
|
||||||
|
params.append('applyType', '3')
|
||||||
|
const url = `${http.prefix}/apply/download-excel?${params.toString()}`
|
||||||
|
window.open(url)
|
||||||
|
}
|
||||||
|
|
||||||
//表格列
|
//表格列
|
||||||
const columns = [
|
const columns = [
|
||||||
|
{
|
||||||
|
title: '序号',
|
||||||
|
dataIndex: 'key',
|
||||||
|
customRender: ({ index }: { index: number }) => `${index + 1}`,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '物料名称',
|
title: '物料名称',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '物料类型',
|
||||||
|
dataIndex: 'typeName',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '物料编码',
|
title: '物料编码',
|
||||||
dataIndex: 'code',
|
dataIndex: 'code',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '申请人',
|
title: '物料型号',
|
||||||
dataIndex: 'applicant',
|
dataIndex: 'spec',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '申请日期',
|
title: '出库类型',
|
||||||
dataIndex: 'applyDate',
|
dataIndex: 'applyTypeInfo',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
title: '申请数量',
|
title: '申请数量',
|
||||||
dataIndex: 'applyNum',
|
dataIndex: 'applyNum',
|
||||||
@@ -84,10 +173,30 @@
|
|||||||
title: '确认数量',
|
title: '确认数量',
|
||||||
dataIndex: 'confirmNum',
|
dataIndex: 'confirmNum',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '申请人',
|
||||||
|
dataIndex: 'applicant',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '审核人',
|
||||||
|
dataIndex: 'reviewer',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '审核状态',
|
||||||
|
dataIndex: 'reviewResult',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '申请日期',
|
||||||
|
dataIndex: 'applyDate',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '备注',
|
title: '备注',
|
||||||
dataIndex: 'remark',
|
dataIndex: 'remark',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '操作',
|
||||||
|
dataIndex: 'operation',
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
//分页信息
|
//分页信息
|
||||||
@@ -101,4 +210,50 @@
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// 审核
|
||||||
|
const openResult = ref<boolean>(false)
|
||||||
|
const confirmLoading = ref(false)
|
||||||
|
const reviewResult = ref<'PASS' | 'REJECT'>('PASS')
|
||||||
|
const remark = ref('')
|
||||||
|
const reviewData = ref<Array<material.ScrapOutApplyDTO>>([])
|
||||||
|
const applyIdRef = ref(0)
|
||||||
|
//点击审核
|
||||||
|
const showResultModal = (applyId: number) => {
|
||||||
|
openResult.value = true
|
||||||
|
applyIdRef.value = applyId
|
||||||
|
api.materialApi.apply.getScrapOutById(applyId, (data) => {
|
||||||
|
reviewData.value = data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 审核提交
|
||||||
|
const submit = () => {
|
||||||
|
confirmLoading.value = true
|
||||||
|
api.materialApi.apply.submitScrapOutReview(
|
||||||
|
{
|
||||||
|
applyId: applyIdRef.value.toString(),
|
||||||
|
reviewResult: reviewResult.value,
|
||||||
|
remark: remark.value,
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
confirmLoading.value = false
|
||||||
|
openResult.value = false
|
||||||
|
loadData()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
// 物料类型树
|
||||||
|
const types = ref<Array<TreeDataNode>>([])
|
||||||
|
api.materialApi.type.trees((data) => {
|
||||||
|
types.value = children(data)
|
||||||
|
})
|
||||||
|
const children = (res: Array<material.TypeTree>): Array<TreeDataNode> => {
|
||||||
|
return res.map((areaTree) => ({
|
||||||
|
label: areaTree.label,
|
||||||
|
value: areaTree.value,
|
||||||
|
children: areaTree.children ? children(areaTree.children) : [],
|
||||||
|
key: areaTree.value,
|
||||||
|
}))
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -3,16 +3,41 @@
|
|||||||
<!-- 页面操作栏 -->
|
<!-- 页面操作栏 -->
|
||||||
<template #ops>
|
<template #ops>
|
||||||
<a-row>
|
<a-row>
|
||||||
<a-col :span="18">
|
<a-col :span="6" style="width: 280px">
|
||||||
<a-input-search
|
<a-date-picker
|
||||||
v-model:value="searchKey"
|
v-model:value="startDate"
|
||||||
:placeholder="`请输入`"
|
:format="'YYYY-MM-DD HH:mm:ss'"
|
||||||
allow-clear
|
placeholder="开始日期大于"
|
||||||
enter-button
|
style="width: 100%"
|
||||||
@search="loadData()"
|
/>
|
||||||
></a-input-search>
|
</a-col>
|
||||||
|
<a-col :span="6" style="width: 180px">
|
||||||
|
<a-select
|
||||||
|
v-model:value="status"
|
||||||
|
placeholder="盘点状态"
|
||||||
|
:max-tag-count="1"
|
||||||
|
mode="multiple"
|
||||||
|
style="width: 100%"
|
||||||
|
>
|
||||||
|
<a-select-option value="WAIT_SCAN">待扫码</a-select-option>
|
||||||
|
<a-select-option value="WAIT_SUBMIT">待提交</a-select-option>
|
||||||
|
<a-select-option value="WAIT_REVIEW">待审核</a-select-option>
|
||||||
|
<a-select-option value="PASS">审核通过</a-select-option>
|
||||||
|
<a-select-option value="REJECT">退回</a-select-option>
|
||||||
|
</a-select>
|
||||||
|
</a-col>
|
||||||
|
|
||||||
|
<a-col :span="6" style="width: 180px">
|
||||||
|
<a-select v-model:value="auditType" :allow-clear="true" placeholder="盘点类型" style="width: 100%">
|
||||||
|
<a-select-option value="SCAN">扫码盘点</a-select-option>
|
||||||
|
<a-select-option value="MANUAL">人工盘点</a-select-option>
|
||||||
|
</a-select>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="6" style="width: 180px">
|
||||||
|
<a-input-search v-model:value="taker" :placeholder="`盘点人`" allow-clear enter-button @search="loadData()" />
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
<a-button type="primary" @click="downloadData()">导出</a-button>
|
||||||
</template>
|
</template>
|
||||||
<!-- 页面表格内容 -->
|
<!-- 页面表格内容 -->
|
||||||
<div style="min-height: calc(100vh - 305px)">
|
<div style="min-height: calc(100vh - 305px)">
|
||||||
@@ -27,27 +52,32 @@
|
|||||||
>
|
>
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.dataIndex === 'auditType'">
|
<template v-if="column.dataIndex === 'auditType'">
|
||||||
{{ record.auditType === 'ALL' ? '全部盘点' : '部分盘点' }}
|
{{ record.auditType === 'SCAN' ? '扫码盘点' : '人工盘点' }}
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.dataIndex === 'reviewResult'">
|
<template v-if="column.dataIndex === 'reviewResult'">
|
||||||
<template v-if="record.reviewResult === 'WAIT_SCAN'">待扫码</template>
|
<!-- 不同状态不同颜色 -->
|
||||||
<template v-if="record.reviewResult === 'WAIT_SUBMIT'">待提交</template>
|
<template v-if="record.reviewResult === 'WAIT_SCAN'"><span style="color: #faad14">待扫码</span></template>
|
||||||
<template v-if="record.reviewResult === 'WAIT_REVIEW'">待审核</template>
|
<template v-if="record.reviewResult === 'WAIT_SUBMIT'"><span style="color: #1890ff">待提交</span></template>
|
||||||
<template v-if="record.reviewResult === 'PASS'">审核通过</template>
|
<template v-if="record.reviewResult === 'WAIT_REVIEW'"><span style="color: #722ed1">待审核</span></template>
|
||||||
<template v-if="record.reviewResult === 'REJECT'">退回</template>
|
<template v-if="record.reviewResult === 'PASS'"><span style="color: #52c41a">审核通过</span></template>
|
||||||
|
<template v-if="record.reviewResult === 'REJECT'"><span style="color: #f5222d">退回</span></template>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.dataIndex === 'operation'">
|
<template v-if="column.dataIndex === 'operation'">
|
||||||
<a-button
|
<a-button
|
||||||
v-if="record.reviewResult === 'WAIT_REVIEW'"
|
v-if="record.reviewResult === 'WAIT_REVIEW'"
|
||||||
type="link"
|
type="link"
|
||||||
style="margin-left: 10px"
|
style="margin-left: 10px"
|
||||||
@click="showResultModal(record.id)"
|
@click="showResultModal(record.id, record.auditType, true)"
|
||||||
>
|
>
|
||||||
<template #icon>
|
|
||||||
<icon-font type="icon-plus" />
|
|
||||||
</template>
|
|
||||||
审核
|
审核
|
||||||
</a-button>
|
</a-button>
|
||||||
|
<a-button
|
||||||
|
type="link"
|
||||||
|
style="margin-left: 10px"
|
||||||
|
@click="showResultModal(record.id, record.auditType, false)"
|
||||||
|
>
|
||||||
|
查看
|
||||||
|
</a-button>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</a-table>
|
</a-table>
|
||||||
@@ -56,20 +86,38 @@
|
|||||||
|
|
||||||
<!-- 审核弹窗 -->
|
<!-- 审核弹窗 -->
|
||||||
<a-modal v-model:open="openResult" title="盘点异常数据:" width="80%" :confirm-loading="confirmLoading" @ok="submit">
|
<a-modal v-model:open="openResult" title="盘点异常数据:" width="80%" :confirm-loading="confirmLoading" @ok="submit">
|
||||||
<result-form :apply-id="applyIdRef">
|
<result-form v-if="auditTypeRef === 'SCAN'" :apply-id="applyIdRef" />
|
||||||
<a-form layout="vertical" style="margin-top: 20px">
|
<vxe-table
|
||||||
<a-form-item label="审核意见">
|
v-if="auditTypeRef === 'MANUAL'"
|
||||||
<a-textarea v-model:value="remark" placeholder="请输入审核意见" :row="3" :maxlength="1000" />
|
v-model:data="manualData"
|
||||||
</a-form-item>
|
border
|
||||||
|
show-overflow
|
||||||
|
max-height="500"
|
||||||
|
size="medium"
|
||||||
|
>
|
||||||
|
<vxe-column type="seq" title="序号" width="60" />
|
||||||
|
<vxe-column field="id" title="物料id" :visible="false" />
|
||||||
|
<vxe-column field="name" title="物料名称" />
|
||||||
|
<vxe-column field="code" title="编码" />
|
||||||
|
<vxe-column field="spec" title="规格" />
|
||||||
|
<vxe-column field="price" title="价格" />
|
||||||
|
<vxe-column field="typeName" title="类型" />
|
||||||
|
<vxe-column field="stock" title="库存数量" />
|
||||||
|
<vxe-column field="manualStock" title="手动核实数量" />
|
||||||
|
<vxe-column field="msg" title="异常原因" />
|
||||||
|
</vxe-table>
|
||||||
|
<a-form v-if="flag" layout="vertical" style="margin-top: 20px">
|
||||||
|
<a-form-item label="审核意见">
|
||||||
|
<a-textarea v-model:value="remark" placeholder="请输入审核意见" :row="3" :maxlength="1000" />
|
||||||
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item label="审核结果">
|
<a-form-item label="审核结果">
|
||||||
<a-radio-group v-model:value="reviewResult" button-style="solid">
|
<a-radio-group v-model:value="reviewResult" button-style="solid">
|
||||||
<a-radio-button value="PASS">审核通过</a-radio-button>
|
<a-radio-button value="PASS">审核通过</a-radio-button>
|
||||||
<a-radio-button value="REJECT" style="margin-left: 20px">退回重盘</a-radio-button>
|
<a-radio-button value="REJECT" style="margin-left: 20px">退回重盘</a-radio-button>
|
||||||
</a-radio-group>
|
</a-radio-group>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
</result-form>
|
|
||||||
</a-modal>
|
</a-modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -77,14 +125,20 @@
|
|||||||
import api from '@/api'
|
import api from '@/api'
|
||||||
import { IPage } from '@/api/api'
|
import { IPage } from '@/api/api'
|
||||||
import resultForm from '../stocktaking/result-form.vue'
|
import resultForm from '../stocktaking/result-form.vue'
|
||||||
|
import { Dayjs } from 'dayjs'
|
||||||
|
import { http } from '@/settings/http'
|
||||||
|
|
||||||
const applyIdRef = ref()
|
const applyIdRef = ref()
|
||||||
const searchKey = ref('')
|
|
||||||
const auditPage = ref<IPage<material.ApplyForm>>()
|
const auditPage = ref<IPage<material.ApplyForm>>()
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
const confirmLoading = ref(false)
|
const confirmLoading = ref(false)
|
||||||
const reviewResult = ref<'PASS' | 'REJECT'>('PASS')
|
const reviewResult = ref<'PASS' | 'REJECT'>('PASS')
|
||||||
const remark = ref('')
|
const remark = ref('')
|
||||||
|
// 搜索条件
|
||||||
|
const startDate = ref<Dayjs>()
|
||||||
|
const taker = ref('')
|
||||||
|
const status = ref<Array<'PASS' | 'REJECT' | 'WAIT_SCAN' | 'WAIT_SUBMIT' | 'WAIT_REVIEW'>>()
|
||||||
|
const auditType = ref<'SCAN' | 'MANUAL'>()
|
||||||
|
|
||||||
// 加载数据的方法
|
// 加载数据的方法
|
||||||
const loadData = async (page = 1, size = 10) => {
|
const loadData = async (page = 1, size = 10) => {
|
||||||
@@ -93,7 +147,13 @@
|
|||||||
{
|
{
|
||||||
page: page,
|
page: page,
|
||||||
size: size,
|
size: size,
|
||||||
reviewResults: ['WAIT_SUBMIT', 'WAIT_SCAN', 'WAIT_REVIEW', 'PASS', 'REJECT'],
|
auditType: auditType.value,
|
||||||
|
//ISO 8601 的完整日期时间格式为:YYYY-MM-DDTHH:mm:ss,其中 T 是日期和时间之间的分隔符。
|
||||||
|
// 对于 LocalDateTime,不需要时区信息(即不包含 Z 或者 +/-HH:mm),因为 LocalDateTime 本身没有时区概念。
|
||||||
|
// 获取 ISO 8601 格式的字符串,但需要去掉 'Z' 和时区部分
|
||||||
|
createDate: startDate.value?.toISOString().replace('Z', '').slice(0, -1),
|
||||||
|
taker: taker.value,
|
||||||
|
reviewResults: status.value,
|
||||||
},
|
},
|
||||||
(data) => {
|
(data) => {
|
||||||
auditPage.value = data
|
auditPage.value = data
|
||||||
@@ -104,11 +164,42 @@
|
|||||||
//初始加载
|
//初始加载
|
||||||
loadData()
|
loadData()
|
||||||
|
|
||||||
|
//导出数据
|
||||||
|
const downloadData = () => {
|
||||||
|
// 创建 URLSearchParams 对象
|
||||||
|
const params = new URLSearchParams()
|
||||||
|
|
||||||
|
// 动态添加参数
|
||||||
|
if (auditType.value) {
|
||||||
|
params.append('auditType', auditType.value)
|
||||||
|
}
|
||||||
|
if (startDate.value) {
|
||||||
|
// 格式化日期并移除 'Z' 和毫秒部分
|
||||||
|
const formattedDate = startDate.value.toISOString().replace('Z', '').slice(0, -4)
|
||||||
|
params.append('createDate', formattedDate)
|
||||||
|
}
|
||||||
|
if (taker.value) {
|
||||||
|
params.append('taker', taker.value)
|
||||||
|
}
|
||||||
|
if (status.value && status.value.length > 0) {
|
||||||
|
// 为数组中的每个值单独添加参数
|
||||||
|
status.value.forEach((value) => {
|
||||||
|
params.append('reviewResults', value)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 构建完整的 URL
|
||||||
|
const url = `${http.prefix}/apply/audit/download-excel?${params.toString()}`
|
||||||
|
|
||||||
|
// 打开下载链接
|
||||||
|
window.open(url)
|
||||||
|
}
|
||||||
//表格列
|
//表格列
|
||||||
const columns = [
|
const columns = [
|
||||||
{
|
{
|
||||||
title: '申请id',
|
title: '序号',
|
||||||
dataIndex: 'id',
|
dataIndex: 'key',
|
||||||
|
customRender: ({ index }: { index: number }) => `${index + 1}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '盘点类型',
|
title: '盘点类型',
|
||||||
@@ -156,15 +247,38 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// 定义一个标记,用于控制是查看还是审核 flag=true审核,flag=false查看
|
||||||
|
const flag = ref(false)
|
||||||
const openResult = ref<boolean>(false)
|
const openResult = ref<boolean>(false)
|
||||||
const showResultModal = (applyId: number) => {
|
const auditTypeRef = ref<'SCAN' | 'MANUAL'>()
|
||||||
openResult.value = true
|
|
||||||
|
// 点击 审核或者查看 按钮
|
||||||
|
const showResultModal = (applyId: number, auditType: 'SCAN' | 'MANUAL', select: boolean) => {
|
||||||
|
flag.value = select
|
||||||
|
auditTypeRef.value = auditType
|
||||||
applyIdRef.value = applyId
|
applyIdRef.value = applyId
|
||||||
|
openResult.value = true
|
||||||
|
if (auditType === 'MANUAL') {
|
||||||
|
getManualData(applyId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询人工盘点数据
|
||||||
|
const manualData = ref<Array<material.ManualStockDTO>>()
|
||||||
|
const getManualData = (applyId: number) => {
|
||||||
|
api.materialApi.apply.getManualStock(applyId, (data) => {
|
||||||
|
manualData.value = data
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
//提交审核结果
|
//提交审核结果
|
||||||
const submit = () => {
|
const submit = () => {
|
||||||
confirmLoading.value = true
|
confirmLoading.value = true
|
||||||
|
if (!flag.value) {
|
||||||
|
confirmLoading.value = false
|
||||||
|
openResult.value = false
|
||||||
|
return
|
||||||
|
}
|
||||||
api.materialApi.apply.submitReview(
|
api.materialApi.apply.submitReview(
|
||||||
{
|
{
|
||||||
applyId: applyIdRef.value,
|
applyId: applyIdRef.value,
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { FormItem, FormConfig } from '@/components/form-render/form-render-types'
|
import { FormItem, FormConfig } from '@/components/form-render/form-render-types'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
|
||||||
export const config: FormConfig = {
|
export const config: FormConfig = {
|
||||||
layout: 'horizontal',
|
layout: 'horizontal',
|
||||||
@@ -15,8 +16,9 @@ export const config: FormConfig = {
|
|||||||
|
|
||||||
export const formItems = (
|
export const formItems = (
|
||||||
materialOptions: Array<{ value: string | undefined; label: string | undefined }>,
|
materialOptions: Array<{ value: string | undefined; label: string | undefined }>,
|
||||||
required: Ref<boolean>,
|
required: boolean,
|
||||||
persons: Array<{ value: string | undefined; label: string | undefined }>,
|
persons: Array<{ value: string | undefined; label: string | undefined }>,
|
||||||
|
types: Array<TreeDataNode>,
|
||||||
): FormItem[] => [
|
): FormItem[] => [
|
||||||
{
|
{
|
||||||
group: 'form',
|
group: 'form',
|
||||||
@@ -32,14 +34,30 @@ export const formItems = (
|
|||||||
size: 'default',
|
size: 'default',
|
||||||
optionType: 'button',
|
optionType: 'button',
|
||||||
buttonStyle: 'solid',
|
buttonStyle: 'solid',
|
||||||
defaultValue: 'ALL',
|
defaultValue: 'SCAN',
|
||||||
options: [
|
options: [
|
||||||
{ value: 'ALL', label: '全部盘点' },
|
{ value: 'SCAN', label: '扫码盘点' },
|
||||||
{ value: 'PARTIAL', label: '部分盘点' },
|
{ value: 'MANUAL', label: '人工盘点' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
rules: [],
|
rules: [],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 'tree-select',
|
||||||
|
group: 'form',
|
||||||
|
config: {
|
||||||
|
label: '物料类型选择',
|
||||||
|
name: 'types',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
properties: {
|
||||||
|
size: 'default',
|
||||||
|
placeholder: '请选择物料类型',
|
||||||
|
multiple: true,
|
||||||
|
treeData: types,
|
||||||
|
},
|
||||||
|
rules: [],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
group: 'form',
|
group: 'form',
|
||||||
type: 'select',
|
type: 'select',
|
||||||
@@ -49,11 +67,12 @@ export const formItems = (
|
|||||||
hasFeedback: false,
|
hasFeedback: false,
|
||||||
label: '物料选择',
|
label: '物料选择',
|
||||||
name: 'ids',
|
name: 'ids',
|
||||||
|
required: true,
|
||||||
},
|
},
|
||||||
properties: {
|
properties: {
|
||||||
size: 'default',
|
size: 'default',
|
||||||
mode: 'multiple',
|
mode: 'multiple',
|
||||||
required: required.value,
|
required: required,
|
||||||
placeholder: '请选择物料',
|
placeholder: '请选择物料',
|
||||||
options: materialOptions,
|
options: materialOptions,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
<template #icon>
|
<template #icon>
|
||||||
<icon-font type="icon-plus" />
|
<icon-font type="icon-plus" />
|
||||||
</template>
|
</template>
|
||||||
申请扫码
|
新增盘点
|
||||||
</a-button>
|
</a-button>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -35,28 +35,28 @@
|
|||||||
>
|
>
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.dataIndex === 'auditType'">
|
<template v-if="column.dataIndex === 'auditType'">
|
||||||
{{ record.auditType === 'ALL' ? '全部盘点' : '部分盘点' }}
|
{{ record.auditType === 'SCAN' ? '扫码盘点' : '人工盘点' }}
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.dataIndex === 'reviewResult'">
|
<template v-if="column.dataIndex === 'reviewResult'">
|
||||||
<template v-if="record.reviewResult === 'WAIT_SCAN'">待扫码</template>
|
<template v-if="record.reviewResult === 'WAIT_SCAN'"><span style="color: #faad14">待盘点</span></template>
|
||||||
<template v-if="record.reviewResult === 'WAIT_SUBMIT'">待提交</template>
|
<template v-if="record.reviewResult === 'WAIT_SUBMIT'"><span style="color: #1890ff">待提交</span></template>
|
||||||
<template v-if="record.reviewResult === 'WAIT_REVIEW'">待审核</template>
|
<template v-if="record.reviewResult === 'WAIT_REVIEW'"><span style="color: #722ed1">待审核</span></template>
|
||||||
<template v-if="record.reviewResult === 'PASS'">审核通过</template>
|
<template v-if="record.reviewResult === 'PASS'"><span style="color: #52c41a">审核通过</span></template>
|
||||||
<template v-if="record.reviewResult === 'REJECT'">退回</template>
|
<template v-if="record.reviewResult === 'REJECT'"><span style="color: #f5222d">退回</span></template>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.dataIndex === 'operation'">
|
<template v-if="column.dataIndex === 'operation'">
|
||||||
<a-button
|
<a-button
|
||||||
v-if="record.reviewResult === 'WAIT_SCAN' || record.reviewResult === 'REJECT'"
|
v-if="record.reviewResult === 'WAIT_SCAN' || record.reviewResult === 'REJECT'"
|
||||||
type="link"
|
type="link"
|
||||||
@click="showModal(record.id)"
|
@click="showModal(record.id, record.auditType)"
|
||||||
>
|
>
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<icon-font type="icon-edit" />
|
<icon-font type="icon-edit" />
|
||||||
</template>
|
</template>
|
||||||
开始扫码
|
开始盘点
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button
|
<a-button
|
||||||
v-if="record.reviewResult === 'WAIT_SUBMIT' || record.reviewResult === 'WAIT_SCAN'"
|
v-if="record.reviewResult === 'WAIT_SUBMIT'"
|
||||||
type="link"
|
type="link"
|
||||||
style="margin-left: 10px"
|
style="margin-left: 10px"
|
||||||
@click="showResultModal(record.id)"
|
@click="showResultModal(record.id)"
|
||||||
@@ -78,7 +78,6 @@
|
|||||||
v-model="applyForm"
|
v-model="applyForm"
|
||||||
:form-items="items"
|
:form-items="items"
|
||||||
:config="formConfig"
|
:config="formConfig"
|
||||||
:disabled-fields="disabledFields"
|
|
||||||
title="扫码盘点"
|
title="扫码盘点"
|
||||||
@ok="doSave"
|
@ok="doSave"
|
||||||
/>
|
/>
|
||||||
@@ -109,6 +108,10 @@
|
|||||||
>
|
>
|
||||||
<result-form ref="handleResultRef" :apply-id="applyIdRef"></result-form>
|
<result-form ref="handleResultRef" :apply-id="applyIdRef"></result-form>
|
||||||
</a-modal>
|
</a-modal>
|
||||||
|
<!-- 手动盘点弹窗 -->
|
||||||
|
<a-modal v-model:open="openManual" title="手动盘点" width="80%" :confirm-loading="confirmLoading" @ok="manualHandle">
|
||||||
|
<manual-form ref="manualFormRef" :apply-id="applyIdRef"></manual-form>
|
||||||
|
</a-modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
@@ -121,20 +124,24 @@
|
|||||||
import { useUserStore } from '@/stores/user'
|
import { useUserStore } from '@/stores/user'
|
||||||
import scanForm from '../component/scan-form.vue'
|
import scanForm from '../component/scan-form.vue'
|
||||||
import resultForm from './result-form.vue'
|
import resultForm from './result-form.vue'
|
||||||
|
import { TreeDataNode } from 'ant-design-vue/es/vc-tree-select/interface'
|
||||||
|
import manualForm from '../component/manual-form.vue'
|
||||||
|
|
||||||
const searchKey = ref('')
|
const searchKey = ref('')
|
||||||
const userStore = useUserStore()
|
const userStore = useUserStore()
|
||||||
const scanFormRef = ref() // 盘点作业弹窗组件
|
const scanFormRef = ref() // 盘点作业弹窗组件
|
||||||
const handleResultRef = ref() // 盘点结果弹窗组件
|
const handleResultRef = ref() // 盘点结果弹窗组件
|
||||||
const confirmLoading = ref(false) // 盘点作业弹窗提交按钮loading
|
const confirmLoading = ref(false) // 盘点作业弹窗提交按钮loading
|
||||||
|
const manualFormRef = ref() // 手动盘点弹窗组件
|
||||||
// 新增申请表单对象
|
// 新增申请表单对象
|
||||||
const applyForm = ref<Partial<material.AuditApplyInfo>>({
|
const applyForm = ref<Partial<material.AuditApplyInfo>>({
|
||||||
auditType: 'ALL',
|
auditType: 'SCAN',
|
||||||
applicant: userStore.userName,
|
applicant: userStore.fullName,
|
||||||
type: 'AUDIT',
|
type: 'AUDIT',
|
||||||
applyDate: dayjs() + '',
|
applyDate: dayjs() + '',
|
||||||
confirm: false,
|
confirm: false,
|
||||||
reviewResult: 'WAIT_SCAN',
|
reviewResult: 'WAIT_SCAN',
|
||||||
|
types: [],
|
||||||
})
|
})
|
||||||
const msg = ref()
|
const msg = ref()
|
||||||
const totalValue = ref(0) // 盘点总值
|
const totalValue = ref(0) // 盘点总值
|
||||||
@@ -146,28 +153,55 @@
|
|||||||
//新增申请的下拉框选择对象
|
//新增申请的下拉框选择对象
|
||||||
const materialList = ref<Array<{ value: string | undefined; label: string | undefined }>>([])
|
const materialList = ref<Array<{ value: string | undefined; label: string | undefined }>>([])
|
||||||
const personList = ref<Array<{ value: string | undefined; label: string | undefined }>>([])
|
const personList = ref<Array<{ value: string | undefined; label: string | undefined }>>([])
|
||||||
const required = ref(false)
|
const required = ref(true)
|
||||||
api.materialApi.material.all((data) => {
|
|
||||||
materialList.value = data.map((item) => {
|
|
||||||
return {
|
|
||||||
value: item?.id + '',
|
|
||||||
label: item?.name,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
api.aclApi.user.all((data) => {
|
api.aclApi.user.all((data) => {
|
||||||
personList.value = data.map((item) => {
|
personList.value = data.map((item) => {
|
||||||
return {
|
return {
|
||||||
value: item?.name,
|
value: item?.fullName,
|
||||||
label: item?.fullName,
|
label: item?.fullName,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
//是否必填
|
// //是否必填
|
||||||
const disabledFields = computed(() => {
|
// const disabledFields = computed(() => {
|
||||||
return applyForm.value?.auditType === 'ALL' ? ['materials'] : []
|
// return applyForm.value?.auditType === 'ALL' ? ['ids'] : []
|
||||||
|
// })
|
||||||
|
|
||||||
|
// 监听选择类型后查询物料
|
||||||
|
watch(
|
||||||
|
applyForm,
|
||||||
|
() => {
|
||||||
|
if (applyForm.value && applyForm.value.types && applyForm.value.types.length > 0) {
|
||||||
|
api.materialApi.material.all({ type: applyForm.value.types.join(',') }, (data) => {
|
||||||
|
materialList.value = data.map((item) => {
|
||||||
|
return {
|
||||||
|
value: item?.id + '',
|
||||||
|
label: item?.name + '(' + item.spec + ')',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
// 物料类型树
|
||||||
|
const types = ref<Array<TreeDataNode>>([])
|
||||||
|
api.materialApi.type.trees((data) => {
|
||||||
|
types.value = children(data)
|
||||||
})
|
})
|
||||||
|
const children = (res: Array<material.TypeTree>): Array<TreeDataNode> => {
|
||||||
|
return res.map((areaTree) => ({
|
||||||
|
label: areaTree.label,
|
||||||
|
value: areaTree.value,
|
||||||
|
children: areaTree.children ? children(areaTree.children) : [],
|
||||||
|
key: areaTree.value,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
//抽屉组件
|
//抽屉组件
|
||||||
const formDrawer = ref<typeof FormDrawer>()
|
const formDrawer = ref<typeof FormDrawer>()
|
||||||
@@ -176,7 +210,8 @@
|
|||||||
})
|
})
|
||||||
//表单配置
|
//表单配置
|
||||||
const items = computed(() => {
|
const items = computed(() => {
|
||||||
return formItems(materialList.value, required, personList.value)
|
//required 参数未生效
|
||||||
|
return formItems(materialList.value, required.value, personList.value, types.value)
|
||||||
})
|
})
|
||||||
// 加载数据的方法
|
// 加载数据的方法
|
||||||
const loadData = async (page = 1, size = 10) => {
|
const loadData = async (page = 1, size = 10) => {
|
||||||
@@ -199,8 +234,9 @@
|
|||||||
//表格列
|
//表格列
|
||||||
const columns = [
|
const columns = [
|
||||||
{
|
{
|
||||||
title: '申请ID',
|
title: '序号',
|
||||||
dataIndex: 'id',
|
dataIndex: 'key',
|
||||||
|
customRender: ({ index }: { index: number }) => `${index + 1}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '盘点类型',
|
title: '盘点类型',
|
||||||
@@ -218,6 +254,10 @@
|
|||||||
title: '任务状态',
|
title: '任务状态',
|
||||||
dataIndex: 'reviewResult',
|
dataIndex: 'reviewResult',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '审核意见',
|
||||||
|
dataIndex: 'reviewRemark',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '盘点审核人',
|
title: '盘点审核人',
|
||||||
dataIndex: 'reviewer',
|
dataIndex: 'reviewer',
|
||||||
@@ -230,7 +270,6 @@
|
|||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
dataIndex: 'operation',
|
dataIndex: 'operation',
|
||||||
width: 400,
|
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -263,7 +302,33 @@
|
|||||||
// 盘点作业弹窗相关
|
// 盘点作业弹窗相关
|
||||||
const open = ref<boolean>(false)
|
const open = ref<boolean>(false)
|
||||||
const applyIdRef = ref()
|
const applyIdRef = ref()
|
||||||
const showModal = (applyId: number) => {
|
const showModal = (applyId: number, auditType: string) => {
|
||||||
|
if (auditType === 'SCAN') {
|
||||||
|
showScanModal(applyId)
|
||||||
|
} else {
|
||||||
|
showManualModal(applyId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 人工盘点
|
||||||
|
const openManual = ref<boolean>(false)
|
||||||
|
const showManualModal = (applyId: number) => {
|
||||||
|
applyIdRef.value = applyId
|
||||||
|
openManual.value = true
|
||||||
|
}
|
||||||
|
const manualHandle = () => {
|
||||||
|
//提交数据
|
||||||
|
if (manualFormRef.value) {
|
||||||
|
const res: Array<material.ManualStockDetail> = manualFormRef.value.getTableData()
|
||||||
|
api.materialApi.apply.submitManualStock(res, () => {
|
||||||
|
openManual.value = false
|
||||||
|
loadData(1)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 扫码弹窗
|
||||||
|
const showScanModal = (applyId: number) => {
|
||||||
open.value = true
|
open.value = true
|
||||||
applyIdRef.value = applyId
|
applyIdRef.value = applyId
|
||||||
let m = '需要扫码的物料: '
|
let m = '需要扫码的物料: '
|
||||||
@@ -273,9 +338,9 @@
|
|||||||
data.forEach((item) => (totalValue.value += item.count || 0))
|
data.forEach((item) => (totalValue.value += item.count || 0))
|
||||||
msg.value = m
|
msg.value = m
|
||||||
})
|
})
|
||||||
window.console.log(m)
|
|
||||||
msg.value = m
|
msg.value = m
|
||||||
}
|
}
|
||||||
|
|
||||||
// 盘点作业提交数据
|
// 盘点作业提交数据
|
||||||
|
|
||||||
//关闭弹窗 提交数据
|
//关闭弹窗 提交数据
|
||||||
|
|||||||
101
src/views/stock/type/form.ts
Normal file
101
src/views/stock/type/form.ts
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
import { Codebook } from '@/api/api'
|
||||||
|
import { FormItem, FormConfig } from '@/components/form-render/form-render-types'
|
||||||
|
|
||||||
|
export const config: FormConfig = {
|
||||||
|
layout: 'horizontal',
|
||||||
|
colon: true,
|
||||||
|
hideRequiredMark: false,
|
||||||
|
labelAlign: 'right',
|
||||||
|
scrollToFirstError: false,
|
||||||
|
validateOnRuleChange: true,
|
||||||
|
labelCol: {
|
||||||
|
span: 4,
|
||||||
|
offset: 0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const formItems = (levels: Codebook[]): FormItem[] => [
|
||||||
|
{
|
||||||
|
group: 'form',
|
||||||
|
type: 'input',
|
||||||
|
config: {
|
||||||
|
autoLink: true,
|
||||||
|
hasFeedback: false,
|
||||||
|
label: '类型编码',
|
||||||
|
name: 'no',
|
||||||
|
required: true,
|
||||||
|
help: '格式:一级编码两位组成,00-99取值,只要保证唯一即可;二级编码,四位组成,父级的两位+00-99取值,只要保证唯一即可;',
|
||||||
|
},
|
||||||
|
properties: {
|
||||||
|
size: 'default',
|
||||||
|
type: 'text',
|
||||||
|
allowClear: true,
|
||||||
|
bordered: true,
|
||||||
|
showCount: true,
|
||||||
|
},
|
||||||
|
rules: [],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
group: 'form',
|
||||||
|
type: 'input',
|
||||||
|
config: {
|
||||||
|
autoLink: true,
|
||||||
|
hasFeedback: false,
|
||||||
|
label: '上级编码',
|
||||||
|
name: 'parentNo',
|
||||||
|
},
|
||||||
|
properties: {
|
||||||
|
size: 'default',
|
||||||
|
type: 'text',
|
||||||
|
allowClear: true,
|
||||||
|
bordered: true,
|
||||||
|
showCount: true,
|
||||||
|
},
|
||||||
|
rules: [],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'select',
|
||||||
|
group: 'form',
|
||||||
|
config: {
|
||||||
|
autoLink: true,
|
||||||
|
hasFeedback: false,
|
||||||
|
label: '类型级别',
|
||||||
|
name: 'level',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
properties: {
|
||||||
|
size: 'default',
|
||||||
|
allowClear: false,
|
||||||
|
autoClearSearchValue: true,
|
||||||
|
autofocus: false,
|
||||||
|
bordered: true,
|
||||||
|
defaultActiveFirstOption: true,
|
||||||
|
dropdownMatchSelectWidth: true,
|
||||||
|
labelInValue: false,
|
||||||
|
showSearch: false,
|
||||||
|
options: levels.map((item) => {
|
||||||
|
return { value: item.name, label: item.description }
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
rules: [],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
group: 'form',
|
||||||
|
type: 'input',
|
||||||
|
config: {
|
||||||
|
autoLink: true,
|
||||||
|
hasFeedback: false,
|
||||||
|
label: '类型名称',
|
||||||
|
name: 'name',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
properties: {
|
||||||
|
size: 'default',
|
||||||
|
type: 'text',
|
||||||
|
allowClear: true,
|
||||||
|
bordered: true,
|
||||||
|
showCount: true,
|
||||||
|
},
|
||||||
|
rules: [],
|
||||||
|
},
|
||||||
|
]
|
||||||
179
src/views/stock/type/type-page.vue
Normal file
179
src/views/stock/type/type-page.vue
Normal file
@@ -0,0 +1,179 @@
|
|||||||
|
<template>
|
||||||
|
<page-container sub-title="物料类型管理">
|
||||||
|
<template #ops>
|
||||||
|
<a-row>
|
||||||
|
<a-col :span="16">
|
||||||
|
<a-input-search
|
||||||
|
v-model:value="searchKey"
|
||||||
|
placeholder="搜索物料"
|
||||||
|
enter-button
|
||||||
|
@search="loadData()"
|
||||||
|
></a-input-search>
|
||||||
|
</a-col>
|
||||||
|
<a-col :span="8">
|
||||||
|
<a-button type="primary" @click="addOrEdit()">
|
||||||
|
<template #icon>
|
||||||
|
<icon-font type="icon-plus"></icon-font>
|
||||||
|
</template>
|
||||||
|
添加
|
||||||
|
</a-button>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</template>
|
||||||
|
<div style="min-height: calc(100vh - 218px)">
|
||||||
|
<vxe-table
|
||||||
|
ref="xTree"
|
||||||
|
border
|
||||||
|
show-overflow
|
||||||
|
size="medium"
|
||||||
|
:loading="loading"
|
||||||
|
height="600"
|
||||||
|
:column-config="{ resizable: true }"
|
||||||
|
:scroll-y="{ enabled: true, gt: 0 }"
|
||||||
|
:expand-config="{
|
||||||
|
expandAll: true,
|
||||||
|
}"
|
||||||
|
:tree-config="{
|
||||||
|
iconOpen: 'vxe-icon-square-minus',
|
||||||
|
iconClose: 'vxe-icon-square-plus',
|
||||||
|
transform: true,
|
||||||
|
rowField: 'no',
|
||||||
|
parentField: 'parentNo',
|
||||||
|
expandAll: true,
|
||||||
|
line: true,
|
||||||
|
}"
|
||||||
|
:data="areas"
|
||||||
|
>
|
||||||
|
<vxe-column field="name" title="类型" tree-node></vxe-column>
|
||||||
|
<vxe-column field="no" title="类型编码"></vxe-column>
|
||||||
|
<vxe-column field="levelInfo.description" title="类型级别"></vxe-column>
|
||||||
|
<vxe-column field="parentNo" title="上级类型编码"></vxe-column>
|
||||||
|
<vxe-column field="ops" title="操作" width="350">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<a-button type="link" @click="addOrEdit({ parentNo: row.no })">
|
||||||
|
<template #icon>
|
||||||
|
<icon-font type="icon-children" />
|
||||||
|
</template>
|
||||||
|
添加子级
|
||||||
|
</a-button>
|
||||||
|
<a-button type="link" style="margin-left: 10px" @click="addOrEdit(row)">
|
||||||
|
<template #icon>
|
||||||
|
<icon-font type="icon-edit" />
|
||||||
|
</template>
|
||||||
|
编辑
|
||||||
|
</a-button>
|
||||||
|
<a-popconfirm :title="$t('确定要删除地区', { name: row.name })" @confirm="deleteArea(row.id)">
|
||||||
|
<a-button type="link" danger style="margin-left: 10px">
|
||||||
|
<template #icon>
|
||||||
|
<icon-font type="icon-delete" />
|
||||||
|
</template>
|
||||||
|
删除
|
||||||
|
</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
</template>
|
||||||
|
</vxe-column>
|
||||||
|
</vxe-table>
|
||||||
|
</div>
|
||||||
|
</page-container>
|
||||||
|
|
||||||
|
<form-drawer
|
||||||
|
ref="formDrawer"
|
||||||
|
v-model="area"
|
||||||
|
:form-items="items"
|
||||||
|
:config="formConfig"
|
||||||
|
:title="modalTitle"
|
||||||
|
:disabled-fields="disabledFields"
|
||||||
|
:hidden-fields="hiddenFields"
|
||||||
|
@ok="doSave"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import api from '@/api'
|
||||||
|
import { config, formItems } from './form'
|
||||||
|
import FormDrawer from '@/components/form-render/form-drawer.vue'
|
||||||
|
import { notification } from 'ant-design-vue'
|
||||||
|
import { Codebook } from '@/api/api'
|
||||||
|
import { FormDataType } from '@/components/form-render/form-render-types'
|
||||||
|
|
||||||
|
const areas = ref<Array<material.Type>>([])
|
||||||
|
const loading = ref(false)
|
||||||
|
const searchKey = ref('')
|
||||||
|
const area = ref<Partial<material.Type>>({})
|
||||||
|
const levels = ref<Codebook[]>([])
|
||||||
|
api.materialApi.type.levels((data) => {
|
||||||
|
levels.value = data
|
||||||
|
})
|
||||||
|
//表单
|
||||||
|
const formDrawer = ref<typeof FormDrawer>()
|
||||||
|
|
||||||
|
const formConfig = computed(() => {
|
||||||
|
return config
|
||||||
|
})
|
||||||
|
//表单配置
|
||||||
|
const items = computed(() => {
|
||||||
|
return formItems(levels.value)
|
||||||
|
})
|
||||||
|
//表单不可用字段
|
||||||
|
const disabledFields = computed(() => {
|
||||||
|
const no = area.value && area.value.id ? 'no' : ''
|
||||||
|
const parentNo = area.value && area.value.parentNo ? 'parentNo' : ''
|
||||||
|
return [no, parentNo]
|
||||||
|
})
|
||||||
|
//表单隐藏字段
|
||||||
|
const hiddenFields = computed(() => {
|
||||||
|
return area.value && area.value.parentNo ? [] : ['parentNo']
|
||||||
|
})
|
||||||
|
|
||||||
|
//弹窗标题
|
||||||
|
const modalTitle = computed(() => {
|
||||||
|
return area.value.id ? '编辑物料类型' : '添加物料类型'
|
||||||
|
})
|
||||||
|
|
||||||
|
// 加载数据
|
||||||
|
const loadData = () => {
|
||||||
|
loading.value = true
|
||||||
|
api.materialApi.type.areas(
|
||||||
|
{
|
||||||
|
key: searchKey.value,
|
||||||
|
},
|
||||||
|
(data) => {
|
||||||
|
areas.value = data
|
||||||
|
loading.value = false
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
loadData()
|
||||||
|
|
||||||
|
// 新增或编辑
|
||||||
|
const addOrEdit = (u?: Record<string, unknown>) => {
|
||||||
|
area.value = { ...u }
|
||||||
|
formDrawer.value?.show()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 抽屉保存
|
||||||
|
const doSave = (_data: FormDataType) => {
|
||||||
|
api.materialApi.type.addAndModify(_data as unknown as material.Type, () => {
|
||||||
|
formDrawer.value?.close()
|
||||||
|
notification.success({
|
||||||
|
message: '操作成功',
|
||||||
|
description: '新增保存成功,页面将自动刷新!',
|
||||||
|
onClose: () => {
|
||||||
|
loadData()
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 删除
|
||||||
|
const deleteArea = (id: number) => {
|
||||||
|
api.materialApi.type.deleteArea(id, () => {
|
||||||
|
notification.success({
|
||||||
|
message: '操作成功',
|
||||||
|
description: '删除成功,页面将自动刷新!',
|
||||||
|
onClose: () => {
|
||||||
|
loadData()
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -59,7 +59,7 @@ export default defineConfig(({ mode }) => {
|
|||||||
open: true,
|
open: true,
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': {
|
'/api': {
|
||||||
// target: 'https://iot.riemann.tech/api/',
|
// target: 'https://ims.riemann.tech/api/',
|
||||||
target: 'http://127.0.0.1:8888',
|
target: 'http://127.0.0.1:8888',
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
rewrite: (path) => path.replace(/^\/api/, ''),
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user