12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <view>
- <web-view :src="href"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- href: "",
-
- staff_num:"",
- mine_code:""
- };
- },
- onLoad() {
- this.staff_num = uni.getStorageSync('user').staff_num
-
- let mine_code = uni.getStorageSync('mine_code')
-
- if(mine_code == 'ningdongyunying'){
- this.mine_code = "ningdongyunying"
- }else if(mine_code == 'jinjiaqu' || mine_code == 'jinjiaqu_neiwang'){
- this.mine_code = "640323B0011010019259"
- }
- this.get_token()
- },
- methods:{
- get_token(){
- uni.request({
- // 登录 获取token
- method:"POST",
- url: "http://shangtang.jinjiaqu.nxjiewei.com:8011/v1/app/token/get",
- header:{
- "Content-Type": "application/json"
- },
- data: {
- staff_num: this.staff_num,
- area_code: this.mine_code
- },
- success: (res) => {
- console.log(res)
- if(res.data.code == 0){
- console.log(res.data.data)
- // 金家渠
- this.href = "http://shangtang.jinjiaqu.nxjiewei.com:8011/h5/index.html?token=" + res.data.data.access_token
- }else{
- uni.showToast({
- icon:"none",
- title:"身份信息验证失败!"
- })
- }
- },
- fail: (err) => {
- uni.showToast({
- icon:"none",
- title:err
- })
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|