wujianwei
2026-01-12 011f2ef91351719dca12d36abef4d498b2eb86b8
ui/admin-ui3/src/views/cwgl/smartLockerApplication/index.vue
@@ -361,7 +361,7 @@
// 定义实际要执行的函数
const handleItemNameChange = (val: any) => {
  // 判断 itemType 是否为 '0',并且 itemName 有值
  if (form.value.itemType === '0' && val) {
  if (form.value.itemType == 0 && val) {
    // 在这里添加你的请求接口逻辑
    smartLockerApplicationQuery({ licensePlateNumber: val }).then(response => {
      if (response.code == 200) {
@@ -377,13 +377,13 @@
const handleInvalid = (row: any) => {
  proxy.$modal.confirm(`是否作废该申领人编码 :${row.applicantCode}?`).then(function () {
    return smartLockerApplicationInvalid(row.id);
  }).then((res) => {
  }).then((res:any) => {
    onLoad(page.value);
    proxy.$modal.msgSuccess(res.msg);
  })
}
const handleEditBtn = (row, index) => {
const handleEditBtn = (row:any, index:any) => {
  crudRef.value.rowEdit(row, index)
  // option.value.editBtn = true;
}