lifePhoto.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view>
  3. <u-upload
  4. :fileList="fileList"
  5. @afterRead="afterRead"
  6. @delete="deletePic"
  7. name="3"
  8. :multiple='false'
  9. :maxCount="maxCount"
  10. :previewFullImage="true"
  11. width="110"
  12. height="110"
  13. :deletable="id==''"
  14. ></u-upload>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. onLoad(option) {
  20. if(option.id){
  21. this.id=option.id
  22. }
  23. this.getpersonPhoto()
  24. },
  25. data() {
  26. return {
  27. fileList: [],
  28. id:'',
  29. maxCount:10
  30. }
  31. },
  32. methods: {
  33. getpersonPhoto(){
  34. uni.$u.http.post('/api/user/life_album',{id:this.id?this.id:uni.getStorageSync('userId')}).then(res => {
  35. if(res.code==1){
  36. this.fileList=res.data
  37. if(this.id){
  38. this.maxCount=res.data.length
  39. }
  40. }
  41. })
  42. },
  43. // 删除图片
  44. deletePic(event) {
  45. console.log(event)
  46. var that=this
  47. uni.showModal({
  48. title: '',
  49. content: '是否删除这张图片',
  50. confirmColor:'#FF3D3D',
  51. confirmText:'删除',
  52. success: function (res) {
  53. if (res.confirm) {
  54. uni.$u.http.post('/api/user/del_album',{id:event.file.id}).then(res => {
  55. if(res.code==1){
  56. that.getpersonPhoto()
  57. }
  58. })
  59. } else if (res.cancel) {
  60. console.log('用户点击取消');
  61. }
  62. }
  63. });
  64. },
  65. // 新增图片
  66. async afterRead(event) {
  67. // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式
  68. let lists = [].concat(event.file)
  69. let fileListLen = this.fileList.length
  70. lists.map((item) => {
  71. this.fileList.push({
  72. ...item,
  73. status: 'uploading',
  74. message: '上传中'
  75. })
  76. })
  77. for (let i = 0; i < lists.length; i++) {
  78. const result = await this.uploadFilePromise(lists[i].url)
  79. uni.$u.http.post('/api/user/upload_album',{image:result,type:2}).then(res => {
  80. if(res.code==1){
  81. this.getpersonPhoto()
  82. }
  83. })
  84. // let item = this.fileList[fileListLen]
  85. // this.fileList.splice(fileListLen, 1, Object.assign(item, {
  86. // status: 'success',
  87. // message: '',
  88. // url: result
  89. // }))
  90. // fileListLen++
  91. }
  92. },
  93. uploadFilePromise(url) {
  94. return new Promise((resolve, reject) => {
  95. let a = uni.uploadFile({
  96. url: this.$url+'/api/Publics/uploadLocality', // 仅为示例,非真实的接口地址
  97. filePath: url,
  98. name: 'file',
  99. formData: {
  100. user: 'test'
  101. },
  102. success: (res) => {
  103. setTimeout(() => {
  104. resolve(JSON.parse(res.data).data.url)
  105. }, 1000)
  106. }
  107. });
  108. })
  109. },
  110. }
  111. }
  112. </script>
  113. <style>
  114. page{
  115. padding: 30rpx;
  116. }
  117. </style>