docs(Form): fix area values (#9972)

This commit is contained in:
neverland 2021-11-30 20:52:55 +08:00 committed by GitHub
parent 419ca5a120
commit 90bb868026
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -431,9 +431,9 @@ export default {
setup() {
const result = ref('');
const showArea = ref(false);
const onConfirm = (value) => {
const onConfirm = (areaValues) => {
showArea.value = false;
result.value = values
result.value = areaValues
.filter((item) => !!item)
.map((item) => item.name)
.join('/');

View File

@ -461,9 +461,9 @@ export default {
setup() {
const result = ref('');
const showArea = ref(false);
const onConfirm = (value) => {
const onConfirm = (areaValues) => {
showArea.value = false;
result.value = values
result.value = areaValues
.filter((item) => !!item)
.map((item) => item.name)
.join('/');

View File

@ -23,8 +23,8 @@ const t = useTranslate({
const areaCode = ref('');
const showArea = ref(false);
const onConfirm = (values: AreaColumnOption[]) => {
areaCode.value = values
const onConfirm = (areaValues: AreaColumnOption[]) => {
areaCode.value = areaValues
.filter((item) => !!item)
.map((item) => item.name)
.join('/');