|
@@ -83,12 +83,12 @@
|
|
</template>
|
|
</template>
|
|
</van-field>
|
|
</van-field>
|
|
<van-field v-model="form.intentionprice" name="意向价格" label="意向价格" placeholder="意向价格" />
|
|
<van-field v-model="form.intentionprice" name="意向价格" label="意向价格" placeholder="意向价格" />
|
|
- <van-field name="patent" label="专利信息">
|
|
|
|
|
|
+ <!-- <van-field name="patent" label="专利信息">
|
|
<template #input>
|
|
<template #input>
|
|
<el-button type="primary" size="mini" @click="addPatent">添加</el-button>
|
|
<el-button type="primary" size="mini" @click="addPatent">添加</el-button>
|
|
<el-button type="primary" size="mini" @click="viewPatent">查看</el-button>
|
|
<el-button type="primary" size="mini" @click="viewPatent">查看</el-button>
|
|
</template>
|
|
</template>
|
|
- </van-field>
|
|
|
|
|
|
+ </van-field> -->
|
|
<van-field v-model="form.achievebrief" rows="1" autosize label="成果简介" type="textarea" placeholder="成果简介" />
|
|
<van-field v-model="form.achievebrief" rows="1" autosize label="成果简介" type="textarea" placeholder="成果简介" />
|
|
<van-field v-model="form.features" rows="1" autosize label="技术特点" type="textarea" placeholder="技术特点" />
|
|
<van-field v-model="form.features" rows="1" autosize label="技术特点" type="textarea" placeholder="技术特点" />
|
|
<van-field v-model="form.team" rows="1" autosize label="技术团队" type="textarea" placeholder="技术团队" />
|
|
<van-field v-model="form.team" rows="1" autosize label="技术团队" type="textarea" placeholder="技术团队" />
|
|
@@ -152,7 +152,7 @@
|
|
</span>
|
|
</span>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
- <van-dialog v-model="show" title="添加专利信息" :showConfirmButton="false" :closeOnClickOverlay="true">
|
|
|
|
|
|
+ <!-- <van-dialog v-model="show" title="添加专利信息" :showConfirmButton="false" :closeOnClickOverlay="true">
|
|
<van-form>
|
|
<van-form>
|
|
<van-field v-model="patentform.patentinfo" name="名称" label="名称" placeholder="名称" />
|
|
<van-field v-model="patentform.patentinfo" name="名称" label="名称" placeholder="名称" />
|
|
<van-field name="radio" label="专利状态">
|
|
<van-field name="radio" label="专利状态">
|
|
@@ -178,7 +178,7 @@
|
|
<el-button type="primary" size="mini" @click="delPatent(index, item)">刪除</el-button>
|
|
<el-button type="primary" size="mini" @click="delPatent(index, item)">刪除</el-button>
|
|
</p>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
- </van-dialog>
|
|
|
|
|
|
+ </van-dialog> -->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -206,10 +206,10 @@ export default {
|
|
achievestatus: [],
|
|
achievestatus: [],
|
|
achievestatuspic: false,
|
|
achievestatuspic: false,
|
|
// 专利信息
|
|
// 专利信息
|
|
- show: false,
|
|
|
|
- patentform: {},
|
|
|
|
- patentshow: false,
|
|
|
|
- patentList: [],
|
|
|
|
|
|
+ // show: false,
|
|
|
|
+ // patentform: {},
|
|
|
|
+ // patentshow: false,
|
|
|
|
+ // patentList: [],
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {},
|
|
created() {},
|
|
@@ -260,39 +260,39 @@ export default {
|
|
this.form.image.splice(index, 1);
|
|
this.form.image.splice(index, 1);
|
|
},
|
|
},
|
|
// 添加专利信息
|
|
// 添加专利信息
|
|
- addPatent() {
|
|
|
|
- this.show = true;
|
|
|
|
- },
|
|
|
|
|
|
+ // addPatent() {
|
|
|
|
+ // this.show = true;
|
|
|
|
+ // },
|
|
// 提交专利信息
|
|
// 提交专利信息
|
|
- patentSubmit() {
|
|
|
|
- this.patentList.push(this.patentform);
|
|
|
|
- this.show = false;
|
|
|
|
- },
|
|
|
|
|
|
+ // patentSubmit() {
|
|
|
|
+ // this.patentList.push(this.patentform);
|
|
|
|
+ // this.show = false;
|
|
|
|
+ // },
|
|
// 查看专利信息
|
|
// 查看专利信息
|
|
- viewPatent() {
|
|
|
|
- this.patentshow = true;
|
|
|
|
- },
|
|
|
|
|
|
+ // viewPatent() {
|
|
|
|
+ // this.patentshow = true;
|
|
|
|
+ // },
|
|
// 删除专利信息
|
|
// 删除专利信息
|
|
- delPatent(index, val) {
|
|
|
|
- this.patentList.splice(index, 1);
|
|
|
|
- this.$notify({
|
|
|
|
- message: '删除成功',
|
|
|
|
- type: 'success',
|
|
|
|
- });
|
|
|
|
- this.patentshow = false;
|
|
|
|
- },
|
|
|
|
|
|
+ // delPatent(index, val) {
|
|
|
|
+ // this.patentList.splice(index, 1);
|
|
|
|
+ // this.$notify({
|
|
|
|
+ // message: '删除成功',
|
|
|
|
+ // type: 'success',
|
|
|
|
+ // });
|
|
|
|
+ // this.patentshow = false;
|
|
|
|
+ // },
|
|
onSubmit() {
|
|
onSubmit() {
|
|
- this.form.patent = this.patentList;
|
|
|
|
|
|
+ // this.form.patent = this.patentList;
|
|
this.$emit('onSubmit', { data: this.form });
|
|
this.$emit('onSubmit', { data: this.form });
|
|
},
|
|
},
|
|
// 查询专利信息
|
|
// 查询专利信息
|
|
- searchpatent() {
|
|
|
|
- let data = this.form;
|
|
|
|
- if (data.patent) {
|
|
|
|
- console.log(data.patent);
|
|
|
|
- this.$set(this, `patentList`, data.patent);
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
|
|
+ // searchpatent() {
|
|
|
|
+ // let data = this.form;
|
|
|
|
+ // if (data.patent) {
|
|
|
|
+ // console.log(data.patent);
|
|
|
|
+ // this.$set(this, `patentList`, data.patent);
|
|
|
|
+ // }
|
|
|
|
+ // },
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
fieldList: {
|
|
fieldList: {
|