bindUser.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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. console.log('用户点击确定',_this.type);
  106. if (_this.type) {
  107. location.assign(baseUrl + '/' + '#/pages/homePage/homePage?type=' +
  108. _this.type);
  109. } else {
  110. location.assign(baseUrl + '/' + '#/pages/homePage/homePage');
  111. }
  112. } else if (result.cancel) {
  113. console.log('用户点击取消');
  114. }
  115. }
  116. });
  117. } else if (res.status == 500) {
  118. this.models = {
  119. disjunctor: true,
  120. title: '提示',
  121. content: '您提供的工号已经绑定微信号,请联系管理人员进行处理',
  122. icon: 'warn',
  123. operate: {
  124. know: "知道了",
  125. },
  126. };
  127. }
  128. })
  129. },
  130. //取消
  131. cancel() {
  132. this.models.disjunctor = false;
  133. },
  134. },
  135. onLoad(options) {
  136. console.log(options, 'seimin');
  137. this.type = options.type || "";
  138. // #ifdef APP-PLUS
  139. webHandle("no", "app");
  140. // #endif
  141. // #ifdef H5
  142. webHandle("no", "wx");
  143. // #endif
  144. }
  145. }
  146. </script>
  147. <style lang="less" scoped>
  148. .bind {
  149. margin-top: 68rpx;
  150. display: flex;
  151. justify-content: center;
  152. .bindBtn {
  153. background-color: rgb(73, 184, 86) !important;
  154. &[disabled] {
  155. background-color: rgba(73, 184, 86, 0.6) !important
  156. }
  157. }
  158. }
  159. .bindUser {
  160. background-color: rgb(249, 250, 251);
  161. padding-top: 36rpx;
  162. height: 100vh;
  163. box-sizing: border-box;
  164. .scanFont {
  165. font-size: 34rpx;
  166. font-weight: 700;
  167. margin: 30rpx;
  168. text-align: center;
  169. &.nr {
  170. font-weight: normal;
  171. }
  172. &.red {
  173. color: red;
  174. }
  175. }
  176. .searchUser {
  177. display: flex;
  178. align-items: center;
  179. padding: 30rpx;
  180. .searchUserIpt {
  181. padding: 24rpx;
  182. flex: 3;
  183. border: 1px solid #0003;
  184. margin-right: 30rpx;
  185. }
  186. .searchUserBtn {
  187. flex: 1;
  188. }
  189. }
  190. .accountName {
  191. padding: 0 30rpx;
  192. }
  193. }
  194. </style>