outstore.nvue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view>
  3. <view style="height: 5px;"></view>
  4. <view class="uni-navigate-item-my" @click="OutstoreOperate">
  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" @click="AssembleOperate">
  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="OutstoreRecordQuery">
  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" @click="OutassembleRecordQuery">
  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. OutstoreOperate() {
  44. uni.navigateTo({
  45. url:"/pages/Outstore/outstore01",
  46. })
  47. },
  48. AssembleOperate() {
  49. uni.navigateTo({
  50. url:"/pages/Outstore/outassemble01",
  51. })
  52. },
  53. OutstoreRecordQuery() {
  54. uni.navigateTo({
  55. url:"/pages/Outstore/outstoreRecordQuery",
  56. })
  57. },
  58. OutassembleRecordQuery() {
  59. uni.navigateTo({
  60. url:"/pages/Outstore/outassembleRecordQuery",
  61. })
  62. }
  63. }
  64. }
  65. </script>
  66. <style lang="scss">
  67. @import '../../../common/uni-nvue.css';
  68. </style>