帧视界壹通告,付费看视频的微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
715 B

11 months ago
10 months ago
11 months ago
10 months ago
11 months ago
10 months ago
11 months ago
10 months ago
11 months ago
10 months ago
11 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
11 months ago
10 months ago
11 months ago
  1. <template>
  2. <view class="configPopup">
  3. <uv-popup ref="popup" :round="30" :customStyle="{height: '50vh'}">
  4. <view class="content">
  5. <uv-parse :content="content"></uv-parse>
  6. </view>
  7. </uv-popup>
  8. </view>
  9. </template>
  10. <script>
  11. import { mapState } from 'vuex'
  12. export default {
  13. name: 'configPoup',
  14. data() {
  15. return {
  16. content : ''
  17. }
  18. },
  19. onShow(){
  20. },
  21. methods: {
  22. //打开配置信息菜单
  23. open(key){
  24. console.log(key);
  25. this.content = this.configList[key]
  26. this.$refs.popup.open('bottom');
  27. }
  28. },
  29. computed : {
  30. ...mapState(['configList'])
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. .configPopup {
  36. .content{
  37. padding: 30rpx 20rpx;
  38. }
  39. }
  40. </style>