bindUser.vue 5.1 KB

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