publish.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <!-- 发布邻里圈 -->
  2. <template>
  3. <view class="">
  4. <view class="content">
  5. <view class="text">
  6. <textarea style="width: 100%;" :auto-height="true" placeholder="这一刻的想法" v-model="textarea"></textarea>
  7. </view>
  8. <view class="imgBox">
  9. <view class="upImg">
  10. <image :src="item" v-for="(item,index) in imgData" :key="index" style="width:208rpx;height: 208rpx;margin-right: 10rpx;margin-bottom: 10rpx;" v-show="imgData.length>0"></image>
  11. <image src="../../static/circle_image@2x.png" style="width:208rpx;height: 208rpx;margin-bottom: 10rpx;" @tap="chooseImg"></image>
  12. </view>
  13. <!-- <view style="width: 208rpx;height: 208rpx;" @tap="chooseImg">
  14. <image src="../../static/circle_image@2x.png" style="width: 100%;height: 100%;"></image>
  15. </view> -->
  16. </view>
  17. </view>
  18. <view class="btn" :class="{active:textarea}" @tap="push">发表</view>
  19. </view>
  20. </template>
  21. <script>
  22. export default{
  23. data(){
  24. return{
  25. imgData:[],//图片数据
  26. textarea:'',//文本数据
  27. }
  28. },
  29. methods:{
  30. // 发表
  31. push(){
  32. if(this.name){
  33. }else{
  34. return
  35. }
  36. },
  37. // 添加照片
  38. chooseImg(){
  39. // 判断当前选择图片是否大于九张
  40. if(this.imgData.length>9){
  41. uni.showToast({
  42. "icon":'none',
  43. title:'最多只能上传九张图片'
  44. })
  45. return
  46. }
  47. uni.chooseImage({
  48. count: 9, //默认9
  49. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  50. sourceType: ['album'], //从相册选择
  51. success: (res)=>{
  52. res.tempFiles.forEach((item)=>{
  53. this.imgData.push(item.path)
  54. })
  55. }
  56. });
  57. }
  58. }
  59. }
  60. </script>
  61. <style>
  62. .upImg{
  63. display: flex;
  64. flex-wrap: wrap;
  65. }
  66. .imgBox{
  67. width: 100%;
  68. margin-top: 30rpx;
  69. /* display: flex;
  70. flex-wrap: wrap; */
  71. }
  72. .content{
  73. width: 702rpx;
  74. margin: 0 auto;
  75. margin-top:34rpx ;
  76. }
  77. .text{
  78. width: 100%;
  79. font-size:32rpx;
  80. font-family:PingFang SC;
  81. font-weight:400;
  82. color:rgba(51,51,51,1);
  83. }
  84. .btn{
  85. width:702rpx;
  86. height:90rpx;
  87. background:rgba(247,247,247,1);
  88. opacity:1;
  89. border-radius:18rpx;
  90. font-size:32rpx;
  91. font-family:PingFang SC;
  92. font-weight:bold;
  93. color:rgba(204,204,204,1);
  94. text-align: center;
  95. line-height: 90rpx;
  96. position:fixed;
  97. bottom: 56rpx;
  98. left: 26rpx;
  99. }
  100. .active{
  101. color:rgba(255,255,255,1);
  102. background:rgba(41,138,253,1);
  103. }
  104. </style>