choice.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <view class="content">
  3. <view class="nav">
  4. <view class="uni-page-head-btnBox">
  5. <view class="uni-page-head-btn" @click="goback"><i class="uni-btn-icon" ></i></view>
  6. </view>
  7. <view class="Navtitle">选择素材</view>
  8. <view class="uni-page-head-btnBox"></view>
  9. </view>
  10. <view class="zhidingyiBox">
  11. <view class="zhidingyi" @click="upimg">
  12. <view class="zdyLeft">
  13. <view class="zdyTitle">自定义图片</view>
  14. <view class="zdyms">建议尺寸:宽度750*390px</view>
  15. <view class="zdyms" style="padding-top: 24rpx;">请先上传自定义活动图片 后编辑活动内容</view>
  16. </view>
  17. <view class="zdyRight">
  18. <image src="../../static/img/bg_sucai@2x.png" mode="" class="zdyRightImg"></image>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="listBox">
  23. <view class="listLine" v-for="(item,i) in list">
  24. <view class="listTitle">{{item.Name}}</view>
  25. <view class="listSm">{{item.collectingComment}}</view>
  26. <scroll-view scroll-x="true" class="scroll-X" >
  27. <view class="listLineImgBox" >
  28. <view class="" v-for="(img,index) in item.imgList" @click="goAdd(img)">
  29. <image class="listLineImg" :src="img.Img" mode=""></image>
  30. </view>
  31. </view>
  32. </scroll-view>
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. list:'',
  42. imgurl:'',
  43. type:'',
  44. }
  45. },
  46. onLoad(opt) {
  47. this.getSetTheGuestList();
  48. this.type=opt.type;
  49. //?token=1BAD122A96BA41E49200322381DC5D34&uid=DC0B84EA-A67B-4A4B-8EAE-F55A13CF8217
  50. },
  51. // onBackPress(e){
  52. // console.log(e)
  53. // console.log("返回")
  54. // return true;
  55. // },
  56. methods: {
  57. goback(){
  58. if(this.type==2){
  59. uni.navigateBack()
  60. }else{
  61. var standalone = window.navigator.standalone
  62. var userAgent = window.navigator.userAgent.toLowerCase()
  63. var safari = /safari/.test(userAgent)
  64. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  65. var android = /android/.test(userAgent)
  66. if (ios) {
  67. if ( true) {//!standalone&& !safari
  68. window.webkit.messageHandlers.goMyNav.postMessage(null)
  69. }
  70. } else if (android) {
  71. window.android.postMessage()
  72. }
  73. }
  74. },
  75. goAdd(item){
  76. uni.removeStorageSync('ckmusic');
  77. uni.navigateTo({
  78. url:'addActivity?img='+item.Img
  79. })
  80. },
  81. goAddzdy(img){
  82. uni.navigateTo({
  83. url:'addActivity?img='+img
  84. })
  85. },
  86. getSetTheGuestList(){
  87. uni.showLoading({
  88. title: '加载中'
  89. })
  90. this.$http('openH5SetTheGuest/getSetTheGuestList', {
  91. },'GET').then(res => {
  92. uni.hideLoading();
  93. this.list=res.data
  94. })
  95. },
  96. upimg(){
  97. var that = this;
  98. uni.chooseImage({
  99. sourceType: ['album','camera'],
  100. count:1,
  101. success: (chooseImageRes) => {
  102. const tempFilePaths = chooseImageRes.tempFilePaths;
  103. that.file=tempFilePaths[0]
  104. uni.uploadFile({
  105. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  106. filePath: tempFilePaths[0],
  107. name: 'file',
  108. formData: {
  109. 'user': 'test'
  110. },
  111. success: (uploadFileRes) => {
  112. console.log(JSON.parse(uploadFileRes.data).data );
  113. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  114. that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  115. that.goAddzdy(that.imgurl)
  116. }
  117. });
  118. }
  119. });
  120. }
  121. }
  122. }
  123. </script>
  124. <style scoped>
  125. .nav{
  126. height: 44px;
  127. background: #ffffff;
  128. display: flex;
  129. justify-content: space-between;
  130. line-height: 44px;
  131. font-size: 16px;
  132. font-weight: 700;
  133. }
  134. .uni-page-head-btnBox{
  135. width: 40px;
  136. padding-top: 5px;
  137. }
  138. .uni-btn-icon{
  139. color: #000000;
  140. font-size: 27px;
  141. }
  142. .content{
  143. min-height: 100vh;
  144. background:#F4F5F7 ;
  145. }
  146. .zhidingyiBox{
  147. padding: 20rpx 24rpx;
  148. }
  149. .zhidingyi{
  150. background: #ffffff;
  151. border-radius: 10rpx;
  152. display: flex;
  153. justify-content: space-between;
  154. }
  155. .zdyRightImg{
  156. width: 217rpx;
  157. height: 210rpx;
  158. }
  159. .zdyLeft{
  160. padding-top: 50rpx;
  161. padding-left: 20rpx;
  162. width: 300rpx;
  163. } .zdyTitle{
  164. color: #333333;
  165. line-height: 42rpx;
  166. font-size: 30rpx;
  167. font-weight: 500;
  168. padding-bottom: 16rpx;
  169. }
  170. .zdyms{
  171. font-weight: 400;
  172. color: #999999;
  173. line-height: 33rpx;
  174. font-size: 24rpx;
  175. }
  176. .zdyRight{
  177. padding: 35rpx 30rpx;
  178. }
  179. .listBox{
  180. background: #ffffff;
  181. }
  182. .listLine{
  183. padding-left: 24rpx;
  184. padding-top: 30rpx;
  185. }
  186. .listLineImg{
  187. width: 630rpx;
  188. height: 252rpx;
  189. margin-right: 30rpx;
  190. border-radius: 10rpx;
  191. }
  192. .listLineImgBox{
  193. display: flex;
  194. }
  195. .listTitle{
  196. font-weight: 500;
  197. color: #333333;
  198. font-size: 30rpx;
  199. }
  200. .listSm{
  201. font-weight: 400;
  202. color: #999999;
  203. line-height: 33px;
  204. font-size: 24rpx;
  205. width: 702rpx;
  206. height: 33rpx;
  207. }
  208. </style>