|
|
|
@ -17,7 +17,7 @@ import {
|
|
|
|
|
getVouchingClerkList,
|
|
|
|
|
getSaleUserList,
|
|
|
|
|
getCustomerServiceList,
|
|
|
|
|
getDeptList,
|
|
|
|
|
getOrgList,
|
|
|
|
|
GetFeeCurrencySelectList,
|
|
|
|
|
GetUserList,
|
|
|
|
|
GetAllClientList,
|
|
|
|
@ -100,12 +100,12 @@ if (res9.succeeded) {
|
|
|
|
|
CustomerServiceList.push({ label: e.userName, value: e.id })
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
let DeptList = []
|
|
|
|
|
const res10: API.DataResult = await getDeptList()
|
|
|
|
|
let OrgList = []
|
|
|
|
|
const res10: API.DataResult = await getOrgList()
|
|
|
|
|
if (res10.succeeded) {
|
|
|
|
|
DeptList = []
|
|
|
|
|
OrgList = []
|
|
|
|
|
res10.data.forEach((e) => {
|
|
|
|
|
DeptList.push({ label: e.orgName, value: e.id })
|
|
|
|
|
OrgList.push(e)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
let OrgTree = []
|
|
|
|
@ -180,7 +180,7 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
width: 150,
|
|
|
|
|
customRender: ({ text }) => {
|
|
|
|
|
let RText = ''
|
|
|
|
|
DeptList.forEach((e) => {
|
|
|
|
|
OrgList.forEach((e) => {
|
|
|
|
|
text.forEach((item) => {
|
|
|
|
|
if (e.value == item) {
|
|
|
|
|
RText = RText == '' ? e.label : `${RText},${e.label}`
|
|
|
|
@ -1179,7 +1179,7 @@ export const formSchema: FormSchema[] = [
|
|
|
|
|
colProps: { span: 8 },
|
|
|
|
|
componentProps: ({ formModel }) => {
|
|
|
|
|
return {
|
|
|
|
|
options: DeptList,
|
|
|
|
|
options: OrgList,
|
|
|
|
|
allowClear: true,
|
|
|
|
|
onChange: (e, obj) => {
|
|
|
|
|
console.log(e, obj)
|
|
|
|
|