index.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view>
  3. <!--template/Timely_delivery_open/index.wxml-->
  4. <!-- 及时达 -->
  5. <template name="Timely_delivery_open">
  6. <view class="mt20 bgfff r10 dflex idxnav" v-if="Timelyimg&&Is_Store_Price_Stock==1">
  7. <navigator url="/pages/timelyDelivery/index" open-type="navigate" hover-class="none" class="zbgm">
  8. <image :src="Timelyimg + '?x-oss-process=style/w750-auto'"></image>
  9. </navigator>
  10. </view>
  11. </template>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {};
  18. },
  19. components: {},
  20. props: {},
  21. /**
  22. * 生命周期函数--监听页面加载
  23. */
  24. onLoad: function (options) {},
  25. /**
  26. * 生命周期函数--监听页面初次渲染完成
  27. */
  28. onReady: function () {},
  29. /**
  30. * 生命周期函数--监听页面显示
  31. */
  32. onShow: function () {},
  33. /**
  34. * 生命周期函数--监听页面隐藏
  35. */
  36. onHide: function () {},
  37. /**
  38. * 生命周期函数--监听页面卸载
  39. */
  40. onUnload: function () {},
  41. /**
  42. * 页面相关事件处理函数--监听用户下拉动作
  43. */
  44. onPullDownRefresh: function () {},
  45. /**
  46. * 页面上拉触底事件的处理函数
  47. */
  48. onReachBottom: function () {},
  49. methods: {}
  50. };
  51. </script>
  52. <style>
  53. @import "./index.css";
  54. </style>