bindUser.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <view class="bindUser">
  3. <view class="scanFont">您的微信未绑定工号,请填写工号后进行使用</view>
  4. <view class="searchUser">
  5. <input class="searchUserIpt" v-model="account" type="text" placeholder="请输入工号" />
  6. <button class="searchUserBtn" @click="search(account)">检索</button>
  7. </view>
  8. <view class="accountName">
  9. 检索到的用户:{{accountName}}
  10. </view>
  11. <view class="bind">
  12. <button class="bindBtn" :disabled="!bindAccount" type="primary" @click="bindAccountHandler(account)">绑定工号</button>
  13. </view>
  14. <!-- 弹窗 -->
  15. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  16. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  17. </view>
  18. </template>
  19. <script>
  20. import {
  21. get,
  22. post,
  23. SM,
  24. webHandle
  25. } from "../../http/http.js";
  26. export default {
  27. data() {
  28. return {
  29. account: '', //检索的工号
  30. accountName: '', //检索的用户名称
  31. bindAccount: '', //绑定的工号
  32. // 弹窗model
  33. models: {
  34. disjunctor: false,
  35. },
  36. type: "", //登录来源类型
  37. }
  38. },
  39. methods: {
  40. // 绑定工号
  41. bindAccountHandler(account) {
  42. this.models = {
  43. disjunctor: true,
  44. title: "提示",
  45. content: `您的账号为“${this.bindAccount}”,姓名为“${this.accountName}”,您确认要绑定吗?`,
  46. icon: "warn",
  47. operate: {
  48. ok: "确定",
  49. cancel: "取消",
  50. },
  51. };
  52. },
  53. // 检索
  54. search(account) {
  55. let trimValue = account.trim();
  56. if (trimValue === '') {
  57. this.accountName = '';
  58. this.bindAccount = '';
  59. return;
  60. }
  61. uni.showLoading({
  62. title: "检索中",
  63. mask: true,
  64. });
  65. post("/data/isRepeat", {
  66. account: trimValue
  67. }).then(result => {
  68. uni.hideLoading();
  69. if (result.status == 200) {
  70. this.accountName = result.userName;
  71. this.bindAccount = trimValue;
  72. } else {
  73. this.accountName = '';
  74. this.bindAccount = '';
  75. }
  76. })
  77. },
  78. //抢单后知道了
  79. know() {
  80. this.models.disjunctor = false;
  81. },
  82. //确定
  83. ok() {
  84. this.models.disjunctor = false;
  85. uni.showLoading({
  86. title: "加载中",
  87. mask: true,
  88. });
  89. post("/data/isBindAccount", {
  90. account: this.bindAccount
  91. }).then((res) => {
  92. uni.hideLoading();
  93. let _this = this;
  94. if (res.status == 200) {
  95. uni.showModal({
  96. title: '提示',
  97. content: '绑定成功',
  98. showCancel: false,
  99. confirmColor: '#49b856',
  100. confirmText: '进入系统',
  101. success: function(result) {
  102. if (result.confirm) {
  103. console.log('用户点击确定',_this.type);
  104. if (_this.type) {
  105. location.assign(location.origin + location.pathname + '#/pages/homePage/homePage?type=' +
  106. _this.type);
  107. } else {
  108. location.assign(location.origin + location.pathname + '#/pages/homePage/homePage');
  109. }
  110. } else if (result.cancel) {
  111. console.log('用户点击取消');
  112. }
  113. }
  114. });
  115. } else if (res.status == 500) {
  116. this.models = {
  117. disjunctor: true,
  118. title: '提示',
  119. content: '您提供的工号已经绑定微信号,请联系管理人员进行处理',
  120. icon: 'warn',
  121. operate: {
  122. know: "知道了",
  123. },
  124. };
  125. }
  126. })
  127. },
  128. //取消
  129. cancel() {
  130. this.models.disjunctor = false;
  131. },
  132. },
  133. onLoad(options) {
  134. console.log(options, 'seimin');
  135. this.type = options.type || "";
  136. // #ifdef APP-PLUS
  137. webHandle("no", "app");
  138. // #endif
  139. // #ifdef H5
  140. webHandle("no", "wx");
  141. // #endif
  142. }
  143. }
  144. </script>
  145. <style lang="less" scoped>
  146. .bind {
  147. margin-top: 68rpx;
  148. display: flex;
  149. justify-content: center;
  150. .bindBtn {
  151. background-color: rgb(73, 184, 86) !important;
  152. &[disabled] {
  153. background-color: rgba(73, 184, 86, 0.6) !important
  154. }
  155. }
  156. }
  157. .bindUser {
  158. background-color: rgb(249, 250, 251);
  159. padding-top: 36rpx;
  160. height: 100vh;
  161. box-sizing: border-box;
  162. .scanFont {
  163. font-size: 34rpx;
  164. font-weight: 700;
  165. margin: 30rpx;
  166. text-align: center;
  167. &.nr {
  168. font-weight: normal;
  169. }
  170. &.red {
  171. color: red;
  172. }
  173. }
  174. .searchUser {
  175. display: flex;
  176. align-items: center;
  177. padding: 30rpx;
  178. .searchUserIpt {
  179. padding: 24rpx;
  180. flex: 3;
  181. border: 1px solid #0003;
  182. margin-right: 30rpx;
  183. }
  184. .searchUserBtn {
  185. flex: 1;
  186. }
  187. }
  188. .accountName {
  189. padding: 0 30rpx;
  190. }
  191. }
  192. </style>