todos-preview.js 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. var businessT = require('../../../../../tool/business-tool.js')
  2. var sysT = require('../../../../../tool/sys-tool.js')
  3. var url = require('../../../../../constant/url.js')
  4. import Net from '../../../../../tool/net.js'
  5. var net = new Net()
  6. var app = getApp()
  7. Page({
  8. data: {
  9. img: [],
  10. type: 'display',
  11. upload: {
  12. maxC: 0,
  13. addC: 0
  14. },
  15. status: 0,//0正常展示1删除
  16. },
  17. goBack(){
  18. swan.navigateBack()
  19. },
  20. goPreview(e){
  21. var url=this.data.img[e.currentTarget.id]
  22. swan.previewImage({
  23. // 当前显示图片的链接,不填则默认为 urls 的第一张。
  24. current: url,
  25. // 需要预览的图片链接列表
  26. urls: this.data.img,
  27. });
  28. },
  29. onLoad: function (options) {
  30. // 监听页面加载的生命周期函数
  31. this.data.type = options.type
  32. swan.setNavigationBarTitle({
  33. title: this.data.type == 'upload' ? '上传资料' : '详情',
  34. })
  35. var pages = getCurrentPages()
  36. this.data.img = pages[pages.length - 2].data.img
  37. businessT.debugLog(this.data.img)
  38. if (this.data.type == 'upload') {
  39. this.data.upload.maxC = options.max
  40. this.data.upload.addC = this.data.upload.maxC - this.data.img.length
  41. }
  42. this.setData({
  43. type: this.data.type,
  44. img: this.data.img,
  45. upload: this.data.upload
  46. })
  47. },
  48. onReady: function () {
  49. // 监听页面初次渲染完成的生命周期函数
  50. },
  51. onShow: function () {
  52. // 监听页面显示的生命周期函数
  53. swan.setPageInfo && swan.setPageInfo({
  54. title: '【我的社保】官方APP-社保挂靠公积金代理全国自助缴纳查询社保公积金_主页',
  55. keywords: '我的社保,我的社保网,我的社保APP,社会保障,社保,社保代缴,公积金代缴,社会保险,五险一金,医保,医疗保险,公积金,养老,生育,工伤,失业,住房公积金,社保代理,代缴社保,公积金代理,查悦社保,大社保,亲亲小保,社保掌上通,招聘求职,创业,买房,贷款,计算器,人社局,摇号',
  56. description: '我的社保APP是为个人、企业提供社保代缴代扣、公积金代扣代缴、社保查询、公积金查询服务的名牌产品。解决个体工商户、自由职业者、待业人员、全职妈妈、创业者等的个人社保公积金断缴难题,同时解决贷款, 买房, 买车, 养老, 医疗, 生育, 医疗报销等难题。同时为企业提供全国专业社保代理和公积金代理。',
  57. articleTitle: '【我的社保】官方APP-社保挂靠公积金代理全国自助缴纳查询社保公积金_主页',
  58. release_date: '2019-02-23 20:00:00',
  59. success: function () {
  60. console.log('页面基础信息设置完成');
  61. },
  62. fail: function (res) {
  63. console.log('设置失败');
  64. },
  65. })
  66. },
  67. onHide: function () {
  68. // 监听页面隐藏的生命周期函数
  69. },
  70. onUnload: function () {
  71. // 监听页面卸载的生命周期函数
  72. },
  73. onPullDownRefresh: function () {
  74. // 监听用户下拉动作
  75. },
  76. onReachBottom: function () {
  77. // 页面上拉触底事件的处理函数
  78. },
  79. onShareAppMessage: function () {
  80. // 用户点击右上角转发
  81. }
  82. });