| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="content-box">
- <uni-nav-bar fixed="true" statusBar="true" left-icon="back" :title="title" background-color="#F7F9FA"
- color="#000" @clickLeft="back"></uni-nav-bar>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: '',
- dataObj: {
-
- },
- }
- },
- onLoad(options) {
- this.title = options.taskName ? options.taskName + '-投料' : '投料'
- },
- methods: {
- // 相机扫码
- HandlScanCode() {
- let _this = this
- uni.scanCode({
- success: function(res) {
- console.log(res)
- }
- })
- //_this.Scancodedate('res')
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .content-box {
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- }
- </style>
|