| 1234567891011121314151617181920212223242526272829 | <template>  <view>    <web-view :webview-styles="webviewStyles" :src="url"></web-view>  </view></template><script>import { metaSetScalable } from "../../common/navTo";export default {  data() {    return {      webviewStyles: {        progress: {          color: "#007AFF",        },      },      url: "",    };  },  onLoad(option) {    this.url = option.url;    // #ifdef H5    metaSetScalable();    // #endif  },};</script><style></style>
 |