12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view>
- <web-view :src="href"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- href:"",
- mine_code:""
- };
- },
- onLoad(option) {
- // 初始化当前煤矿编码
- this.mine_code = uni.getStorageSync('mine_code')
- this.Authorization = uni.getStorageSync('Authorization')
- // 设置标题
- uni.setNavigationBarTitle({
- title: option.title
- })
-
- this.href = "http://anstatic.nxmy.com:8011/assets/html/zhks-quankuang/apply?id=" + option.id + "&token=" + this.Authorization + "&mine_code=" + this.mine_code
- },
-
- }
- </script>
- <style lang="scss">
- .content {
- width: 749rpx;
- box-sizing: border-box;
- padding: 30px 24rpx;
- }
-
- </style>
|