base1.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. <template>
  2. <view class="" >
  3. <view >
  4. <image src="../../static/bg.png" mode="" class="bg"></image>
  5. <view class="top">
  6. <view class="" style="text-align: center;margin-top: 100rpx;">
  7. 您的账号已被禁用,请联系平台管理员
  8. </view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. onLoad() {
  16. },
  17. onShow() {
  18. },
  19. data() {
  20. return {
  21. }
  22. },
  23. methods: {
  24. reset(){
  25. this.status=0
  26. },
  27. getInfo() {
  28. uni.$u.http.post('/api/user/userinfo').then(res => {
  29. if (res.code == 1) {
  30. this.status=res.data.is_info
  31. }
  32. })
  33. },
  34. getCode(){
  35. if (this.s == 60) {
  36. if (!this.phone) {
  37. uni.showToast({
  38. title: "请输入手机号",
  39. duration: 2000,
  40. icon: "none",
  41. });
  42. return false;
  43. }
  44. uni.$u.http.post('/api/Sms/alsend',{phone:this.phone}).then((res) => {
  45. uni.hideLoading()
  46. uni.showToast({
  47. title: res.msg,
  48. duration: 2000,
  49. icon: "none",
  50. });
  51. if (res.code == 1) {
  52. this.time = setInterval(() => {
  53. this.s--
  54. this.count = `${this.s}s`
  55. if (this.s <= 0) {
  56. this.s = 60
  57. this.count = '重新发送'
  58. clearInterval(this.time)
  59. }
  60. }, 1000)
  61. }
  62. });
  63. }
  64. },
  65. gorenzheng(){
  66. if(!this.unit){
  67. this.$u.toast('请输入单位名称')
  68. return
  69. }
  70. if(!this.name){
  71. this.$u.toast('请输入姓名')
  72. return
  73. }
  74. if(!this.idcard){
  75. this.$u.toast('请输入身份证号')
  76. return
  77. }
  78. if(!this.age){
  79. this.$u.toast('请输入年龄')
  80. return
  81. }
  82. if(this.current==null){
  83. this.$u.toast('请选择学历')
  84. return
  85. }
  86. if(!this.phone){
  87. this.$u.toast('请输入手机号')
  88. return
  89. }
  90. if(!this.code){
  91. this.$u.toast('请输入验证码')
  92. return
  93. }
  94. // if(!this.uuid){
  95. // this.$u.toast('请输入会员号')
  96. // return
  97. // }
  98. // if(!this.workImg){
  99. // this.$u.toast('上传单位证明')
  100. // return
  101. // }
  102. // if(this.fileList1.length==0){
  103. // this.$u.toast('上传个人照片')
  104. // return
  105. // }
  106. let data={
  107. working:this.unit,
  108. username:this.name,
  109. ID_car:this.idcard,
  110. age:this.age,
  111. education:this.current,
  112. phone:this.phone,
  113. code:this.code,
  114. }
  115. uni.$u.http.post('/api/index/member_basic',data).then(res => {
  116. if(res.code==1){
  117. this.$u.toast(res.msg)
  118. this.getInfo()
  119. }
  120. })
  121. },
  122. uploadImg(){
  123. var that=this
  124. uni.chooseImage({
  125. success: (chooseImageRes) => {
  126. const tempFilePaths = chooseImageRes.tempFilePaths;
  127. uni.uploadFile({
  128. url: this.$url+'/api/Publics/uploadLocality', //仅为示例,非真实的接口地址
  129. filePath: tempFilePaths[0],
  130. name: 'file',
  131. success: (uploadFileRes) => {
  132. that.workImg=JSON.parse(uploadFileRes.data).data.url
  133. }
  134. });
  135. }
  136. });
  137. },
  138. change(e) {
  139. this.current = e.value[0]
  140. // console.log(this.columns[0][this.current])
  141. this.show = false
  142. },
  143. cancel() {
  144. this.show = false
  145. },
  146. // 删除图片
  147. deletePic(event) {
  148. this[`fileList${event.name}`].splice(event.index, 1)
  149. },
  150. // 新增图片
  151. async afterRead(event) {
  152. // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式
  153. let lists = [].concat(event.file)
  154. let fileListLen = this[`fileList${event.name}`].length
  155. lists.map((item) => {
  156. this[`fileList${event.name}`].push({
  157. ...item,
  158. status: 'uploading',
  159. message: '上传中'
  160. })
  161. })
  162. for (let i = 0; i < lists.length; i++) {
  163. const result = await this.uploadFilePromise(lists[i].url)
  164. let item = this[`fileList${event.name}`][fileListLen]
  165. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  166. status: 'success',
  167. message: '',
  168. url: result
  169. }))
  170. fileListLen++
  171. }
  172. },
  173. uploadFilePromise(url) {
  174. return new Promise((resolve, reject) => {
  175. let a = uni.uploadFile({
  176. url: this.$url+'/api/Publics/uploadLocality', // 仅为示例,非真实的接口地址
  177. filePath: url,
  178. name: 'file',
  179. formData: {
  180. user: 'test'
  181. },
  182. success: (res) => {
  183. setTimeout(() => {
  184. resolve(JSON.parse(res.data).data.url)
  185. }, 1000)
  186. }
  187. });
  188. })
  189. },
  190. }
  191. }
  192. </script>
  193. <style lang="scss">
  194. .btnlist{
  195. width: 100%;
  196. }
  197. .btn1{
  198. font-weight: 500;
  199. color: #FFFFFF;
  200. line-height: 50px;
  201. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  202. -webkit-background-clip: text;
  203. -webkit-text-fill-color: transparent;
  204. width: 270rpx;
  205. height: 88rpx;
  206. line-height: 88rpx;
  207. text-align: center;
  208. font-size: 36rpx;
  209. border-radius: 48rpx;
  210. border: 4rpx solid #E6CDE6;
  211. // border-image: linear-gradient(270deg, rgba(171, 145, 252, 1), rgba(251, 173, 177, 1)) 2 2;
  212. }
  213. .btn{
  214. width: 270rpx;
  215. height: 88rpx;
  216. line-height: 88rpx;
  217. text-align: center;
  218. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  219. border-radius: 48rpx;
  220. font-size: 36rpx;
  221. }
  222. .error{
  223. padding-top: 96rpx;
  224. padding-bottom: 94rpx;
  225. margin: 56rpx auto 0;
  226. width: 690rpx;
  227. // height: 888rpx;
  228. background: #FFFFFF;
  229. border-radius: 40rpx;
  230. font-size: 24rpx;
  231. color: #222222;
  232. image{
  233. width: 140rpx;
  234. height: 140rpx;
  235. }
  236. .reason{
  237. padding: 24rpx 20rpx;
  238. margin: 52rpx auto 64rpx;
  239. width: 610rpx;
  240. height: 200rpx;
  241. background: #F4F4F4;
  242. border-radius: 20rpx;
  243. }
  244. }
  245. .success{
  246. box-sizing: border-box;
  247. padding: 0 40rpx;
  248. height: auto;
  249. }
  250. .info{
  251. padding: 40rpx 40rpx 0;
  252. width: 100%;
  253. margin-top: 80rpx;
  254. border-top: 2rpx solid #F3F3F3;
  255. .infoitem{
  256. line-height: 100rpx;
  257. width: 100%;
  258. font-size: 30rpx;
  259. color: #222222;
  260. }
  261. }
  262. .btnlist{
  263. margin-top: 30rpx;
  264. width: 100%;
  265. }
  266. .btn1{
  267. font-weight: 500;
  268. color: #FFFFFF;
  269. line-height: 50px;
  270. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  271. -webkit-background-clip: text;
  272. -webkit-text-fill-color: transparent;
  273. width: 270rpx;
  274. height: 88rpx;
  275. line-height: 88rpx;
  276. text-align: center;
  277. font-size: 36rpx;
  278. border-radius: 48rpx;
  279. border: 4rpx solid #E6CDE6;
  280. // border-image: linear-gradient(270deg, rgba(171, 145, 252, 1), rgba(251, 173, 177, 1)) 2 2;
  281. }
  282. .btn{
  283. width: 270rpx;
  284. height: 88rpx;
  285. line-height: 88rpx;
  286. text-align: center;
  287. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  288. border-radius: 48rpx;
  289. font-size: 36rpx;
  290. }
  291. .error{
  292. padding-top: 96rpx;
  293. padding-bottom: 94rpx;
  294. margin: 56rpx auto 0;
  295. width: 690rpx;
  296. // height: 888rpx;
  297. background: #FFFFFF;
  298. border-radius: 40rpx;
  299. font-size: 24rpx;
  300. color: #222222;
  301. image{
  302. width: 140rpx;
  303. height: 140rpx;
  304. }
  305. .reason{
  306. padding: 24rpx 20rpx;
  307. margin: 52rpx auto 64rpx;
  308. width: 610rpx;
  309. height: 200rpx;
  310. background: #F4F4F4;
  311. border-radius: 20rpx;
  312. }
  313. }
  314. .lookvip {
  315. font-weight: 500;
  316. margin-top: 24rpx;
  317. font-size: 24rpx;
  318. color: #555555;
  319. text-align: center;
  320. text {
  321. margin: 0 8rpx;
  322. }
  323. }
  324. .uploadContent {
  325. position: relative;
  326. margin-top: 32rpx;
  327. width: 650rpx;
  328. height: 472rpx;
  329. font-size: 28rpx;
  330. color: #fff;
  331. font-weight: 600;
  332. background: #F3F4F6;
  333. border-radius: 20rpx;
  334. .contentTop {
  335. height: 400rpx;
  336. background-color: #F3F4F6;
  337. position: relative;
  338. .bigImg {
  339. position: absolute;
  340. top: 50%;
  341. left: 50%;
  342. transform: translate(-50%, -50%);
  343. width: 510rpx;
  344. height: 320rpx;
  345. }
  346. .smallImg {
  347. position: absolute;
  348. top: 50%;
  349. left: 50%;
  350. transform: translate(-50%, -50%);
  351. width: 116rpx;
  352. height: 116rpx;
  353. z-index: 1;
  354. }
  355. }
  356. .contentBottom {
  357. width: 650rpx;
  358. height: 72rpx;
  359. line-height: 72rpx;
  360. text-align: center;
  361. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  362. border-radius: 0px 0px 20rpx 20rpx;
  363. }
  364. }
  365. .upload {
  366. margin: 20rpx auto;
  367. width: 690rpx;
  368. // height: 652rpx;
  369. padding: 24rpx 20rpx;
  370. background: #FDFCFE;
  371. box-shadow: 0px 0px 16rpx 0px rgba(0, 0, 0, 0.0400);
  372. border-radius: 24rpx;
  373. box-sizing: border-box;
  374. .title {
  375. font-weight: 500;
  376. font-size: 30rpx;
  377. color: #222222;
  378. text {
  379. color: #FF5B5B;
  380. }
  381. }
  382. }
  383. .form {
  384. padding: 0 30rpx;
  385. margin: 36rpx 30rpx 0;
  386. background-color: #fff;
  387. border-radius: 40rpx ;
  388. background: #fff;
  389. .item {
  390. height: 94rpx;
  391. line-height: 94rpx;
  392. border-bottom: 2rpx solid #F5F5F5;
  393. text {
  394. font-size: 30rpx;
  395. color: #222222;
  396. }
  397. input {
  398. text-align: right;
  399. }
  400. }
  401. }
  402. .top {
  403. padding-top: 44rpx;
  404. text-align: center;
  405. font-size: 36rpx;
  406. font-weight: 600;
  407. image {
  408. width: 102rpx;
  409. height: 60rpx;
  410. }
  411. }
  412. </style>