mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-16 06:16:46 +08:00
Merge branch 'develop' of http://gitlab.dongwu-inc.com:10080/BOE/fe-manage into develop
This commit is contained in:
@@ -585,8 +585,20 @@ const temporaryStorage = async () => {
|
||||
};
|
||||
//确定
|
||||
const submitStorage = async () => {
|
||||
if (projectInfo.value.projectInfo.status === 3) {
|
||||
dialog({
|
||||
content: '该项目已经发布,修改后如未点击暂存当前操作未保存数据将丢失,确认保存?',
|
||||
ok: async () => {
|
||||
confirmLoading.value = true
|
||||
await request(PROJECT_RELEASE, {projectId: route.query.projectId})
|
||||
message.success("保存成功");
|
||||
confirmLoading.value = false
|
||||
},
|
||||
})
|
||||
return
|
||||
}
|
||||
confirmLoading.value = true
|
||||
projectInfo.value.projectInfo.status === 3 ? await request(PROJECT_RELEASE, {projectId: route.query.projectId}) : await request(PROJECT_DETAIL_MODIFY, projectInfo.value)
|
||||
await request(PROJECT_DETAIL_MODIFY, projectInfo.value)
|
||||
message.success("阶段和任务数据已保存")
|
||||
confirmLoading.value = false
|
||||
};
|
||||
@@ -822,7 +834,7 @@ const cancelStorage = async () => {
|
||||
.ant-modal {
|
||||
width: 549px !important;
|
||||
height: 245px !important;
|
||||
|
||||
|
||||
.ant-modal-content {
|
||||
width: 549px !important;
|
||||
height: 245px !important;
|
||||
@@ -950,9 +962,10 @@ const cancelStorage = async () => {
|
||||
.leftmain {
|
||||
margin-top: 20px;
|
||||
position: sticky;
|
||||
top:0;
|
||||
top: 0;
|
||||
height: 80vh;
|
||||
overflow-y: auto;
|
||||
|
||||
.tit {
|
||||
margin-left: 20px;
|
||||
font-size: 18px;
|
||||
|
||||
Reference in New Issue
Block a user