1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| const comprehensiveTransaction = {
| state: {
| isEdit: false,
| loanInfo: {},
| contractNoArray: [],
| refundApplicationInfo: {},
| },
| mutations: {
| SET_LoanInfo: (state, info) => {
| state.loanInfo = info
| },
| SET_IsEdit: (state, isEdit) => {
| state.isEdit = isEdit
| },
| SET_ContractNoArray: (state, arr) => {
| state.contractNoArray = arr
| },
| setRefundApplicationInfo(state, info) {
| state.refundApplicationInfo = info;
| },
| }
| };
| export default comprehensiveTransaction
|
|