分切暂存清除修改
This commit is contained in:
@@ -9,11 +9,22 @@
|
|||||||
<search-box v-model="val1" />
|
<search-box v-model="val1" />
|
||||||
</view>
|
</view>
|
||||||
</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>
|
</view>
|
||||||
<view class="zd-row submitbar">
|
<view class="zd-row submitbar">
|
||||||
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
|
<button class="zd-col-5 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
|
||||||
<button class="zd-col-15 btn-submit btn-success letter-30" :class="{'btn-info': !val1}" :disabled="disabled" @tap="_toCleanCutCacheInventory">确认</button>
|
<button class="zd-col-8 btn-submit btn-success letter-30" :class="{'btn-info': !val1}" :disabled="disabled" @tap="_toCleanCutCacheInventory">清除</button>
|
||||||
|
<button class="zd-col-8 btn-submit btn-success letter-30" :class="{'btn-info': !val1 || !val2}" :disabled="disabled1" @tap="_toSubvolumeBinding">绑定</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -21,7 +32,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import NavBar from '@/components/NavBar.vue'
|
import NavBar from '@/components/NavBar.vue'
|
||||||
import SearchBox from '@/components/SearchBox.vue'
|
import SearchBox from '@/components/SearchBox.vue'
|
||||||
import {toCleanCutCacheInventory} from '@/utils/getData3.js'
|
import {toCleanCutCacheInventory, toSubvolumeBinding} from '@/utils/getData3.js'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
NavBar,
|
NavBar,
|
||||||
@@ -30,7 +41,9 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
val1: '',
|
val1: '',
|
||||||
disabled: false
|
val2: '',
|
||||||
|
disabled: false,
|
||||||
|
disabled1: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -51,8 +64,28 @@
|
|||||||
this.disabled = false
|
this.disabled = false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
async _toSubvolumeBinding () {
|
||||||
|
this.disabled1 = true
|
||||||
|
if (!this.val1 || !this.val2) {
|
||||||
|
this.disabled1 = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
let res = await toSubvolumeBinding(this.val1, this.val2)
|
||||||
|
uni.showToast({
|
||||||
|
title: res.message,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
this.disabled1= false
|
||||||
|
} catch (e) {
|
||||||
|
this.disabled1 = false
|
||||||
|
}
|
||||||
|
},
|
||||||
clearUp () {
|
clearUp () {
|
||||||
this.val1 = ''
|
this.val1 = ''
|
||||||
|
this.val2 = ''
|
||||||
|
this.disabled = false
|
||||||
|
this.disabled1 = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -177,6 +177,10 @@ export const toCleanCutCacheInventory = (code) => request({
|
|||||||
url:'api/pda/slitter/toCleanCutCacheInventory',
|
url:'api/pda/slitter/toCleanCutCacheInventory',
|
||||||
data: {point_code: code}
|
data: {point_code: code}
|
||||||
})
|
})
|
||||||
|
export const toSubvolumeBinding = (code, name) => request({
|
||||||
|
url:'api/pda/slitter/toSubvolumeBinding',
|
||||||
|
data: {point_code: code, container_name: name}
|
||||||
|
})
|
||||||
/**
|
/**
|
||||||
* 木箱称重
|
* 木箱称重
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user