12345678910111213141516171819202122 |
- <template>
- <view>
- <uni-list>
- <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>
- <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>
- </uni-list>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- </style>
|