instore.nvue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view>
  3. <view style="height: 5px;"></view>
  4. <view class="uni-navigate-item-my" @click="InstoreOperate">
  5. <text class="uni-navigate-text-my">入库操作</text>
  6. <text class="uni-navigate-icon-my uni-icon">&#xe470;</text>
  7. </view>
  8. <view style="height: 5px;"></view>
  9. <view class="uni-navigate-item-my">
  10. <text class="uni-navigate-text-my">退料操作</text>
  11. <text class="uni-navigate-icon-my uni-icon">&#xe470;</text>
  12. </view>
  13. <view style="height: 5px;"></view>
  14. <view class="uni-navigate-item-my" @click="InspectRecordQuery">
  15. <text class="uni-navigate-text-my">入库记录查询</text>
  16. <text class="uni-navigate-icon-my uni-icon">&#xe470;</text>
  17. </view>
  18. <view style="height: 5px;"></view>
  19. <view class="uni-navigate-item-my">
  20. <text class="uni-navigate-text-my">退料记录查询</text>
  21. <text class="uni-navigate-icon-my uni-icon">&#xe470;</text>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. // TODO 修复Android v3 加载过慢问题
  27. // #ifdef APP-PLUS
  28. var domModule = weex.requireModule('dom');
  29. domModule.addRule('fontFace', {
  30. 'fontFamily': "uniicons",
  31. 'src': "url('/static/uni.ttf')"
  32. });
  33. // #endif
  34. export default {
  35. data() {
  36. return {
  37. }
  38. },
  39. methods: {
  40. InstoreOperate() {
  41. uni.navigateTo({
  42. url:"/pages/Instore/instroe01",
  43. })
  44. },
  45. InspectRecordQuery() {
  46. uni.navigateTo({
  47. url:"/pages/Instore/instoreRecordQuery",
  48. })
  49. }
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. @import '../../../common/uni-nvue.css';
  55. </style>