product.vue 542 B

12345678910111213141516171819202122
  1. <template>
  2. <view>
  3. <uni-list>
  4. <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>
  5. <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>
  6. </uni-list>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. };
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. </style>