Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
project_progress
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 790bbe36
authored
Jun 11, 2024
by
liangzhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
暂存下
1 parent
4f65a5c2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
60 additions
and
15 deletions
package-lock.json
package.json
src/api/index.js
src/utils/cache.js
src/utils/leftBarRules.js
src/views/assessChecks/assistedFeedback.vue
src/views/assessChecks/assistedViewing.vue
src/views/assessChecks/attachSynchronousArchiving.vue
src/views/assessChecks/auxiliaryInspection.vue
src/views/assessChecks/auxiliarySelection.vue
src/views/assessChecks/checkCompliance.vue
src/views/assessChecks/confirmRelease.vue
src/views/assessChecks/correctiveAssistanceVerification.vue
src/views/assessChecks/materialAcquisition.vue
package-lock.json
View file @
790bbe3
This diff is collapsed.
Click to expand it.
package.json
View file @
790bbe3
...
...
@@ -11,10 +11,13 @@
"@wangeditor/editor-for-vue"
:
"^1.0.2"
,
"axios"
:
"^1.6.2"
,
"core-js"
:
"^3.8.3"
,
"docx-preview"
:
"^0.3.2"
,
"echarts"
:
"^5.5.0"
,
"el-table-horizontal-scroll"
:
"^1.2.5"
,
"element-ui"
:
"^2.15.14"
,
"jquery"
:
"^3.7.1"
,
"mammoth"
:
"^1.7.2"
,
"moment"
:
"^2.30.1"
,
"scss"
:
"^0.2.4"
,
"vue"
:
"^2.6.14"
,
"vue-cli"
:
"^2.9.6"
,
...
...
src/api/index.js
View file @
790bbe3
...
...
@@ -255,8 +255,12 @@ export function tjrectificationVerification(params) {
//材料同步归档
//列表
export
function
materialSync
(
params
)
{
return
post
(
`
${
ARCH_EVALUATION
}
/materialSync/`
,
params
)
export
function
tbgdrectificationVerification
(
params
)
{
return
post
(
`
${
ARCH_EVALUATION
}
/rectificationVerification/tbgd`
,
params
)
}
//归档
export
function
gdrectificationVerification
(
params
)
{
return
post
(
`
${
ARCH_EVALUATION
}
/rectificationVerification/gd`
,
params
)
}
//下载
...
...
src/utils/cache.js
View file @
790bbe3
...
...
@@ -54,8 +54,8 @@ export function MaterialsListKY(type) {
break
;
case
2
:
return
[
{
batchtype
:
"计划"
,
typeText
:
"公司下达计划信息"
,
typeCode
:
"4"
},
{
batchtype
:
"可研"
,
typeText
:
"可研批复"
,
typeCode
:
"2"
},
{
batchtype
:
"计划"
,
typeText
:
"公司下达计划信息"
,
typeCode
:
"4"
},
]
break
case
3
:
...
...
src/utils/leftBarRules.js
View file @
790bbe3
...
...
@@ -131,6 +131,11 @@ export function trendsRules(type) {
url
:
"/mainLayout/correctiveAssistanceVerification"
,
children
:
[],
},
{
name
:
"同步归档"
,
url
:
"/mainLayout/attachSynchronousArchiving"
,
children
:
[],
},
],
},
],
...
...
@@ -163,11 +168,11 @@ export function trendsRules(type) {
// url: "/mainLayout/assistedRect",
// children: [],
// },
//
{
// name: "专家
同步归档",
//
url: "/mainLayout/attachSynchronousArchiving",
//
children: [],
//
},
{
name
:
"
同步归档"
,
url
:
"/mainLayout/attachSynchronousArchiving"
,
children
:
[],
},
],
},
],
...
...
@@ -327,11 +332,11 @@ export function trendsRules(type) {
url
:
"/mainLayout/correctiveAssistanceVerification"
,
children
:
[],
},
//
{
// name: "专家
同步归档",
//
url: "/mainLayout/attachSynchronousArchiving",
//
children: [],
//
},
{
name
:
"
同步归档"
,
url
:
"/mainLayout/attachSynchronousArchiving"
,
children
:
[],
},
],
},
{
...
...
src/views/assessChecks/assistedFeedback.vue
View file @
790bbe3
...
...
@@ -514,6 +514,8 @@ export default {
this
.
$set
(
item
,
"reviewText"
,
"需整改"
);
}
else
if
(
item
.
reviewStatus
==
"2"
)
{
this
.
$set
(
item
,
"reviewText"
,
"已整改"
);
}
else
if
(
item
.
reviewStatus
==
"3"
)
{
this
.
$set
(
item
,
"reviewText"
,
"已归档"
);
}
this
.
$set
(
item
,
...
...
src/views/assessChecks/assistedViewing.vue
View file @
790bbe3
...
...
@@ -389,6 +389,13 @@ export default {
this
.
submitForm
();
},
methods
:
{
timeChange
(
time
)
{
if
(
time
)
{
//给后端的参数
this
.
ruleForm
.
createStartTime
=
time
[
0
];
this
.
ruleForm
.
createEndTime
=
time
[
1
];
}
},
async
submitForm
()
{
let
params
=
{
current
:
this
.
currentPage
,
...
...
@@ -412,6 +419,8 @@ export default {
this
.
$set
(
item
,
"reviewStatusText"
,
"需整改"
);
}
else
if
(
item
.
reviewStatus
==
"2"
)
{
this
.
$set
(
item
,
"reviewStatusText"
,
"已整改"
);
}
else
if
(
item
.
reviewStatus
==
"3"
)
{
this
.
$set
(
item
,
"reviewStatusText"
,
"已归档"
);
}
this
.
$set
(
item
,
...
...
src/views/assessChecks/attachSynchronousArchiving.vue
View file @
790bbe3
This diff is collapsed.
Click to expand it.
src/views/assessChecks/auxiliaryInspection.vue
View file @
790bbe3
...
...
@@ -229,6 +229,13 @@ export default {
this
.
submitForm
();
},
methods
:
{
timeChange
(
time
)
{
if
(
time
)
{
//给后端的参数
this
.
ruleForm
.
createStartTime
=
time
[
0
];
this
.
ruleForm
.
createEndTime
=
time
[
1
];
}
},
async
submitForm
()
{
let
params
=
{
current
:
this
.
currentPage
,
...
...
@@ -261,6 +268,8 @@ export default {
this
.
$set
(
item
,
"reviewStatusText"
,
"需整改"
);
}
else
if
(
item
.
reviewStatus
==
"2"
)
{
this
.
$set
(
item
,
"reviewStatusText"
,
"已整改"
);
}
else
if
(
item
.
reviewStatus
==
"3"
)
{
this
.
$set
(
item
,
"reviewStatusText"
,
"已归档"
);
}
this
.
$set
(
item
,
...
...
src/views/assessChecks/auxiliarySelection.vue
View file @
790bbe3
...
...
@@ -727,6 +727,9 @@ export default {
//给后端的参数
this
.
ruleForm
.
createStartTime
=
time
[
0
];
this
.
ruleForm
.
createEndTime
=
time
[
1
];
}
else
{
this
.
ruleForm
.
createStartTime
=
""
;
this
.
ruleForm
.
createEndTime
=
""
;
}
},
async
submitForm
()
{
...
...
@@ -750,7 +753,7 @@ export default {
this
.
$set
(
item
,
"postEvalStateText"
,
"已撤回"
);
}
else
if
(
item
.
postEvalState
==
"1"
)
{
this
.
$set
(
item
,
"postEvalStateText"
,
"已发起"
);
}
else
if
(
item
.
postEvalState
==
"3"
)
{
}
else
if
(
item
.
postEvalState
==
"3"
||
item
.
postEvalState
==
"4"
)
{
this
.
$set
(
item
,
"postEvalStateText"
,
"执行中"
);
}
else
if
(
item
.
postEvalState
==
"5"
)
{
this
.
$set
(
item
,
"postEvalStateText"
,
"已完成"
);
...
...
src/views/assessChecks/checkCompliance.vue
View file @
790bbe3
...
...
@@ -404,7 +404,7 @@ export default {
const
binaryData
=
[]
binaryData
.
push
(
resUrl
)
let
URL
=
window
.
URL
.
createObjectURL
(
new
Blob
(
binaryData
,
{
type
:
this
.
urlList
[
0
].
contentType
}))
this
.
iframeUrl
=
"/pdf/web/viewer.html?file="
+
URL
this
.
iframeUrl
=
URL
}
// setTimeout(() => {
// this.oldQuestionList = JSON.parse(JSON.stringify(this.questionList));
...
...
src/views/assessChecks/confirmRelease.vue
View file @
790bbe3
...
...
@@ -679,10 +679,14 @@ export default {
},
methods
:
{
timeChange
(
time
)
{
console
.
log
(
'tttttt'
,
time
)
if
(
time
)
{
//给后端的参数
this
.
ruleForm
.
createStartTime
=
time
[
0
];
this
.
ruleForm
.
createEndTime
=
time
[
1
];
}
else
{
this
.
ruleForm
.
createStartTime
=
""
;
this
.
ruleForm
.
createEndTime
=
""
;
}
},
async
submitForm
()
{
...
...
src/views/assessChecks/correctiveAssistanceVerification.vue
View file @
790bbe3
...
...
@@ -584,6 +584,8 @@ export default {
this
.
$set
(
item
,
"reviewText"
,
"需整改"
);
}
else
if
(
item
.
reviewStatus
==
"2"
)
{
this
.
$set
(
item
,
"reviewText"
,
"已整改"
);
}
else
if
(
item
.
reviewStatus
==
"3"
)
{
this
.
$set
(
item
,
"reviewText"
,
"已归档"
);
}
this
.
$set
(
item
,
...
...
src/views/assessChecks/materialAcquisition.vue
View file @
790bbe3
...
...
@@ -393,6 +393,10 @@ export default {
//给后端的参数
this
.
ruleForm
.
planStartTime
=
time
[
0
];
this
.
ruleForm
.
planEndTime
=
time
[
1
];
}
else
{
//给后端的参数
this
.
ruleForm
.
planStartTime
=
""
;
this
.
ruleForm
.
planEndTime
=
""
;
}
},
async
submitForm
()
{
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment