|
|
@ -265,7 +265,7 @@ import Pagination from '@/components/pagination' |
|
|
|
import pageye from '@/components/pagination/pageye' |
|
|
|
import ButtonBar from '@/components/ButtonBar' |
|
|
|
import upload from '@/components/uploadFile/upload' |
|
|
|
import { typeValues, selectAccountByUseOrgSid, getDetailsList, getPathSidByUserSid, getBankList } from '@/api/jichuxinxi/dictcommons' |
|
|
|
import { typeValues, selectAccountByUseOrgSid, getDetailsList, getOrgSidByPath, getBankList } from '@/api/jichuxinxi/dictcommons' |
|
|
|
import req from '@/api/anruifinmanagement/chunafukuan/cashier' |
|
|
|
import { getStorage } from '@/utils/auth' |
|
|
|
|
|
|
@ -353,7 +353,8 @@ export default { |
|
|
|
createEndDate: '', |
|
|
|
createStartDate: '', |
|
|
|
state: '', |
|
|
|
userSid: '' |
|
|
|
userSid: '', |
|
|
|
orgPath: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 10, |
|
|
@ -439,12 +440,12 @@ export default { |
|
|
|
this.payWay_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
selectAccountByUseOrgSid(window.sessionStorage.getItem('userSid')).then((resp) => { |
|
|
|
selectAccountByUseOrgSid({ userSid: window.sessionStorage.getItem('userSid'), orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((resp) => { |
|
|
|
if (resp.success) { |
|
|
|
this.payBankAccount_list = resp.data |
|
|
|
} |
|
|
|
}) |
|
|
|
getPathSidByUserSid({ userSid: window.sessionStorage.getItem('userSid') }).then((res) => { |
|
|
|
getOrgSidByPath({ orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
getDetailsList({ orgSid: res.data }).then((resp) => { |
|
|
|
if (resp.success) { |
|
|
@ -492,6 +493,7 @@ export default { |
|
|
|
getList() { |
|
|
|
this.listLoading = true |
|
|
|
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid') |
|
|
|
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath') |
|
|
|
req.listPage(this.listQuery).then((response) => { |
|
|
|
console.log('列表查询结果:', response) |
|
|
|
this.listLoading = false |
|
|
@ -517,7 +519,8 @@ export default { |
|
|
|
createEndDate: '', |
|
|
|
createStartDate: '', |
|
|
|
state: '', |
|
|
|
userSid: '' |
|
|
|
userSid: '', |
|
|
|
orgPath: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 10, |
|
|
|