|
@@ -103,7 +103,7 @@
|
|
|
专利信息
|
|
|
</el-col>
|
|
|
<el-col :span="20" class="otherInfo textOver" style="padding: 6px">
|
|
|
- <el-button type="primary" size="mini">专利信息</el-button>
|
|
|
+ <el-button type="primary" size="mini" @click="dialogTableVisible1 = true">专利信息</el-button>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<!-- <el-col :span="12">
|
|
@@ -167,6 +167,12 @@
|
|
|
<el-dialog title="对接" :visible.sync="dialogTableVisible">
|
|
|
<chat :room="room"></chat>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog title="专利信息" :visible.sync="dialogTableVisible1">
|
|
|
+ <el-table :data="gridData">
|
|
|
+ <el-table-column property="patentinfo" label="专利信息" width="200"></el-table-column>
|
|
|
+ <el-table-column property=" patentstatus" label="专利状态" width="200"></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -184,7 +190,7 @@ export default {
|
|
|
},
|
|
|
components: { chat },
|
|
|
data: function() {
|
|
|
- return { dialogTableVisible: false, room: {} };
|
|
|
+ return { dialogTableVisible: false, room: {}, dialogTableVisible1: false, gridData: [] };
|
|
|
},
|
|
|
created() {},
|
|
|
methods: {
|