|
|
@@ -17,7 +17,7 @@
|
|
|
<div class="info-item">
|
|
|
<span class="text1">{{ `是否专利${info.tpType === 'TECHNOLOGY' ? '技术' : '产品'}` }}:</span>
|
|
|
<span class="text2" v-if="info.isPatented">{{
|
|
|
- getLabelName(info.patentType, patentTypeOptions)
|
|
|
+ getLabelName(info.patentType, patentTypeOptionss)
|
|
|
}}</span>
|
|
|
<span class="text2" v-else>否</span>
|
|
|
</div>
|
|
|
@@ -84,7 +84,7 @@
|
|
|
import BreadPage from '../../components/page/BreadPage.vue';
|
|
|
import comEvent from '../../mixins/comEvent';
|
|
|
import {
|
|
|
- patentTypeOptions,
|
|
|
+ // patentTypeOptions,
|
|
|
tradingMethodOptionsDemand,
|
|
|
tradingMethodOptionsDemands,
|
|
|
stageOptions,
|
|
|
@@ -94,7 +94,11 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
info: {},
|
|
|
- patentTypeOptions,
|
|
|
+ patentTypeOptionss: [
|
|
|
+ { label: '发明', value: 'INVENTION' },
|
|
|
+ { label: '实用新型', value: 'UTILITY_MODEL' },
|
|
|
+ { label: '外观设计', value: 'APPEARANCE_DESIGN' }
|
|
|
+ ],
|
|
|
stageOptions,
|
|
|
tradingMethodOptionsDemand,
|
|
|
tradingMethodOptionsDemands,
|