退料增加备注
This commit is contained in:
parent
0fd90d5060
commit
dee6947955
|
|
@ -181,6 +181,12 @@
|
|||
</div>
|
||||
</uni-col>
|
||||
</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>
|
||||
|
||||
<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 keyWord = ref('')
|
||||
const total = ref(0)
|
||||
const remark = ref('')
|
||||
|
||||
const leftClick = () => {
|
||||
// 返回
|
||||
|
|
@ -701,6 +708,7 @@ const submitCode = () => {
|
|||
badNum: apDetection.value == '不合格' ? selectCodeList.value.length : 0,
|
||||
bmFileInfos: bmFileInfos.value,
|
||||
maVos: selectCodeList.value,
|
||||
remark: remark.value,
|
||||
}
|
||||
let param = {
|
||||
backApplyInfo: taskInfo.value,
|
||||
|
|
|
|||
Loading…
Reference in New Issue