index.vue 529 B

12345678910111213141516171819202122
  1. <template>
  2. <view>
  3. <uni-list>
  4. <uni-list-item :show-extra-icon="true" :extra-icon="{color: '#55aa00',size: '24',type: 'eye-filled'}" title="盘点记录" link to="/pages/stockPan/list"></uni-list-item>
  5. <uni-list-item :show-extra-icon="true" :extra-icon="{color: '#00aaff',size: '24',type: 'download-filled'}" title="入库记录" link to="/pages/stockIn/list"></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>