initBind.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <view class="repairEntrance">
  3. <view class="info">
  4. <view class="info_text">
  5. <view class="text_left text_justify">您还没有绑定工号,请填写您的工号进行绑定。</view>
  6. </view>
  7. <view class="info_form">
  8. <view class="info_form_item">
  9. <label for="account" class="label"><text class="required newicon newicon-bitian"></text>工号:</label>
  10. <uni-easyinput class="flex1" v-model="postData.account" placeholder="请输入工号" focus
  11. :styles="{borderColor: !postData.account && isSubmmit ? '#f00' : ''}" :primaryColor="primaryColor" />
  12. </view>
  13. </view>
  14. </view>
  15. <button @click="bind" type="default" class="primaryButton bind">绑定</button>
  16. </view>
  17. </template>
  18. <script setup>
  19. import { onLoad } from '@dcloudio/uni-app'
  20. import { post } from "@/http/http.js"
  21. import { defaultColor } from '@/static/js/theme.js'
  22. import { reactive, ref } from 'vue'
  23. import { useWechatAuth } from '@/share/useWechatAuth.js'
  24. import { useSetTitle } from '@/share/useSetTitle.js'
  25. useSetTitle()
  26. const { wechatAuth } = useWechatAuth()
  27. // 数据
  28. const postData = reactive({
  29. account: '',
  30. })
  31. // 传参
  32. const options = reactive({
  33. wechat: '',
  34. })
  35. // easyinput颜色
  36. const primaryColor = ref(defaultColor)
  37. // 是否提交
  38. const isSubmmit = ref(false)
  39. /**
  40. * 绑定
  41. */
  42. function bind() {
  43. isSubmmit.value = true;
  44. if(!postData.account){
  45. uni.showModal({
  46. title: '提示',
  47. content: `请填写工号`,
  48. showCancel: false,
  49. confirmColor: defaultColor,
  50. confirmText: '取消',
  51. });
  52. return;
  53. }
  54. bindFn();
  55. }
  56. /**
  57. * 绑定工号
  58. */
  59. function bindFn(type) {
  60. uni.showLoading({
  61. title: "加载中",
  62. mask: true,
  63. });
  64. post("/auth/bindAccount", {
  65. account: postData.account,
  66. wechat: options.wechat,
  67. type: type || undefined,
  68. }).then(res => {
  69. uni.hideLoading();
  70. if (res.status == 200) {
  71. if(type === undefined){
  72. // 查询
  73. uni.showModal({
  74. title: '提示',
  75. content: `您输入的工号为“${postData.account}”对应姓名“${res.data ? res.data.name : ''}”,您确认绑定吗?`,
  76. confirmColor: defaultColor,
  77. confirmText: '确认',
  78. success: function(res) {
  79. if (res.confirm) {
  80. bindFn('bind');
  81. }
  82. }
  83. });
  84. }else{
  85. // 绑定
  86. wechatAuth();
  87. }
  88. } else if (res.status == 403) {
  89. //未查询到
  90. uni.showModal({
  91. title: '提示',
  92. content: `您填写的工号“${postData.account}”,未查询到!请确认工号是否正确,如有问题请联系管理员。`,
  93. showCancel: false,
  94. confirmColor: defaultColor,
  95. confirmText: '取消',
  96. });
  97. } else if (res.status == 401) {
  98. //已被绑定
  99. uni.showModal({
  100. title: '提示',
  101. content: `您填写工号为“${postData.account}”对应姓名为“${res.data ? res.data.name : ''}”已经被绑定,如有误请联系管理员处理。`,
  102. showCancel: false,
  103. confirmColor: defaultColor,
  104. confirmText: '取消',
  105. });
  106. } else {
  107. uni.showModal({
  108. title: '提示',
  109. content: res.msg || '请求数据失败!',
  110. showCancel: false,
  111. confirmColor: defaultColor,
  112. confirmText: '取消',
  113. });
  114. }
  115. })
  116. }
  117. onLoad((option) => {
  118. console.log(option);
  119. options.wechat = option.wechat;
  120. })
  121. </script>
  122. <style lang="scss" scoped>
  123. .repairEntrance {
  124. height: 100%;
  125. display: flex;
  126. flex-direction: column;
  127. justify-content: space-between;
  128. align-items: center;
  129. .info {
  130. .info_text {
  131. line-height: 56rpx;
  132. font-size: 34rpx;
  133. padding: 90rpx 0 58rpx;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. }
  138. .info_form {
  139. .info_form_item {
  140. height: 86rpx;
  141. display: flex;
  142. align-items: center;
  143. }
  144. }
  145. }
  146. .bind {
  147. width: 100%;
  148. margin-bottom: 24rpx;
  149. }
  150. }
  151. </style>