instore.nvue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. // onBackPress() {
  40. // return true
  41. // },
  42. methods: {
  43. InstoreOperate() {
  44. uni.navigateTo({
  45. url:"/pages/Instore/instroe01",
  46. })
  47. },
  48. InspectRecordQuery() {
  49. uni.navigateTo({
  50. url:"/pages/Instore/instoreRecordQuery",
  51. })
  52. }
  53. }
  54. }
  55. </script>
  56. <style lang="scss">
  57. @import '../../../common/uni-nvue.css';
  58. </style>