|
@@ -38,7 +38,7 @@
|
|
|
</div>
|
|
|
<div class="userEnd">
|
|
|
<div class="albumPhoto">
|
|
|
- <img :src="imgUrl"/>
|
|
|
+ <img :src="imgUrl" @click="openPreview(detailDataBase.cover)"/>
|
|
|
<div>{{detailDataBase.createTime}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -134,7 +134,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="albumList" v-else>
|
|
|
+ <div class="albumList" style="margin-top:0;" v-else>
|
|
|
<div :key="index" @click="changeCatalogue(index)" :class="albumPkId==item.pkId?'albumitem actionAlbum':'albumitem'" v-for="(item, index) in albumArr">
|
|
|
<div class="leftPoint0"></div>
|
|
|
<div class="pointText">{{item.name}}</div>
|
|
@@ -277,6 +277,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-modal>
|
|
|
+ <previewVisible ref="previewVisible"></previewVisible>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -288,13 +289,15 @@ import album from '@/api/knowledge/album'
|
|
|
import api from '@/api/knowledge/warehouseIndex'
|
|
|
import pageList from '../components/pageListAlbum'
|
|
|
import albumList from '../components/albumList'
|
|
|
+import previewVisible from '../components/previewVisible'
|
|
|
import { ACCESS_TOKEN } from '@/store/mutation-types';
|
|
|
import {mapState} from "vuex";
|
|
|
export default {
|
|
|
name: 'contentData',
|
|
|
components: {
|
|
|
pageList,
|
|
|
- albumList
|
|
|
+ albumList,
|
|
|
+ previewVisible
|
|
|
},
|
|
|
computed: {
|
|
|
...mapState({
|
|
@@ -456,6 +459,9 @@ export default {
|
|
|
this.init()
|
|
|
},
|
|
|
methods: {
|
|
|
+ openPreview(src){
|
|
|
+ this.$refs.previewVisible.openBig(src)
|
|
|
+ },
|
|
|
//点击加载更多评论
|
|
|
getMoreList(){
|
|
|
this.yelpPageNum = this.yelpPageNum+1
|
|
@@ -823,6 +829,14 @@ export default {
|
|
|
},
|
|
|
changeAction(num){
|
|
|
this.tapAction = num
|
|
|
+ if(this.$route.query.pkId) {
|
|
|
+ if(this.tapAction==1||this.tapAction==3){
|
|
|
+ this.getApprovals()
|
|
|
+ }
|
|
|
+ if(this.tapAction==2){
|
|
|
+ this.getYelp()
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
//初始化
|
|
|
async init() {
|
|
@@ -854,6 +868,12 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+<style>
|
|
|
+.titleRight .ant-radio-button-wrapper:not(:first-child):before{
|
|
|
+ display: none;
|
|
|
+ background: #000;
|
|
|
+}
|
|
|
+</style>
|
|
|
<style lang="less" scoped>
|
|
|
.categoryBox{
|
|
|
display: inline-block;
|
|
@@ -947,29 +967,47 @@ export default {
|
|
|
}
|
|
|
.titleRight{
|
|
|
margin-left: auto;
|
|
|
- border: 1px solid #EEEEEE;
|
|
|
- border-radius: 0.416666vw;
|
|
|
+ border: 2px solid #EEEEEE;
|
|
|
+ border-radius: 6px;
|
|
|
color: #202124;
|
|
|
font-size: 0.73vw;
|
|
|
height: 1.875vw;
|
|
|
+ overflow: hidden;
|
|
|
+ background: #EEEEEE;
|
|
|
}
|
|
|
.titleRight /deep/.ant-radio-button-wrapper{
|
|
|
+ border-radius: 0vw;
|
|
|
background: #eee;
|
|
|
font-weight: 400;
|
|
|
- border-color: #EEEEEE;
|
|
|
- height: 1.875vw;
|
|
|
- line-height: 1.8vw;
|
|
|
+ border-color: #eeeeee00;
|
|
|
+ height: calc(1.875vw - 4px);
|
|
|
+ line-height: calc(1.875vw - 4px);
|
|
|
+ box-shadow: none!important;
|
|
|
+}
|
|
|
+.titleRight /deep/.ant-radio-button-wrapper:focus{
|
|
|
+ box-shadow: none!important;
|
|
|
}
|
|
|
.titleRight /deep/.ant-radio-button-wrapper:hover{
|
|
|
color: #202124;
|
|
|
}
|
|
|
+.titleRight /deep/.ant-radio-button-wrapper:before{
|
|
|
+ background-color: #d9d9d900;
|
|
|
+}
|
|
|
.titleRight /deep/.ant-radio-button-wrapper-checked{
|
|
|
+ border-radius: 6px;
|
|
|
+ box-shadow: none!important;
|
|
|
background: #fff;
|
|
|
font-weight: 400;
|
|
|
border-color: #EEEEEE;
|
|
|
color: #202124;
|
|
|
box-shadow:none;
|
|
|
}
|
|
|
+.titleRight /deep/.ant-radio-button{
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.titleRight /deep/.ant-radio-button-wrapper-checked:focus{
|
|
|
+ box-shadow: none!important;
|
|
|
+}
|
|
|
.titleRight /deep/.ant-radio-button-wrapper-checked:hover{
|
|
|
background: #fff;
|
|
|
border-color: #EEEEEE;
|