12345678910111213141516171819202122 |
- <template>
- <view>
- <uni-list>
- <uni-list-item :show-extra-icon="true" :extra-icon="{color: '#00aaff',size: '24',type: 'folder-add-filled'}" title="录入商品信息" link to="/pages/product/add"></uni-list-item>
- <uni-list-item :show-extra-icon="true" :extra-icon="{color: '#ff0000',size: '24',type: 'trash-filled'}" title="删除商品信息" link to="/pages/product/del"></uni-list-item>
- </uni-list>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- </style>
|