addActivity.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view class="box">
  3. <view class="imgBox">
  4. <image class="scimg" :src="img" mode="widthFix"></image>
  5. </view>
  6. <view class="cont">
  7. <view class="name">活动名称展示区域</view>
  8. <view class="name2">活动时间展示区域</view>
  9. <view class="name3">这里展示活动说明,如果后台没填则不展示</view>
  10. </view>
  11. <view style="height: 98rpx;"></view>
  12. <view class="btn" @click="eadit" v-if="iOSInfo.indexOf('Q021')!=-1||!iOSInfo">编辑内容</view><!-- v-if="qxdata.indexOf('Q021')!=-1" -->
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. img:'',
  20. qxdata:'',
  21. iOSInfo:'',
  22. }
  23. },
  24. onLoad(opt) {
  25. this.img=opt.img;
  26. let iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
  27. var qxnum=uni.getStorageSync("quanxian");
  28. if(qxnum==1){
  29. this.iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
  30. }else if(qxnum==2){
  31. window.getAndroid=this.getAndroid;
  32. }
  33. },
  34. onShow() {
  35. },
  36. methods: {
  37. getAndroid(e){
  38. this.iOSInfo=e
  39. },
  40. eadit(){
  41. uni.removeStorageSync('shopckList');
  42. uni.removeStorageSync('ckmusic');
  43. uni.navigateTo({
  44. url:'eadit?img='+this.img
  45. })
  46. }
  47. }
  48. }
  49. </script>
  50. <style scoped>
  51. .imgBox{
  52. width: 750rpx;
  53. }
  54. .scimg{
  55. width: 750rpx;
  56. display: block;
  57. }
  58. .cont{
  59. background: #ffffff;
  60. border-radius: 24rpx 24rpx 0px 0px;
  61. margin-top: -30rpx;
  62. padding: 30rpx 24rpx;
  63. position: relative;
  64. }
  65. .name{
  66. color: #3C3C3C;
  67. line-height: 42rpx;
  68. font-weight: 500;
  69. font-size: 30rpx;
  70. }
  71. .name2{
  72. color: #3C3C3C;
  73. line-height: 36rpx;
  74. font-weight: 400;
  75. font-size: 26rpx;
  76. padding-top: 16rpx;
  77. }
  78. .name3{
  79. color: #999999;
  80. line-height: 36rpx;
  81. font-weight: 400;
  82. font-size: 26rpx;
  83. padding-top: 16rpx;
  84. }
  85. .btn{
  86. width: 750rpx;
  87. height: 98rpx;
  88. background: #3F90F7;
  89. position: fixed;
  90. left: 0;
  91. bottom: 0;
  92. line-height: 98rpx;
  93. text-align: center;
  94. color: #ffffff;
  95. font-size: 30rpx;
  96. }
  97. </style>