Browse Source

图标修改

master
aBin 5 years ago
parent
commit
9a05aca03c
  1. 2
      src/views/About/Children/Organ.vue
  2. 18
      src/views/NewPlatform/Children/AchDet.vue
  3. 24
      src/views/NewPlatform/Children/ShareChild/InsDet.vue

2
src/views/About/Children/Organ.vue

@ -103,7 +103,7 @@ export default {
align: 'left', align: 'left',
}, },
}, },
expandAndCollapse: true, expandAndCollapse: false,
animationDuration: 550, animationDuration: 550,
animationDurationUpdate: 750, animationDurationUpdate: 750,
}, },

18
src/views/NewPlatform/Children/AchDet.vue

@ -1,4 +1,8 @@
<template> <template>
<div>
<div class="inner" style="margin-top: 40px">
<bread-crumb :arr="arr" />
</div>
<div class="inner equ-box"> <div class="inner equ-box">
<div class="equ-info d-flex"> <div class="equ-info d-flex">
<img :src="obj.visitLocation" /> <img :src="obj.visitLocation" />
@ -42,6 +46,7 @@
<div v-dompurify-html="obj.content"></div> <div v-dompurify-html="obj.content"></div>
</div> </div>
</div> </div>
</div>
</template> </template>
<script> <script>
@ -49,11 +54,20 @@ import { mapState } from 'vuex';
import { selResMes } from 'config/api'; import { selResMes } from 'config/api';
import IntentionModel from 'components/Introduce/IntentionModel.vue'; import IntentionModel from 'components/Introduce/IntentionModel.vue';
import AddShopping from 'components/Introduce/AddShopping.vue'; import AddShopping from 'components/Introduce/AddShopping.vue';
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
export default { export default {
name: 'AchDet', name: 'AchDet',
components: { IntentionModel, AddShopping }, components: { IntentionModel, AddShopping, BreadCrumb },
data() { data() {
return { return {
typeOfPlatform: '成果详情',
arr: [
{ name: '创新平台', url: '/NewPlatform/NewCore' },
{ name: '创新资源平台', url: '/NewPlatform/News' },
{ name: '知识产权与技术转移转化服务平台', url: '/NewPlatform/Transfer' },
{ name: '成果详情', url: '' },
],
obj: {}, obj: {},
typeData: { typeData: {
type: 2, type: 2,
@ -88,7 +102,7 @@ export default {
.equ-box { .equ-box {
background: #fff; background: #fff;
padding: 20px; padding: 20px;
margin: 60px auto; margin: 30px auto;
} }
.equ-info { .equ-info {

24
src/views/NewPlatform/Children/ShareChild/InsDet.vue

@ -1,4 +1,8 @@
<template> <template>
<div>
<div class="inner" style="margin-top: 40px">
<bread-crumb :arr="arr" />
</div>
<div class="inner equ-box"> <div class="inner equ-box">
<div class="equ-info d-flex"> <div class="equ-info d-flex">
<img :src="obj.visitLocation" /> <img :src="obj.visitLocation" />
@ -7,7 +11,7 @@
<p class="equ-name">{{ obj.name }}</p> <p class="equ-name">{{ obj.name }}</p>
<div style="margin-top: 20px" class="d-flex flex-wrap" v-if="listState === 1"> <div style="margin-top: 20px" class="d-flex flex-wrap" v-if="listState === 1">
<div class="equ-info-left" style="width: 200px"> <div class="equ-info-left" style="width: 200px">
<p>仪器名字</p> <!-- <p>仪器名字</p> -->
<p>制造商</p> <p>制造商</p>
<p>型号</p> <p>型号</p>
<p>规格</p> <p>规格</p>
@ -15,8 +19,8 @@
<p>联系人</p> <p>联系人</p>
<p>联系方式</p> <p>联系方式</p>
</div> </div>
<div style="width: 500px"> <div>
<p>{{ obj.name }}</p> <!-- <p>{{ obj.name }}</p> -->
<p>{{ obj.manufactor }}</p> <p>{{ obj.manufactor }}</p>
<p>{{ obj.model }}</p> <p>{{ obj.model }}</p>
<p>{{ obj.specifications }}</p> <p>{{ obj.specifications }}</p>
@ -65,6 +69,7 @@
<div v-dompurify-html="obj.details" v-if="listState === 3"></div> <div v-dompurify-html="obj.details" v-if="listState === 3"></div>
</div> </div>
</div> </div>
</div>
</template> </template>
<script> <script>
@ -72,11 +77,20 @@ import { mapState } from 'vuex';
import { selInstrumentMes, selProductMes } from 'config/api'; import { selInstrumentMes, selProductMes } from 'config/api';
import IntentionModel from 'components/Introduce/IntentionModel.vue'; import IntentionModel from 'components/Introduce/IntentionModel.vue';
import AddShopping from 'components/Introduce/AddShopping.vue'; import AddShopping from 'components/Introduce/AddShopping.vue';
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
export default { export default {
name: 'InsDet', name: 'InsDet',
components: { IntentionModel, AddShopping }, components: { IntentionModel, AddShopping, BreadCrumb },
data() { data() {
return { return {
typeOfPlatform: '设备详情',
arr: [
{ name: '创新平台', url: '/NewPlatform/NewCore' },
{ name: '创新资源平台', url: '/NewPlatform/News' },
{ name: '科技资源开放共享服务平台', url: '/NewPlatform/Share' },
{ name: '设备详情', url: '' },
],
obj: {}, obj: {},
typeData: { typeData: {
type: 1, type: 1,
@ -137,7 +151,7 @@ export default {
.equ-box { .equ-box {
background: #fff; background: #fff;
padding: 20px; padding: 20px;
margin: 60px auto; margin: 30px auto;
} }
.equ-info { .equ-info {

Loading…
Cancel
Save