Message.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="Message">
  3. <view class="upload" style="height: 300rpx;overflow: hidden;">
  4. <u-upload ref="uUpload1" width="600rpx" height="300rpx" @on-change="progress1" :action="action" ></u-upload>
  5. </view>
  6. <input type="number" style="border-radius: 30rpx;border: 1px solid #ececec; text-align: center;font-size: 30rpx;color: #333" v-model="inputChanId" placeholder="请输入渠道号">
  7. <view class="btn" @click="button">
  8. 立即提交
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. action:'',
  18. url:'',
  19. inputChanId:'',//渠道输入框内容
  20. imageUrl:'', //分享图地址
  21. };
  22. },
  23. onLoad(option) {
  24. this.action=this.$httpUrl+'/api/common/upload'
  25. if (option.url) {
  26. this.url = option.url;
  27. }
  28. },
  29. onShareAppMessage(shareInfo){
  30. const { from, type } = shareInfo;
  31. return {
  32. imageUrl: this.imageUrl,
  33. // title: '',
  34. path: this.url+'?chanId='+this.inputChanId,
  35. }
  36. },
  37. methods: {
  38. progress1(res, index, lists, name){
  39. // console.log(JSON.parse(res.data))
  40. if(JSON.parse(res.data).code==0){
  41. this.$refs.uToast.show({
  42. title: JSON.parse(res.data).msg,
  43. type: 'error ',
  44. })
  45. this.$refs.uUpload1.clear()
  46. }
  47. },
  48. button(){
  49. let files1 = [];
  50. files1 = this.$refs.uUpload1.lists.filter(val => {
  51. return val.progress == 100;
  52. })
  53. this.imageUrl=files1[0].response.data.url
  54. console.log(this.imageUrl)
  55. console.log(this.url+'?chanId='+this.inputChanId)
  56. uni.showToast({
  57. title: '内容已修改,请点击添加到直播按钮',
  58. duration: 500,
  59. icon: 'none'
  60. });
  61. }
  62. },
  63. };
  64. </script>
  65. <style lang="scss">
  66. .Message {
  67. text-align: center;
  68. padding-top: 200rpx;
  69. width: 600rpx;
  70. margin: 0 auto;
  71. input{
  72. margin: 30rpx 0;
  73. }
  74. .btn{
  75. border-radius: 20rpx;
  76. box-sizing: border-box;
  77. height: 76rpx;
  78. line-height: 76rpx;
  79. text-align: center;
  80. font-size: 30rpx;
  81. background-color: #C53A47;
  82. color: #fff;
  83. }
  84. }
  85. </style>