Commit 52b626fa authored by 祁正's avatar 祁正

通知单管理-删除

parent 5e56632f
......@@ -426,6 +426,9 @@ const undoDialogVisible = ref(false)
const personTableList = ref([])
// 获取当前组件实例的代理对象,用于访问全局属性和方法
const { proxy } = getCurrentInstance();
const tObj = ref({})
const dialogTitle = ref('')
const dialogVisible = ref(false)
const Prompt = ref('')
const delId = ref('')
// 从全局字典中获取认证机构相关的数据
......@@ -436,7 +439,8 @@ const { notification_status } = proxy.useDict('notification_status')
const { vehicle_model_series_icar } = proxy.useDict('vehicle_model_series_icar')
// 从全局字典中获取除事业部 icar 外可选择的车型系列数据
const { vehicle_model_series } = proxy.useDict('vehicle_model_series')
// 存储新增通知单表单的引用,用于操作表单方法,如验证、重置等
const drawerQueryRef = ref()
// 存储通知单列表数据,使用响应式引用
const tableList = ref([])
// 存储车型代码列表数据,使用响应式引用
......@@ -474,8 +478,7 @@ const queryParams = ref({
// 通用的输入框查询值,默认空字符串
number: ""
});
// 存储新增通知单表单的引用,用于操作表单方法,如验证、重置等
const drawerQueryRef = ref()
function addNotifiction(){
drawer.value = true
getALLModelCodeList()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment