|
@@ -471,6 +471,9 @@ export default {
|
|
|
// 技术提交
|
|
|
async technologyBtn() {
|
|
|
let data = this.technologyForm;
|
|
|
+ data.noticeid = this.noticeInfo.id;
|
|
|
+ data.type = '0';
|
|
|
+ data.status = '0';
|
|
|
let res = await this.productCreate(data);
|
|
|
if (this.$checkRes(res)) {
|
|
|
this.$message({
|
|
@@ -485,6 +488,9 @@ export default {
|
|
|
// 成果提交
|
|
|
async achieveBtn() {
|
|
|
let data = this.achieveForm;
|
|
|
+ data.noticeid = this.noticeInfo.id;
|
|
|
+ data.type = '0';
|
|
|
+ data.status = '0';
|
|
|
let res = await this.productCreate(data);
|
|
|
if (this.$checkRes(res)) {
|
|
|
this.$message({
|