浏览代码

deploy

master
Soleilw 8 个月前
父节点
当前提交
108e9d2dbb

+ 1
- 1
dist/index.html 查看文件

</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
文件差异内容过多而无法显示
查看文件


+ 1
- 0
dist/p__Company__List__index.776d3fbf.async.js
文件差异内容过多而无法显示
查看文件


dist/umi.deb0f7f8.js
文件差异内容过多而无法显示
查看文件


+ 2
- 2
p.sh 查看文件

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 查看文件

} }


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 查看文件

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

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

+ 18
- 0
src/models/openModel.ts 查看文件

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 {

正在加载...
取消
保存