|
|
@@ -143,7 +143,7 @@
|
|
|
</div>
|
|
|
<iframe
|
|
|
allow="camera *; microphone *;display-capture;midi;encrypted-media;"
|
|
|
- src="https://beta.cloud.cocorobo.cn/browser/public/index.html"
|
|
|
+ :src="iframeUrl"
|
|
|
ref="iiframe"
|
|
|
v-show="false"
|
|
|
></iframe>
|
|
|
@@ -207,6 +207,17 @@ export default {
|
|
|
"Read the following text aloud.A Car Accident I saw a car accident this morning. A boy wanted to cross the road but he did not look carefully. He just ran out into the road. A car was coming and the driver stopped at once. Luckily, the boy was not hurt. However, there was a bus behind the car. It could not stop and hit the back of the car. Someone called the police and they arrived quickly.",
|
|
|
};
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ iframeUrl() {
|
|
|
+ if (this.lang.lang == 'com') {
|
|
|
+ return `https://cloud.cocorobo.com/browser/public/index.html`;
|
|
|
+ }else if(this.lang.lang == 'hk'){
|
|
|
+ return `https://cloud.cocorobo.hk/browser/public/index.html`;
|
|
|
+ }else{
|
|
|
+ return `https://beta.cloud.cocorobo.cn/browser/public/index.html`;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
handleClose(done) {
|
|
|
this.close();
|