曹睿
6 天以前 3ef6a3a2bac778e2a224d6e437305b9f71d3799c
src/hooks/useModal.js
@@ -8,11 +8,10 @@
  const openModal = (e) => {
    id.value = e;
    modalOptions.value = {
      title: e ? "编辑设备台账" : "新增设备台账",
      title: e ? `修改${options.title}` : `新增${options.title}`,
      content: "确定执行此操作吗?",
      confirmText: "确定",
      cancelText: "取消",
      ...options,
    };
    visible.value = true;
  };