index.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. // nova-werun/pages/send-circle/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. const uid = Parse.User.current()?.id
  5. let getSportData = require('../../../service/getSportData')
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. //屏幕高度
  12. statusBarHeight: 0, // 状态栏高度
  13. screenHeight: 0, // 屏幕高度
  14. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  15. bottomNavHeight: 0, // 底部导航栏高度
  16. contentHeight: 0, // 可用内容高度
  17. contentHeight2: 0,
  18. contentpadding: 0, //顶部padding高度
  19. //输入框
  20. inputValue: '', // 用于存储输入的内容
  21. textareaHeight: 100, // 初始高度,单位为 rpx
  22. // 图片
  23. fileList: [],
  24. fileLists: [],
  25. uptokenURL: '',
  26. domain: '',
  27. uploadURL: '',
  28. saveimage: false,
  29. checked: false,
  30. address: '',
  31. },
  32. /**
  33. * 生命周期函数--监听页面加载
  34. */
  35. onLoad: function (options) {
  36. const images = []
  37. images.push({
  38. url: options.image
  39. })
  40. console.log('options.image', options.image);
  41. if (options.image) {
  42. this.setData({
  43. fileList: images,
  44. saveimage: true,
  45. })
  46. }
  47. this.getUptoken()
  48. },
  49. /**保存步小圈 */
  50. async saveAIMoment() {
  51. wx.showLoading({
  52. title: '加载中',
  53. })
  54. let {
  55. fileList,
  56. inputValue,
  57. checked,
  58. address
  59. } = this.data
  60. console.log(fileList, inputValue, checked)
  61. if (fileList?.length <= 0 && !inputValue) {
  62. wx.showToast({
  63. title: '内容为空',
  64. icon: 'error'
  65. })
  66. wx.hideLoading()
  67. return
  68. }
  69. fileList=fileList?.map(item=>item.url)
  70. let Profilequery = new Parse.Query('Profile');
  71. Profilequery.equalTo('company', company);
  72. Profilequery.equalTo('isCheck', true);
  73. Profilequery.notEqualTo('isDeleted', true);
  74. Profilequery.equalTo('user', uid);
  75. let p = await Profilequery.first()
  76. let AIMoment = Parse.Object.extend("AIMoment")
  77. let mom = new AIMoment()
  78. mom.set("company", {
  79. __type: "Pointer",
  80. className: 'Company',
  81. objectId: company
  82. })
  83. mom.set("user", {
  84. __type: "Pointer",
  85. className: '_User',
  86. objectId: uid
  87. })
  88. if (p?.id) {
  89. mom.set("profile", {
  90. __type: "Pointer",
  91. className: 'Profile',
  92. objectId: p?.id
  93. })
  94. mom.set("isVisible", true)
  95. }
  96. mom.set("content", inputValue || '')
  97. mom.set("images", fileList || [])
  98. checked && mom.set("location", address)
  99. await mom.save()
  100. setTimeout(() => {
  101. wx.hideLoading()
  102. wx.showToast({
  103. title: `发表成功${p?.id?'':',等待审核'}`,
  104. icon:'none'
  105. })
  106. wx.redirectTo({
  107. url: '/nova-werun/pages/circle/my-circle/index'
  108. })
  109. }, 1000)
  110. },
  111. /**选择展示当前位置 */
  112. onChange(event) {
  113. this.Getlocation()
  114. this.setData({
  115. checked: event.detail,
  116. });
  117. },
  118. /**获取当前位置 */
  119. Getlocation() {
  120. wx.getLocation({
  121. type: 'wgs84',
  122. success: (res) => {
  123. const {
  124. latitude,
  125. longitude
  126. } = res;
  127. wx.request({
  128. url: 'https://api.map.baidu.com/reverse_geocoding/v3/?ak=sHZTomd7grslfP7sPKB8tRgT49FK9TEu&output=json&coordtype=gcj02&location=' + latitude + ',' + longitude,
  129. data: {},
  130. header: {
  131. 'Content-Type': 'application/json'
  132. },
  133. success: (ops) => {
  134. const address = ops.data.result.formatted_address;
  135. this.setData({
  136. address: address,
  137. });
  138. },
  139. fail: function (resq) {
  140. wx.showModal({
  141. title: '信息提示',
  142. content: '请求失败',
  143. showCancel: false,
  144. confirmColor: '#f37938'
  145. });
  146. },
  147. complete: function () {}
  148. })
  149. },
  150. fail: (err) => {
  151. console.error(err);
  152. wx.showToast({
  153. title: '获取位置失败',
  154. icon: 'none'
  155. });
  156. }
  157. });
  158. },
  159. /** 获取图片数组*/
  160. picture(event) {
  161. let FileList = event.detail
  162. this.setData({
  163. fileList: FileList,
  164. })
  165. },
  166. /**七牛云 */
  167. async getUptoken() {
  168. let res = await Parse.Cloud.run('qiniu_uptoken', {
  169. company: company
  170. })
  171. this.setData({
  172. uptokenURL: res.uptoken,
  173. domain: res.domain,
  174. uploadURL: res.zoneUrl
  175. })
  176. console.log(this.data.uptokenURL, this.data.domain, this.data.uploadURL);
  177. },
  178. /**
  179. * 生命周期函数--监听页面初次渲染完成
  180. */
  181. onReady: function () {
  182. },
  183. /**
  184. * 生命周期函数--监听页面显示
  185. */
  186. onShow: function () {
  187. },
  188. /**
  189. * 生命周期函数--监听页面隐藏
  190. */
  191. onHide: function () {
  192. },
  193. /**
  194. * 生命周期函数--监听页面卸载
  195. */
  196. onUnload: function () {
  197. },
  198. /**
  199. * 页面相关事件处理函数--监听用户下拉动作
  200. */
  201. onPullDownRefresh: function () {
  202. },
  203. /**
  204. * 页面上拉触底事件的处理函数
  205. */
  206. onReachBottom: function () {
  207. },
  208. /**
  209. * 用户点击右上角分享
  210. */
  211. onShareAppMessage: function () {
  212. },
  213. //输入框高度随字体增多而变大
  214. onInput: function (event) {
  215. const value = event.detail.value; // 获取当前输入的值
  216. this.setData({
  217. inputValue: value,
  218. });
  219. console.log(this.data.inputValue);
  220. },
  221. async goback() {
  222. if (!this.data.saveimage) {
  223. let pages = getCurrentPages(); //页面对象
  224. console.log(pages);
  225. let prevpage = pages[pages.length - 2]; //上一个页面对象
  226. console.log(prevpage);
  227. await prevpage.updateCom()
  228. }
  229. wx.navigateBack({
  230. delta: 1
  231. });
  232. },
  233. })