123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view>
- <web-view :src="href"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- href:""
- };
- },
- onLoad(option) {
- this.href = "http://webdevelop.nxjiewei.com/assets/html/video/?mine_code=" + option.mine_code
-
- this.get_product_data_query_power()
- },
- methods:{
- get_product_data_query_power(){
- this.$p_api.product_data_query_power({
- staff_num: uni.getStorageSync('user').staff_num,
- data_module: "spjk"
- }).then((res)=>{
- if(res.data.content.status){
- console.log("可查看")
- }else{
- uni.showToast({
- icon:"none",
- title:"没有查看权限!"
- })
-
- setTimeout(()=>{
- uni.navigateBack()
- },1000)
- }
- })
- },
- }
- }
- </script>
- <style lang="scss">
- </style>
|