退料增加备注
This commit is contained in:
parent
0fd90d5060
commit
dee6947955
|
|
@ -181,6 +181,12 @@
|
||||||
</div>
|
</div>
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
|
<uni-row style="display: flex; align-items: center">
|
||||||
|
<uni-col :span="4">备注:</uni-col>
|
||||||
|
<uni-col :span="20">
|
||||||
|
<uni-easyinput placeholder="请输入备注" v-model="remark" :clearable="false" />
|
||||||
|
</uni-col>
|
||||||
|
</uni-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<uni-row :gutter="24" style="display: flex; align-items: center; margin-bottom: 10px">
|
<uni-row :gutter="24" style="display: flex; align-items: center; margin-bottom: 10px">
|
||||||
|
|
@ -279,6 +285,7 @@ const pageSize = ref(10)
|
||||||
const allChecked = ref(false)
|
const allChecked = ref(false)
|
||||||
const keyWord = ref('')
|
const keyWord = ref('')
|
||||||
const total = ref(0)
|
const total = ref(0)
|
||||||
|
const remark = ref('')
|
||||||
|
|
||||||
const leftClick = () => {
|
const leftClick = () => {
|
||||||
// 返回
|
// 返回
|
||||||
|
|
@ -701,6 +708,7 @@ const submitCode = () => {
|
||||||
badNum: apDetection.value == '不合格' ? selectCodeList.value.length : 0,
|
badNum: apDetection.value == '不合格' ? selectCodeList.value.length : 0,
|
||||||
bmFileInfos: bmFileInfos.value,
|
bmFileInfos: bmFileInfos.value,
|
||||||
maVos: selectCodeList.value,
|
maVos: selectCodeList.value,
|
||||||
|
remark: remark.value,
|
||||||
}
|
}
|
||||||
let param = {
|
let param = {
|
||||||
backApplyInfo: taskInfo.value,
|
backApplyInfo: taskInfo.value,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue