choice.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view class="content">
  3. <view class="zhidingyiBox">
  4. <view class="zhidingyi" @click="upimg">
  5. <view class="zdyLeft">
  6. <view class="zdyTitle">自定义图片</view>
  7. <view class="zdyms">建议尺寸:宽度750*390px</view>
  8. <view class="zdyms" style="padding-top: 24rpx;">请先上传自定义活动图片 后编辑活动内容</view>
  9. </view>
  10. <view class="zdyRight">
  11. <image src="../../static/img/bg_sucai@2x.png" mode="" class="zdyRightImg"></image>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="listBox">
  16. <view class="listLine" v-for="(item,i) in list">
  17. <view class="listTitle">{{item.Name}}</view>
  18. <view class="listSm">{{item.collectingComment}}</view>
  19. <scroll-view scroll-x="true" class="scroll-X" >
  20. <view class="listLineImgBox" >
  21. <view class="" v-for="(img,index) in item.imgList" @click="goAdd(img)">
  22. <image class="listLineImg" :src="img.Img" mode=""></image>
  23. </view>
  24. </view>
  25. </scroll-view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. list:'',
  35. imgurl:'',
  36. }
  37. },
  38. onLoad() {
  39. this.getSetTheGuestList();
  40. //?token=1BAD122A96BA41E49200322381DC5D34&uid=DC0B84EA-A67B-4A4B-8EAE-F55A13CF8217
  41. },
  42. methods: {
  43. goAdd(item){
  44. uni.navigateTo({
  45. url:'addActivity?img='+item.Img
  46. })
  47. },
  48. goAddzdy(img){
  49. uni.navigateTo({
  50. url:'addActivity?img='+img
  51. })
  52. },
  53. getSetTheGuestList(){
  54. uni.showLoading({
  55. title: '加载中'
  56. })
  57. this.$http('openH5SetTheGuest/getSetTheGuestList', {
  58. },'GET').then(res => {
  59. uni.hideLoading();
  60. this.list=res.data
  61. })
  62. },
  63. upimg(){
  64. var that = this;
  65. uni.chooseImage({
  66. sourceType: ['album','camera'],
  67. count:1,
  68. success: (chooseImageRes) => {
  69. const tempFilePaths = chooseImageRes.tempFilePaths;
  70. that.file=tempFilePaths[0]
  71. uni.uploadFile({
  72. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  73. filePath: tempFilePaths[0],
  74. name: 'file',
  75. formData: {
  76. 'user': 'test'
  77. },
  78. success: (uploadFileRes) => {
  79. console.log(JSON.parse(uploadFileRes.data).data );
  80. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  81. that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  82. that.goAddzdy(that.imgurl)
  83. }
  84. });
  85. }
  86. });
  87. }
  88. }
  89. }
  90. </script>
  91. <style scoped>
  92. .content{
  93. min-height: 100vh;
  94. background:#F4F5F7 ;
  95. }
  96. .zhidingyiBox{
  97. padding: 20rpx 24rpx;
  98. }
  99. .zhidingyi{
  100. background: #ffffff;
  101. border-radius: 10rpx;
  102. display: flex;
  103. justify-content: space-between;
  104. }
  105. .zdyRightImg{
  106. width: 217rpx;
  107. height: 210rpx;
  108. }
  109. .zdyLeft{
  110. padding-top: 50rpx;
  111. padding-left: 20rpx;
  112. width: 300rpx;
  113. } .zdyTitle{
  114. color: #333333;
  115. line-height: 42rpx;
  116. font-size: 30rpx;
  117. font-weight: 500;
  118. padding-bottom: 16rpx;
  119. }
  120. .zdyms{
  121. font-weight: 400;
  122. color: #999999;
  123. line-height: 33rpx;
  124. font-size: 24rpx;
  125. }
  126. .zdyRight{
  127. padding: 35rpx 30rpx;
  128. }
  129. .listBox{
  130. background: #ffffff;
  131. }
  132. .listLine{
  133. padding-left: 24rpx;
  134. padding-top: 30rpx;
  135. }
  136. .listLineImg{
  137. width: 630rpx;
  138. height: 252rpx;
  139. margin-right: 30rpx;
  140. border-radius: 10rpx;
  141. }
  142. .listLineImgBox{
  143. display: flex;
  144. }
  145. .listTitle{
  146. font-weight: 500;
  147. color: #333333;
  148. font-size: 30rpx;
  149. }
  150. .listSm{
  151. font-weight: 400;
  152. color: #999999;
  153. line-height: 33px;
  154. font-size: 24rpx;
  155. width: 702rpx;
  156. height: 33rpx;
  157. }
  158. </style>