| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="mainBox">
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="报工"
- @clickLeft="back"
- >
- </uni-nav-bar>
- </view>
- </template>
- <script>
- import { get, getJ, post, postJ } from '@/utils/api.js'
- export default {
- components: {
-
- },
- data () {
- return {
- }
- },
- onShow () {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|