diff --git a/components/index/video-item/index.vue b/components/index/video-item/index.vue index 27b5dbf..35fbdad 100644 --- a/components/index/video-item/index.vue +++ b/components/index/video-item/index.vue @@ -1,9 +1,12 @@ @@ -26,11 +28,11 @@ import common from '@/static/js/common.js' export default { data() { return { - version: "", - phone_type: "", type: 1, nodes: "", - show: false, + version: "", + show: false, + phone_type: "", } }, onLoad(option) { @@ -43,6 +45,17 @@ export default { this.getVersion(); this.phone_type = this.$u.os(); }, + onBackPress() { + if (this.show) { + this.show = !this.show; + } else { + return false; + } + return true; + }, + onNavigationBarButtonTap(e) { + console.log(e); + }, methods: { setTitle(title){ uni.setNavigationBarTitle({ @@ -129,4 +142,10 @@ page { font-size: 22rpx; } } +.u-content { + padding: 20rpx; + font-size: 30rpx; + text-indent: 1rem; + line-height: 1.2; +} \ No newline at end of file diff --git a/pages.json b/pages.json index 51da0ec..8c36d72 100644 --- a/pages.json +++ b/pages.json @@ -610,7 +610,16 @@ "titleSize": "36px", "titleNView": { "titleColor": "#333333", - "backgroundColor": "#FFFFFF" + "backgroundColor": "#FFFFFF", + "buttons": [ + { + "width": "0", + "type":"none", + "text":"关闭", + "float":"right", + "fontSize":"14" + } + ] } } }