enterprise.vue 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view>
  3. <navigation-bar title="商家服务" background-color="#fff" front-color="#000000" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. list: [{
  11. name: 'photo',
  12. title: '图片'
  13. },
  14. {
  15. name: 'lock',
  16. title: '锁头'
  17. },
  18. {
  19. name: 'star',
  20. title: '星星'
  21. },
  22. {
  23. name: 'hourglass',
  24. title: '沙漏'
  25. },
  26. {
  27. name: 'home',
  28. title: '首页'
  29. },
  30. {
  31. name: 'star',
  32. title: '音量'
  33. },
  34. ],
  35. }
  36. },
  37. methods: {
  38. click(name) {
  39. this.$refs.uToast.success(`点击了第${name}个`)
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss">
  45. .grid-text {
  46. font-size: 14px;
  47. color: #909399;
  48. padding: 10rpx 0 20rpx 0rpx;
  49. /* #ifndef APP-PLUS */
  50. box-sizing: border-box;
  51. /* #endif */
  52. }
  53. </style>