搭建项目
This commit is contained in:
91
pages/SecondPhase/production/SurfaceProcess.vue
Normal file
91
pages/SecondPhase/production/SurfaceProcess.vue
Normal file
@@ -0,0 +1,91 @@
|
||||
<template>
|
||||
<view class="zd_container">
|
||||
<!-- <nav-bar title="表处工序"></nav-bar> -->
|
||||
<nav-bar :title="title"></nav-bar>
|
||||
<view class="zd_content">
|
||||
<view class="zd_wrapper">
|
||||
<view class="filter_item">
|
||||
<view class="filter_label_wraper">
|
||||
<span class="filter_label">点位</span>
|
||||
</view>
|
||||
<view class="filter_input_wraper">
|
||||
<search-box
|
||||
v-model="val1"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item">
|
||||
<view class="filter_label_wraper">
|
||||
<span class="filter_label">母卷</span>
|
||||
</view>
|
||||
<view class="filter_input_wraper">
|
||||
<search-box
|
||||
v-model="val2"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row submitbar">
|
||||
<button class="zd-col-5 btn-submit btn-default letter-30" @tap="cleanUp">清空</button>
|
||||
<button class="zd-col-6 btn-submit btn-success letter-30" :disabled="disabled" @tap="_surfaceOperate('1')">上料</button>
|
||||
<button class="zd-col-6 btn-submit btn-success letter-30" :disabled="disabled" @tap="_surfaceOperate('2')">退料</button>
|
||||
<button class="zd-col-6 btn-submit btn-success" :disabled="disabled" @tap="_surfaceConfirm">允许进入</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NavBar from '@/components/NavBar.vue'
|
||||
import SearchBox from '@/components/SearchBox.vue'
|
||||
import {surfaceOperate, surfaceConfirm} from '@/utils/getData3.js'
|
||||
export default {
|
||||
components: {
|
||||
NavBar,
|
||||
SearchBox
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
val1: '',
|
||||
val2: '',
|
||||
disabled: false
|
||||
};
|
||||
},
|
||||
onLoad (options) {
|
||||
this.title = options.title
|
||||
},
|
||||
methods: {
|
||||
cleanUp () {
|
||||
this.val1 = ''
|
||||
this.val2 = ''
|
||||
},
|
||||
async _surfaceOperate (type) {
|
||||
this.disabled = true
|
||||
try {
|
||||
let res = await surfaceOperate(this.val1, this.val2, type)
|
||||
this.disabled = false
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
})
|
||||
} catch (e) {
|
||||
this.disabled = false
|
||||
}
|
||||
},
|
||||
async _surfaceConfirm () {
|
||||
this.disabled = true
|
||||
try {
|
||||
let res = await surfaceConfirm(this.val1)
|
||||
this.disabled = false
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
})
|
||||
} catch (e) {
|
||||
this.disabled = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user