showmp.vue 433 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="page">
  3. <web-view :src="src"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. import config from '../../config'
  8. export default {
  9. data() {
  10. return {
  11. src:''
  12. }
  13. },
  14. onLoad(option) {
  15. this.src=config.baseUrl+ "app/index.php?i=1&j=1&c=auth&a=usercenter&do=showmp&oid=1&isajax=1&dev_id=" + option.dev_id+"&sn="+option.sn+"&state="+option.state+'&count='+option.total
  16. }
  17. }
  18. </script>
  19. <style>
  20. </style>