gitextract_7zminbyu/ ├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── build/ │ ├── build.js │ ├── check-versions.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config/ │ ├── dev.env.js │ ├── index.js │ └── prod.env.js ├── index.html ├── package.json ├── src/ │ ├── App.vue │ ├── axios/ │ │ ├── api.js │ │ ├── fetch.js │ │ └── url.js │ ├── components/ │ │ ├── btnList/ │ │ │ └── btnList.vue │ │ ├── filterBox/ │ │ │ ├── batchAudit.vue │ │ │ ├── batchDelete.vue │ │ │ ├── batchDifferences.vue │ │ │ ├── batchStatement.vue │ │ │ └── batchUnAudit.vue │ │ ├── getWebSocket/ │ │ │ └── getWebSocket.vue │ │ ├── head/ │ │ │ └── head.vue │ │ ├── search/ │ │ │ └── Search.vue │ │ ├── sidebar/ │ │ │ └── sidebar.vue │ │ ├── tabs/ │ │ │ └── Tabs.vue │ │ ├── tags/ │ │ │ └── tags.vue │ │ ├── template/ │ │ │ ├── hzlDialog.vue │ │ │ ├── hzlInput.vue │ │ │ ├── hzlPage.vue │ │ │ ├── hzlSelect.vue │ │ │ ├── hzlTable.vue │ │ │ └── index.js │ │ └── templateOne.vue │ ├── i18n/ │ │ ├── index.js │ │ └── lan/ │ │ ├── en.js │ │ └── zh.js │ ├── main.js │ ├── page/ │ │ ├── chart/ │ │ │ └── chart.vue │ │ ├── home/ │ │ │ └── home.vue │ │ ├── inquiry/ │ │ │ ├── BankFlow.vue │ │ │ ├── OrderReceivable.vue │ │ │ ├── SystemStatement.vue │ │ │ ├── TransactionFlow.vue │ │ │ └── children/ │ │ │ ├── orderAdd.vue │ │ │ └── orderDetail.vue │ │ ├── login/ │ │ │ └── login.vue │ │ ├── reportForms/ │ │ │ ├── OrderSummary.vue │ │ │ └── ReceivablesBalance.vue │ │ ├── set/ │ │ │ ├── structure.vue │ │ │ └── updatePWD.vue │ │ ├── upload/ │ │ │ └── upload.vue │ │ ├── verifyPlatform/ │ │ │ ├── VerifyBankStatement.vue │ │ │ ├── VerifyReceivables.vue │ │ │ └── verifyAutomate.vue │ │ └── verifyRecord/ │ │ ├── VerifyBankStatementRecord.vue │ │ └── VerifyReceivablesRecord.vue │ ├── router/ │ │ └── index.js │ ├── store/ │ │ ├── index.js │ │ └── modules/ │ │ ├── actions.js │ │ ├── mutation-type.js │ │ └── mutations.js │ └── style/ │ └── main.css └── static/ ├── .gitkeep └── data/ ├── localData.json └── tableCols.json