Browse Source

deploy

master
Soleilw 7 months ago
parent
commit
108e9d2dbb

+ 1
- 1
dist/index.html View File

</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
<script src="/umi.63914d07.js"></script>
<script src="/umi.deb0f7f8.js"></script>
</body> </body>
</html> </html>

+ 0
- 1
dist/p__Company__List__index.65995ab8.async.js
File diff suppressed because it is too large
View File


+ 1
- 0
dist/p__Company__List__index.776d3fbf.async.js
File diff suppressed because it is too large
View File


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


+ 2
- 2
p.sh View File

fi fi


git add . git add .
git commit --no-verify -m "noverify"
git commit -a -m "$msg"
git commit --no-verify -m "$msg"
git push git push

+ 2
- 2
src/components/Render/Main/Company/List/bind/index.tsx View File

} }


useEffect(() => { useEffect(() => {
if (!openModel.openModal) {
if (!openModel.openBindModal) {
actionRef.current.reload(); actionRef.current.reload();
} }
}, [openModel.openModal])
}, [openModel.openBindModal])


return ( return (
<> <>

+ 2
- 1
src/components/Render/Main/Company/List/table/index.tsx View File

name: '子账号解绑', name: '子账号解绑',
key: '4', key: '4',
onClick: () => { onClick: () => {

setId(record.id)
dispatch({ type: 'openModel/getOpenBindModal', payload: true })
}, },
}, },
]} ]}

+ 18
- 0
src/models/openModel.ts View File

openDispenseModal: false, // 为角色分配权限开关 openDispenseModal: false, // 为角色分配权限开关
openFeeModal: false, // vip变更费用开关 openFeeModal: false, // vip变更费用开关
openFairDetailModal: false, // 预览招聘会 openFairDetailModal: false, // 预览招聘会
openBindModal: false, // 预览招聘会




}, },
openFairDetailModal: payload openFairDetailModal: payload
} }
}, },
setOpenBindModal(state: any, { payload }: any) {
return {
...state,
openBindModal: payload
}
},
setEditRegister(state: any, { payload }: any) { setEditRegister(state: any, { payload }: any) {
if (state.editRegisterKey && state.editRegisterKey !== payload.key) { if (state.editRegisterKey && state.editRegisterKey !== payload.key) {
console.log(error) console.log(error)
} }
}, },
*getOpenBindModal({ payload }: any, { put }: any) {
try {
yield put({
type: 'setOpenBindModal',
payload: payload
})
} catch (error) {
console.log(error)
}
},
*getEditRegister({ payload }: any, { put }: any): any { *getEditRegister({ payload }: any, { put }: any): any {
try { try {

Loading…
Cancel
Save