@@ -128,7 +128,7 @@ function onSave() {
return;
}
if ((report.value.reportName || '').trim() == '') {
- message.warning("请填写报告名字!");
+ message.warning("请填写报告名称!");
reportNameEl.value?.focus();
@@ -23,13 +23,13 @@ defineExpose({
<template>
<a-row type="flex" style="align-items: center">
<a-col style="width: 120px; text-align: right;">
- 报告名字:
+ 报告名称:
</a-col>
<a-col flex="1">
<a-input
:value="modelValue"
@input="emits('update:modelValue', $event.target.value)"
- placeholder="请输入名称"
+ placeholder="请输入报告名称"
ref="input"
/>