update 优化 套餐新增 状态被覆盖为空问题
This commit is contained in:
parent
91bb79e29f
commit
802f6240d4
@ -9,7 +9,6 @@ export interface TenantPkgVO extends BaseEntity {
|
||||
|
||||
export interface TenantPkgQuery extends PageQuery {
|
||||
packageName: string;
|
||||
status: string;
|
||||
}
|
||||
|
||||
export interface TenantPkgForm {
|
||||
@ -18,5 +17,4 @@ export interface TenantPkgForm {
|
||||
menuIds: string;
|
||||
remark: string;
|
||||
menuCheckStrictly: boolean;
|
||||
status: string;
|
||||
}
|
||||
|
@ -135,16 +135,14 @@ const initFormData: TenantPkgForm = {
|
||||
packageName: '',
|
||||
menuIds: '',
|
||||
remark: '',
|
||||
menuCheckStrictly: true,
|
||||
status: ''
|
||||
menuCheckStrictly: true
|
||||
};
|
||||
const data = reactive<PageData<TenantPkgForm, TenantPkgQuery>>({
|
||||
form: {...initFormData},
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
packageName: '',
|
||||
status: '',
|
||||
packageName: ''
|
||||
},
|
||||
rules: {
|
||||
packageId: [{ required: true, message: "租户套餐id不能为空", trigger: "blur" }],
|
||||
|
Loading…
x
Reference in New Issue
Block a user