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