Browse Source

deploy

master
Soleilw 3 months ago
parent
commit
605c5ec709

+ 1
- 1
dist/index.html View File

</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
<script src="/umi.ab1cd040.js"></script>
<script src="/umi.f9f85c2a.js"></script>
</body> </body>
</html> </html>

+ 1
- 0
dist/p__Permission__Account__index.2c73d620.async.js
File diff suppressed because it is too large
View File


+ 0
- 1
dist/p__Permission__Account__index.807fdf25.async.js
File diff suppressed because it is too large
View File


dist/umi.f9f85c2a.js
File diff suppressed because it is too large
View File


+ 4
- 4
src/components/Render/Permission/Account/create/index.tsx View File

} }
}} }}
onFinish={async (values) => { onFinish={async (values) => {
values.province = values.location_arr[0] ? values.location_arr[0] : 0;
values.city = values.location_arr[1] ? values.location_arr[1] : 0;
values.district = values.location_arr[2] ? values.location_arr[2] : 0;
values.street = values.location_arr[3] ? values.location_arr[3] : 0;
values.province = values.location_arr && values.location_arr.length > 0 && values.location_arr[0] ? values.location_arr[0] : 0;
values.city = values.location_arr && values.location_arr.length > 0 && values.location_arr[1] ? values.location_arr[1] : 0;
values.district = values.location_arr && values.location_arr.length > 0 && values.location_arr[2] ? values.location_arr[2] : 0;
values.street = values.location_arr && values.location_arr.length > 0 && values.location_arr[3] ? values.location_arr[3] : 0;
delete values.location_arr; delete values.location_arr;
values.roleids = values.roleids.join(',') values.roleids = values.roleids.join(',')
console.log(values.roleids) console.log(values.roleids)

Loading…
Cancel
Save