修改bug

This commit is contained in:
yangjun 2026-03-03 14:47:08 +08:00
parent be2a65bc99
commit 0fb9e0bd06
1 changed files with 3 additions and 2 deletions

View File

@ -5,12 +5,12 @@
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
:wrapper-col="wrapperCol">
<a-row :gutter="24">
<a-col :lg="6">
<!-- <a-col :lg="6">
<a-form-item name="suppliersName">
<template #label><span title="供应商名称">供应商名称</span></template>
<j-input placeholder="请输入供应商名称" v-model:value="queryParam.suppliersName" allow-clear></j-input>
</a-form-item>
</a-col>
</a-col> -->
<a-col :lg="6">
<a-form-item name="personInCharge">
<template #label><span title="负责人">负责人</span></template>
@ -188,6 +188,7 @@ function searchReset() {
function init(record) {
console.log("🚀 ~ init ~ record:", record)
suppliersId.value = record.suppliersId;
queryParam.suppliersName = record.suppliersName;
searchQuery();
}