|
@@ -43,6 +43,7 @@ interface defaultState {
|
|
|
AllFormulaRef: any;
|
|
|
cmpFormulas: any;
|
|
|
cmpFormulaReplace: any;
|
|
|
+ dannum_type: number;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -149,7 +150,8 @@ export const useHooks = (t?: any, props?: any) => {
|
|
|
bednetVarList: [],
|
|
|
AllFormulaRef: null,
|
|
|
cmpFormulas: null,
|
|
|
- cmpFormulaReplace: null
|
|
|
+ cmpFormulaReplace: null,
|
|
|
+ dannum_type: 0
|
|
|
});
|
|
|
state.orderStatus = inject("orderStatus", "");
|
|
|
|
|
@@ -2416,6 +2418,7 @@ export const useHooks = (t?: any, props?: any) => {
|
|
|
bednet.flag = Number(bednet.flag);
|
|
|
|
|
|
let _params: any = {
|
|
|
+ dannum_type: state.dannum_type,
|
|
|
bednet: bednet,
|
|
|
bednetMx: state.vxeTableMxRef?.element.getTableData().fullData ?? [],
|
|
|
spring: state.vxeTableMxSpringRef?.element.getTableData().fullData ?? []
|