zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const product = {
  state: {
    loading: false,
    applyInfo: '',
    projectCompany: '',
    applyMenu: '',
    mainCredit: '',
    editBackRoute: '',
    detailBackRoute: '',
    resetInfo:'',
    fields: '',
    vLoanInfo: {}, ////V贷和解信息的利率与和解后首次还款的日期
    selectBankWaterList: [],//选中的流水
  },
  mutations: {
    SET_selectBankWaterList: (state, selectBankWaterList) => {
      state.selectBankWaterList = selectBankWaterList
    },
    SET_projectCompany: (state, projectCompany) => {
      state.projectCompany = projectCompany
    },
    SET_mainCredit: (state, mainCredit) => {
      state.mainCredit = mainCredit
    },
    SET_applyInfo: (state, applyInfo) => {
      state.applyInfo = applyInfo
    },
    SET_detailBackRoute: (state, detailBackRoute) => {
      state.detailBackRoute = detailBackRoute
    },
    SET_editBackRoute: (state, editBackRoute) => {
      state.editBackRoute = editBackRoute
    },
    SET_applyMenu: (state, applyMenu) => {
      state.applyMenu = applyMenu
    },
    SET_resetInfo: (state, resetInfo) => {
      state.resetInfo = resetInfo
    },
    SET_fields: (state, fields) => {
      state.fields = fields
    },
    SET_VLoanInfo(state, payload) {
      state.vLoanInfo = payload
    },
    close: (state, loading) => {
      state.loading = loading
    },
  }
}
export default product