Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
quasar-web-base
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nguyễn Hải Sơn
quasar-web-base
Commits
46512ec8
Commit
46512ec8
authored
Jul 19, 2021
by
Tình Trương
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
89dbfc3b
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
148 additions
and
65 deletions
+148
-65
enums.ts
src/assets/enums.ts
+2
-2
type.ts
src/assets/type.ts
+1
-0
AddHotProductDialog.ts
...s/artist-information/AddHotProduct/AddHotProductDialog.ts
+13
-0
index.vue
src/components/artist-information/AddHotProduct/index.vue
+15
-2
index.vue
src/components/artist-information/UpdateHotProduct/index.vue
+16
-3
updateHotProduc.ts
...ts/artist-information/UpdateHotProduct/updateHotProduc.ts
+13
-0
index.vue
src/components/artist-information/VAB-account/index.vue
+1
-1
PersonalInformation.ts
...t-information/personal-information/PersonalInformation.ts
+1
-0
index.vue
...ponents/artist-information/personal-information/index.vue
+5
-1
index.ts
src/i18n/vi/index.ts
+50
-49
index.vue
src/pages/cap-nhat-thong-tin-nghe-sy/index.vue
+2
-0
updateInformationArtist.ts
...ges/cap-nhat-thong-tin-nghe-sy/updateInformationArtist.ts
+14
-2
AddArtist.ts
src/pages/them-nghe-sy/AddArtist.ts
+13
-5
index.vue
src/pages/them-nghe-sy/index.vue
+2
-0
No files found.
src/assets/enums.ts
View file @
46512ec8
...
@@ -10,8 +10,8 @@ export enum UnitStatus {
...
@@ -10,8 +10,8 @@ export enum UnitStatus {
}
}
export
enum
HotProductStatus
{
export
enum
HotProductStatus
{
active
=
1
,
active
=
2
,
inactive
=
2
,
inactive
=
1
,
}
}
export
enum
CustomerRankStatus
{
export
enum
CustomerRankStatus
{
...
...
src/assets/type.ts
View file @
46512ec8
...
@@ -72,6 +72,7 @@ export type ArtistInfoType = {
...
@@ -72,6 +72,7 @@ export type ArtistInfoType = {
mnFbmess
:
string
|
null
;
mnFbmess
:
string
|
null
;
mnIns
:
string
|
null
;
mnIns
:
string
|
null
;
mnWhatsapp
:
string
|
null
;
mnWhatsapp
:
string
|
null
;
favoriteScore
:
number
;
};
};
export
type
FieldType
=
{
export
type
FieldType
=
{
...
...
src/components/artist-information/AddHotProduct/AddHotProductDialog.ts
View file @
46512ec8
...
@@ -21,6 +21,10 @@ export default defineComponent({
...
@@ -21,6 +21,10 @@ export default defineComponent({
const
embeddedUrl
:
Ref
<
string
>
=
ref
(
''
);
const
embeddedUrl
:
Ref
<
string
>
=
ref
(
''
);
const
urlFileLocal
:
Ref
<
string
>
=
ref
(
''
);
const
urlFileLocal
:
Ref
<
string
>
=
ref
(
''
);
const
status
:
Ref
<
number
>
=
ref
(
2
);
const
status
:
Ref
<
number
>
=
ref
(
2
);
const
statusOptions
=
ref
([
{
id
:
1
,
name
:
'Sản phẩm khác'
},
{
id
:
2
,
name
:
'Sản phẩm nổi bật'
},
]);
const
uploadAvatar
=
(
value
:
FileList
)
=>
{
const
uploadAvatar
=
(
value
:
FileList
)
=>
{
urlFileLocal
.
value
=
URL
.
createObjectURL
(
value
[
0
]);
urlFileLocal
.
value
=
URL
.
createObjectURL
(
value
[
0
]);
file
.
value
=
value
[
0
];
file
.
value
=
value
[
0
];
...
@@ -75,6 +79,13 @@ export default defineComponent({
...
@@ -75,6 +79,13 @@ export default defineComponent({
'artist.artistInformation.validateMessages.requireUrlembed'
'artist.artistInformation.validateMessages.requireUrlembed'
),
),
];
];
const
statusRules
=
[
(
val
?:
number
)
=>
val
!==
undefined
||
i18n
.
global
.
t
(
'artist.artistInformation.validateMessages.requireStatus'
),
];
return
{
return
{
uploadAvatar
,
uploadAvatar
,
...
@@ -89,6 +100,8 @@ export default defineComponent({
...
@@ -89,6 +100,8 @@ export default defineComponent({
product_name
,
product_name
,
product_code
,
product_code
,
url_embed
,
url_embed
,
statusRules
,
statusOptions
,
};
};
},
},
...
...
src/components/artist-information/AddHotProduct/index.vue
View file @
46512ec8
...
@@ -65,13 +65,26 @@
...
@@ -65,13 +65,26 @@
outlined
outlined
clearable
clearable
></q-input>
></q-input>
<q-select
v-model=
"status"
emit-value
label=
"Loại sản phẩm"
class=
"q-my-sm"
:options=
"statusOptions"
option-value=
"id"
option-label=
"name"
outlined
map-options
:rules=
"statusRules"
hide-bottom-space
></q-select>
</div>
</div>
<div
style=
"padding-top: 13px; padding-left: 12px"
>
<
!--
<
div
style=
"padding-top: 13px; padding-left: 12px"
>
<span
class=
"text-body1"
>
{{
<span
class=
"text-body1"
>
{{
$t
(
'userPage.dialogLabel.fieldLabels.status'
)
$t
(
'userPage.dialogLabel.fieldLabels.status'
)
}}
</span>
}}
</span>
<q-toggle
v-model=
"status"
:false-value=
"2"
:true-value=
"1"
/>
<q-toggle
v-model=
"status"
:false-value=
"2"
:true-value=
"1"
/>
</div>
</div>
-->
</div>
</div>
</q-card-section>
</q-card-section>
<q-card-actions
align=
"right"
>
<q-card-actions
align=
"right"
>
...
...
src/components/artist-information/UpdateHotProduct/index.vue
View file @
46512ec8
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
<q-item>
<q-item>
<q-item-section>
<q-item-section>
<q-item-label
class=
"text-h6 text-weight-regular"
>
{{
<q-item-label
class=
"text-h6 text-weight-regular"
>
{{
$t
(
'artist.dialogLabel.title.
add
HotProduct'
)
$t
(
'artist.dialogLabel.title.
update
HotProduct'
)
}}
</q-item-label>
}}
</q-item-label>
</q-item-section>
</q-item-section>
</q-item>
</q-item>
...
@@ -68,13 +68,26 @@
...
@@ -68,13 +68,26 @@
outlined
outlined
clearable
clearable
></q-input>
></q-input>
<q-select
v-model=
"status"
emit-value
label=
"Loại sản phẩm"
class=
"q-my-sm"
:options=
"statusOptions"
option-value=
"id"
option-label=
"name"
outlined
map-options
:rules=
"statusRules"
hide-bottom-space
></q-select>
</div>
</div>
<div
style=
"padding-top: 13px; padding-left: 12px"
>
<
!--
<
div
style=
"padding-top: 13px; padding-left: 12px"
>
<span
class=
"text-body1"
>
{{
<span
class=
"text-body1"
>
{{
$t
(
'userPage.dialogLabel.fieldLabels.status'
)
$t
(
'userPage.dialogLabel.fieldLabels.status'
)
}}
</span>
}}
</span>
<q-toggle
v-model=
"status"
:false-value=
"2"
:true-value=
"1"
/>
<q-toggle
v-model=
"status"
:false-value=
"2"
:true-value=
"1"
/>
</div>
</div>
-->
</div>
</div>
</q-card-section>
</q-card-section>
<q-card-actions
align=
"right"
>
<q-card-actions
align=
"right"
>
...
...
src/components/artist-information/UpdateHotProduct/updateHotProduc.ts
View file @
46512ec8
...
@@ -30,6 +30,10 @@ export default defineComponent({
...
@@ -30,6 +30,10 @@ export default defineComponent({
const
urlFileLocal
:
Ref
<
string
>
=
ref
(
''
);
const
urlFileLocal
:
Ref
<
string
>
=
ref
(
''
);
const
imageAPI
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
imageAPI
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
status
:
Ref
<
number
>
=
ref
(
2
);
const
status
:
Ref
<
number
>
=
ref
(
2
);
const
statusOptions
=
ref
([
{
id
:
1
,
name
:
'Sản phẩm khác'
},
{
id
:
2
,
name
:
'Sản phẩm nổi bật'
},
]);
const
id
:
Ref
<
number
|
null
>
=
ref
(
null
);
const
id
:
Ref
<
number
|
null
>
=
ref
(
null
);
const
uploadAvatar
=
(
value
:
FileList
)
=>
{
const
uploadAvatar
=
(
value
:
FileList
)
=>
{
urlFileLocal
.
value
=
URL
.
createObjectURL
(
value
[
0
]);
urlFileLocal
.
value
=
URL
.
createObjectURL
(
value
[
0
]);
...
@@ -95,6 +99,13 @@ export default defineComponent({
...
@@ -95,6 +99,13 @@ export default defineComponent({
'artist.artistInformation.validateMessages.requireUrlembed'
'artist.artistInformation.validateMessages.requireUrlembed'
),
),
];
];
const
statusRules
=
[
(
val
?:
number
)
=>
val
!==
undefined
||
i18n
.
global
.
t
(
'artist.artistInformation.validateMessages.requireStatus'
),
];
return
{
return
{
uploadAvatar
,
uploadAvatar
,
...
@@ -109,6 +120,8 @@ export default defineComponent({
...
@@ -109,6 +120,8 @@ export default defineComponent({
product_name
,
product_name
,
product_code
,
product_code
,
url_embed
,
url_embed
,
statusRules
,
statusOptions
,
id
,
id
,
configImg
,
configImg
,
imageAPI
,
imageAPI
,
...
...
src/components/artist-information/VAB-account/index.vue
View file @
46512ec8
...
@@ -221,7 +221,7 @@
...
@@ -221,7 +221,7 @@
color=
"primary"
color=
"primary"
icon=
"mdi-pencil-circle-outline"
icon=
"mdi-pencil-circle-outline"
>
>
<q-tooltip>
C
hỉnh sửa
Embed
</q-tooltip></q-btn
<q-tooltip>
C
ập nhập
Embed
</q-tooltip></q-btn
>
>
<q-btn
<q-btn
class=
"q-py-md"
class=
"q-py-md"
...
...
src/components/artist-information/personal-information/PersonalInformation.ts
View file @
46512ec8
...
@@ -185,6 +185,7 @@ export default defineComponent({
...
@@ -185,6 +185,7 @@ export default defineComponent({
'update:fields'
,
'update:fields'
,
'update:works'
,
'update:works'
,
'update:favoriteScore'
,
'update:favoriteScore'
,
'update:check_infoBooking'
,
'update:qualification'
,
'update:qualification'
,
'update:artistLevel'
,
'update:artistLevel'
,
'update:hidden_img'
,
'update:hidden_img'
,
...
...
src/components/artist-information/personal-information/index.vue
View file @
46512ec8
...
@@ -496,7 +496,11 @@
...
@@ -496,7 +496,11 @@
{{ $t('artist.artistInformation.titleDataField.infoBooking') }}
{{ $t('artist.artistInformation.titleDataField.infoBooking') }}
</div>
</div>
<div
class=
"col-8"
>
<div
class=
"col-8"
>
<q-checkbox
v-model=
"check_infoBooking"
class=
"q-my-sm"
></q-checkbox>
<q-checkbox
v-model=
"check_infoBooking"
@
update:model-value=
"$emit('update:check_infoBooking', $event)"
class=
"q-my-sm"
></q-checkbox>
</div>
</div>
</div>
</div>
<div
class=
"row flex-center"
v-if=
"check_infoBooking"
>
<div
class=
"row flex-center"
v-if=
"check_infoBooking"
>
...
...
src/i18n/vi/index.ts
View file @
46512ec8
This diff is collapsed.
Click to expand it.
src/pages/cap-nhat-thong-tin-nghe-sy/index.vue
View file @
46512ec8
...
@@ -61,6 +61,8 @@
...
@@ -61,6 +61,8 @@
v-model:mn-fbmess=
"mnFbmess"
v-model:mn-fbmess=
"mnFbmess"
v-model:mn-ins=
"mnIns"
v-model:mn-ins=
"mnIns"
v-model:mn-whatsapp=
"mnWhatsapp"
v-model:mn-whatsapp=
"mnWhatsapp"
v-model:favorite-score=
"favoriteScore"
v-model:check_infoBooking=
"check_infoBooking"
:errorMessmnBookingPhone=
"errorMessmnBookingPhone"
:errorMessmnBookingPhone=
"errorMessmnBookingPhone"
:errorMessmnBookingEmail=
"errorMessmnBookingEmail"
:errorMessmnBookingEmail=
"errorMessmnBookingEmail"
:mnBookingEmailRules=
"mnBookingEmailRules"
:mnBookingEmailRules=
"mnBookingEmailRules"
...
...
src/pages/cap-nhat-thong-tin-nghe-sy/updateInformationArtist.ts
View file @
46512ec8
...
@@ -103,6 +103,7 @@ export default defineComponent({
...
@@ -103,6 +103,7 @@ export default defineComponent({
numIndex
:
1
,
numIndex
:
1
,
status
:
1
,
status
:
1
,
});
});
const
favoriteScore
:
Ref
<
number
|
undefined
>
=
ref
(
undefined
);
const
mnName
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnName
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnPhone
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnPhone
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnEmail
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnEmail
:
Ref
<
string
|
null
>
=
ref
(
null
);
...
@@ -146,6 +147,7 @@ export default defineComponent({
...
@@ -146,6 +147,7 @@ export default defineComponent({
const
DataUpdateHotProduct
:
Ref
<
ProductType
|
null
>
=
ref
(
null
);
const
DataUpdateHotProduct
:
Ref
<
ProductType
|
null
>
=
ref
(
null
);
//sate error input thong-tin-ca-nhan
//sate error input thong-tin-ca-nhan
const
check_infoBooking
=
ref
(
false
);
const
artistCodeRules
=
ref
(
false
);
const
artistCodeRules
=
ref
(
false
);
const
fullNameRules
=
ref
(
false
);
const
fullNameRules
=
ref
(
false
);
const
artistNameRules
=
ref
(
false
);
const
artistNameRules
=
ref
(
false
);
...
@@ -355,6 +357,7 @@ export default defineComponent({
...
@@ -355,6 +357,7 @@ export default defineComponent({
mnFbmess
.
value
=
ArtistInformation
.
mnFbmess
;
mnFbmess
.
value
=
ArtistInformation
.
mnFbmess
;
mnIns
.
value
=
ArtistInformation
.
mnIns
;
mnIns
.
value
=
ArtistInformation
.
mnIns
;
mnWhatsapp
.
value
=
ArtistInformation
.
mnWhatsapp
;
mnWhatsapp
.
value
=
ArtistInformation
.
mnWhatsapp
;
favoriteScore
.
value
=
ArtistInformation
.
favoriteScore
;
nationality
.
value
=
ArtistInformation
.
nationality
;
nationality
.
value
=
ArtistInformation
.
nationality
;
qualification
.
value
=
ArtistInformation
.
qualification
;
qualification
.
value
=
ArtistInformation
.
qualification
;
works
.
value
=
ArtistInformation
.
works
;
works
.
value
=
ArtistInformation
.
works
;
...
@@ -727,14 +730,20 @@ export default defineComponent({
...
@@ -727,14 +730,20 @@ export default defineComponent({
);
);
}
}
if
(
!
mnBookingPhone
.
value
||
!
mnBookingPhone
.
value
?.
trim
().
length
)
{
if
(
(
!
mnBookingPhone
.
value
||
!
mnBookingPhone
.
value
?.
trim
().
length
)
&&
check_infoBooking
.
value
)
{
hasError
=
true
;
hasError
=
true
;
mnBookingPhoneRules
.
value
=
true
;
mnBookingPhoneRules
.
value
=
true
;
errorMessmnBookingPhone
.
value
=
i18n
.
global
.
t
(
errorMessmnBookingPhone
.
value
=
i18n
.
global
.
t
(
'artist.artistInformation.validateMessages.requirePhoneNumberAdminister'
'artist.artistInformation.validateMessages.requirePhoneNumberAdminister'
);
);
}
}
if
(
!
mnBookingEmail
.
value
||
!
mnBookingEmail
.
value
?.
trim
().
length
)
{
if
(
(
!
mnBookingEmail
.
value
||
!
mnBookingEmail
.
value
?.
trim
().
length
)
&&
check_infoBooking
.
value
)
{
hasError
=
true
;
hasError
=
true
;
mnBookingEmailRules
.
value
=
true
;
mnBookingEmailRules
.
value
=
true
;
errorMessmnBookingEmail
.
value
=
i18n
.
global
.
t
(
errorMessmnBookingEmail
.
value
=
i18n
.
global
.
t
(
...
@@ -860,6 +869,7 @@ export default defineComponent({
...
@@ -860,6 +869,7 @@ export default defineComponent({
mnFbmess
:
mnFbmess
.
value
,
mnFbmess
:
mnFbmess
.
value
,
mnIns
:
mnIns
.
value
,
mnIns
:
mnIns
.
value
,
mnWhatsapp
:
mnWhatsapp
.
value
,
mnWhatsapp
:
mnWhatsapp
.
value
,
favoriteScore
:
favoriteScore
.
value
,
},
},
}))
as
AxiosResponse
<
BaseResponseBody
<
unknown
>>
;
}))
as
AxiosResponse
<
BaseResponseBody
<
unknown
>>
;
if
(
response
.
data
.
error
.
code
===
config
.
API_RES_CODE
.
OK
.
code
)
{
if
(
response
.
data
.
error
.
code
===
config
.
API_RES_CODE
.
OK
.
code
)
{
...
@@ -1011,6 +1021,8 @@ export default defineComponent({
...
@@ -1011,6 +1021,8 @@ export default defineComponent({
errorMessmnBookingPhone
,
errorMessmnBookingPhone
,
mnBookingEmailRules
,
mnBookingEmailRules
,
errorMessmnBookingEmail
,
errorMessmnBookingEmail
,
favoriteScore
,
check_infoBooking
,
};
};
},
},
});
});
src/pages/them-nghe-sy/AddArtist.ts
View file @
46512ec8
...
@@ -36,8 +36,6 @@ import {
...
@@ -36,8 +36,6 @@ import {
TypeCardType
,
TypeCardType
,
FileUploadType
,
FileUploadType
,
}
from
'src/assets/type'
;
}
from
'src/assets/type'
;
// import { isEmail } from '../../boot/functions';
// import { isMobilePhone } from '../../boot/functions';
export
type
AvatarType
=
{
export
type
AvatarType
=
{
file
?:
File
;
file
?:
File
;
...
@@ -106,7 +104,7 @@ export default defineComponent({
...
@@ -106,7 +104,7 @@ export default defineComponent({
numIndex
:
1
,
numIndex
:
1
,
status
:
1
,
status
:
1
,
});
});
const
favoriteScore
:
Ref
<
number
|
undefined
>
=
ref
(
undefined
);
const
mnName
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnName
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnPhone
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnPhone
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnEmail
:
Ref
<
string
|
null
>
=
ref
(
null
);
const
mnEmail
:
Ref
<
string
|
null
>
=
ref
(
null
);
...
@@ -149,6 +147,7 @@ export default defineComponent({
...
@@ -149,6 +147,7 @@ export default defineComponent({
const
DataUpdateHotProduct
:
Ref
<
ProductType
|
null
>
=
ref
(
null
);
const
DataUpdateHotProduct
:
Ref
<
ProductType
|
null
>
=
ref
(
null
);
//sate error input thong-tin-ca-nhan
//sate error input thong-tin-ca-nhan
const
check_infoBooking
=
ref
(
false
);
const
artistCodeRules
=
ref
(
false
);
const
artistCodeRules
=
ref
(
false
);
const
fullNameRules
=
ref
(
false
);
const
fullNameRules
=
ref
(
false
);
const
artistNameRules
=
ref
(
false
);
const
artistNameRules
=
ref
(
false
);
...
@@ -654,14 +653,20 @@ export default defineComponent({
...
@@ -654,14 +653,20 @@ export default defineComponent({
);
);
}
}
if
(
!
mnBookingPhone
.
value
||
!
mnBookingPhone
.
value
?.
trim
().
length
)
{
if
(
(
!
mnBookingPhone
.
value
||
!
mnBookingPhone
.
value
?.
trim
().
length
)
&&
check_infoBooking
.
value
)
{
hasError
=
true
;
hasError
=
true
;
mnBookingPhoneRules
.
value
=
true
;
mnBookingPhoneRules
.
value
=
true
;
errorMessmnBookingPhone
.
value
=
i18n
.
global
.
t
(
errorMessmnBookingPhone
.
value
=
i18n
.
global
.
t
(
'artist.artistInformation.validateMessages.requirePhoneNumberAdminister'
'artist.artistInformation.validateMessages.requirePhoneNumberAdminister'
);
);
}
}
if
(
!
mnBookingEmail
.
value
||
!
mnBookingEmail
.
value
?.
trim
().
length
)
{
if
(
(
!
mnBookingEmail
.
value
||
!
mnBookingEmail
.
value
?.
trim
().
length
)
&&
check_infoBooking
.
value
)
{
hasError
=
true
;
hasError
=
true
;
mnBookingEmailRules
.
value
=
true
;
mnBookingEmailRules
.
value
=
true
;
errorMessmnBookingEmail
.
value
=
i18n
.
global
.
t
(
errorMessmnBookingEmail
.
value
=
i18n
.
global
.
t
(
...
@@ -772,6 +777,7 @@ export default defineComponent({
...
@@ -772,6 +777,7 @@ export default defineComponent({
mnFbmess
:
mnFbmess
.
value
,
mnFbmess
:
mnFbmess
.
value
,
mnIns
:
mnIns
.
value
,
mnIns
:
mnIns
.
value
,
mnWhatsapp
:
mnWhatsapp
.
value
,
mnWhatsapp
:
mnWhatsapp
.
value
,
favoriteScore
:
favoriteScore
.
value
,
},
},
}))
as
AxiosResponse
<
BaseResponseBody
<
unknown
>>
;
}))
as
AxiosResponse
<
BaseResponseBody
<
unknown
>>
;
if
(
response
.
data
.
error
.
code
===
config
.
API_RES_CODE
.
OK
.
code
)
{
if
(
response
.
data
.
error
.
code
===
config
.
API_RES_CODE
.
OK
.
code
)
{
...
@@ -919,6 +925,8 @@ export default defineComponent({
...
@@ -919,6 +925,8 @@ export default defineComponent({
errorMessEmail
,
errorMessEmail
,
errorMessPhoneNumber
,
errorMessPhoneNumber
,
confirmChangeIsDefault
,
confirmChangeIsDefault
,
favoriteScore
,
check_infoBooking
,
};
};
},
},
});
});
src/pages/them-nghe-sy/index.vue
View file @
46512ec8
...
@@ -61,6 +61,8 @@
...
@@ -61,6 +61,8 @@
v-model:mn-fbmess=
"mnFbmess"
v-model:mn-fbmess=
"mnFbmess"
v-model:mn-ins=
"mnIns"
v-model:mn-ins=
"mnIns"
v-model:mn-whatsapp=
"mnWhatsapp"
v-model:mn-whatsapp=
"mnWhatsapp"
v-model:favorite-score=
"favoriteScore"
v-model:check_infoBooking=
"check_infoBooking"
:errorMessmnBookingPhone=
"errorMessmnBookingPhone"
:errorMessmnBookingPhone=
"errorMessmnBookingPhone"
:errorMessmnBookingEmail=
"errorMessmnBookingEmail"
:errorMessmnBookingEmail=
"errorMessmnBookingEmail"
:mnBookingEmailRules=
"mnBookingEmailRules"
:mnBookingEmailRules=
"mnBookingEmailRules"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment