1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view>
- <navigation-bar title="商家服务" background-color="#fff" front-color="#000000" />
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [{
- name: 'photo',
- title: '图片'
- },
- {
- name: 'lock',
- title: '锁头'
- },
- {
- name: 'star',
- title: '星星'
- },
- {
- name: 'hourglass',
- title: '沙漏'
- },
- {
- name: 'home',
- title: '首页'
- },
- {
- name: 'star',
- title: '音量'
- },
- ],
- }
- },
- methods: {
- click(name) {
- this.$refs.uToast.success(`点击了第${name}个`)
- }
- }
- }
- </script>
- <style lang="scss">
- .grid-text {
- font-size: 14px;
- color: #909399;
- padding: 10rpx 0 20rpx 0rpx;
- /* #ifndef APP-PLUS */
- box-sizing: border-box;
- /* #endif */
- }
- </style>
|