|
@@ -17,7 +17,6 @@ const props = defineProps({
|
|
source: {
|
|
source: {
|
|
type: String,
|
|
type: String,
|
|
default: '',
|
|
default: '',
|
|
- required: true,
|
|
|
|
},
|
|
},
|
|
sourceDesc: {
|
|
sourceDesc: {
|
|
type: String,
|
|
type: String,
|
|
@@ -33,6 +32,10 @@ const props = defineProps({
|
|
type: Boolean,
|
|
type: Boolean,
|
|
default: false,
|
|
default: false,
|
|
},
|
|
},
|
|
|
|
+ getContainer: {
|
|
|
|
+ type: String,
|
|
|
|
+ default: ''
|
|
|
|
+ },
|
|
useCustomer3: {
|
|
useCustomer3: {
|
|
type: Boolean,
|
|
type: Boolean,
|
|
default: false,
|
|
default: false,
|
|
@@ -59,8 +62,6 @@ const {
|
|
props
|
|
props
|
|
})
|
|
})
|
|
|
|
|
|
-console.log(configInfo)
|
|
|
|
-
|
|
|
|
const {
|
|
const {
|
|
contactMe,
|
|
contactMe,
|
|
changePhoneDialog,
|
|
changePhoneDialog,
|
|
@@ -94,6 +95,7 @@ export default {
|
|
class="mobile-leave-dialog"
|
|
class="mobile-leave-dialog"
|
|
:visible="visible"
|
|
:visible="visible"
|
|
:content-transition-name="contentTransitionName"
|
|
:content-transition-name="contentTransitionName"
|
|
|
|
+ :get-container="getContainer"
|
|
@update:visible="updateVisible"
|
|
@update:visible="updateVisible"
|
|
@close="close"
|
|
@close="close"
|
|
>
|
|
>
|