change-gongsi.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="change-gongsi">
  3. <u-navbar :background="{background:'rgba(0,0,0,0)'}" :border-bottom="false" :is-fixed="false"></u-navbar>
  4. <image style="position: fixed;top: 0;left: 0;width: 750rpx;height: 100vh;z-index: -1;" src="../../static/img/group.png" mode=""></image>
  5. <view class="u-flex-col" style="padding: 96rpx;">
  6. <text style="font-size: 56rpx;font-weight: 500;">你好,</text>
  7. <text style="font-size: 32rpx;">欢迎使用病例评比</text>
  8. </view>
  9. <view @click="show = true" class="u-flex u-row-between" style="margin: 200rpx 96rpx;height: 100rpx;border-bottom: 2rpx solid rgba(0, 0, 0, 0.08);">
  10. <input :disabled="true" v-model="gongsiname" type="text" placeholder="请选择公司" class="u-flex-1" style="font-size: 28rpx;">
  11. <u-icon name="arrow-down-fill"></u-icon>
  12. </view>
  13. <view class="" @click="next" style="line-height: 80rpx;background: #167FFF;border-radius: 40rpx;text-align: center;font-size: 28rpx;color: #FFFFFF;width: 558rpx;margin: 0 auto;">
  14. 下一步
  15. </view>
  16. <u-select v-model="show" label-name="compName" value-name="id" :list="list" @confirm="confirm"></u-select>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. show: false,
  24. list: [],
  25. gongsiname: '',
  26. gongsivalue: '',
  27. type: 1
  28. }
  29. },
  30. onLoad(option) {
  31. this.type = option.type
  32. this.getdata()
  33. },
  34. methods: {
  35. getdata() {
  36. this.$http.getCompName({
  37. type: this.type
  38. }).then(res => {
  39. this.list = res.data.result
  40. })
  41. },
  42. next() {
  43. if (!this.gongsiname || !this.gongsivalue) {
  44. this.$u.toast('请选择公司')
  45. return
  46. }
  47. uni.showLoading({
  48. mask: true,
  49. title: '请稍后'
  50. })
  51. this.$http.setCompNameTrue({
  52. id: this.gongsivalue
  53. }).then(res => {
  54. uni.hideLoading()
  55. if (res.data.code == 200) {
  56. this.$u.toast("切换成功")
  57. setTimeout(() => {
  58. this.getUserInfo()
  59. }, 800)
  60. } else {
  61. this.$u.toast(res.data.message)
  62. }
  63. })
  64. },
  65. confirm(e) {
  66. this.gongsiname = e[0].label
  67. this.gongsivalue = e[0].value
  68. },
  69. getUserInfo() {
  70. this.$http.getUserInfo().then(res => {
  71. if (res.data.code == 200) {
  72. // 是否信息完整
  73. uni.setStorageSync('doctorAndSpecialist', res.data.result.doctorAndSpecialist);
  74. if (res.data.result.completeInformation != 2) {
  75. uni.navigateTo({
  76. url: '/pages/login/perfect',
  77. })
  78. } else {
  79. uni.reLaunch({
  80. url: '/pages/index/index',
  81. })
  82. }
  83. }else{
  84. this.$u.toast(res.data.message)
  85. }
  86. })
  87. },
  88. }
  89. }
  90. </script>
  91. <style lang="scss">
  92. .change-gongsi {}
  93. </style>