123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view>
- <view style="height: 5px;"></view>
- <view class="uni-navigate-item-my" @click="InstoreOperate">
- <text class="uni-navigate-text-my">入库操作</text>
- <text class="uni-navigate-icon-my uni-icon"></text>
- </view>
- <view style="height: 5px;"></view>
- <view class="uni-navigate-item-my">
- <text class="uni-navigate-text-my">退料操作</text>
- <text class="uni-navigate-icon-my uni-icon"></text>
- </view>
- <view style="height: 5px;"></view>
- <view class="uni-navigate-item-my" @click="InspectRecordQuery">
- <text class="uni-navigate-text-my">入库记录查询</text>
- <text class="uni-navigate-icon-my uni-icon"></text>
- </view>
- <view style="height: 5px;"></view>
- <view class="uni-navigate-item-my">
- <text class="uni-navigate-text-my">退料记录查询</text>
- <text class="uni-navigate-icon-my uni-icon"></text>
- </view>
- </view>
- </template>
- <script>
- // TODO 修复Android v3 加载过慢问题
- // #ifdef APP-PLUS
- var domModule = weex.requireModule('dom');
- domModule.addRule('fontFace', {
- 'fontFamily': "uniicons",
- 'src': "url('/static/uni.ttf')"
- });
- // #endif
- export default {
- data() {
- return {
-
- }
- },
- // onBackPress() {
- // return true
- // },
- methods: {
- InstoreOperate() {
- uni.navigateTo({
- url:"/pages/Instore/instroe01",
- })
- },
- InspectRecordQuery() {
- uni.navigateTo({
- url:"/pages/Instore/instoreRecordQuery",
- })
- }
- }
- }
- </script>
- <style lang="scss">
- @import '../../../common/uni-nvue.css';
- </style>
|