authentication.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <template>
  2. <view class="pages">
  3. <view class="form-item-type nomal-top">
  4. <view class="form-item">
  5. <view class="form-item-til">主体类型</view>
  6. <view class="form-item-con">
  7. <picker @change="bindPickerChange" :value="typeindex" :range="typearray">
  8. <view class="uni-input">{{typearray[typeindex]}}</view>
  9. </picker>
  10. <!-- <input type="text" placeholder="请输入主体类型" v-model="params.type" value="" /> -->
  11. </view>
  12. </view>
  13. <view class="form-item" v-if="typeindex==0">
  14. <view class="form-item-til">主体名称</view>
  15. <view class="form-item-con">
  16. <input type="text" placeholder="请输入单位/企业名称" v-model="params.companyName" value="" />
  17. </view>
  18. </view>
  19. <view class="form-item" v-if="typeindex==0">
  20. <view class="form-item-til">邀请码</view>
  21. <view class="form-item-con">
  22. <input type="text" placeholder="请输入邀请码" v-model="params.certNo" value="" />
  23. </view>
  24. </view>
  25. <view class="form-item">
  26. <view class="form-item-til">联系人</view>
  27. <view class="form-item-con">
  28. <input type="text" placeholder=" 请输入姓名" v-model="params.username" value="" />
  29. </view>
  30. </view>
  31. <view class="form-item">
  32. <view class="form-item-til">手机号码</view>
  33. <view class="form-item-con">
  34. <input type="text" placeholder="请输入手机号码" maxlength="11" v-model="params.phone" value="" />
  35. </view>
  36. </view>
  37. <view class="form-item">
  38. <view class="form-item-til">邮箱</view>
  39. <view class="form-item-con">
  40. <input type="text" placeholder="请输入邮箱" v-model="params.mail" value="" />
  41. </view>
  42. </view>
  43. <view class="form-item">
  44. <view class="form-item-til">地址</view>
  45. <view class="form-item-con">
  46. <input type="text" placeholder="请输入地址" v-model="params.address" value="" />
  47. </view>
  48. </view>
  49. </view>
  50. <!-- form-item-type end -->
  51. <!-- <view class="form-item-type nomal-top">
  52. <view class="form-item upfile">
  53. <view class="form-item-til">资料上传<text class="form-item-til-tip">(营业执照及其他证明材料)</text></view>
  54. <view class="form-item-con">
  55. <view class="form-item-chooseIMGs-wrap">
  56. <image v-for="(item,index) in params.media" :key="index" :src="item" class="choosedIMG" ></image>
  57. </view>
  58. <view class="chooseIMG-btn">
  59. <image class="chooseIMG-btn-img" @click="chooseimg" src="/static/img/icon-upload.png"></image>
  60. </view>
  61. </view>
  62. </view>
  63. </view> -->
  64. <!-- form-item-type end -->
  65. <view class="page-tip">
  66. <text class="page-tip-til">特别提示:</text>提交材料后,管理员将审核您的信息,如核实无误将进行认证。
  67. </view>
  68. <view class="bottom-btn-wrap">
  69. <button class="bottom-btn" @click="saveclick" type="primary">保存</button>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. export default {
  75. data() {
  76. return {
  77. params:{
  78. token:'',
  79. tokenhead:'',
  80. companyName:'',
  81. type:'',
  82. username:'',
  83. phone:'',
  84. mail:'',
  85. address:'',
  86. // media:[],
  87. typeindex:0,
  88. certNo:'',
  89. },
  90. typeindex:0,
  91. // typearray:['供应商','农户'],
  92. typearray:['供应商'],
  93. //验证的规则
  94. rules:{
  95. phone:{
  96. rule:/^1[3456789]\d{9}$/,
  97. },
  98. mail:{
  99. rule:/^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/,
  100. },
  101. },
  102. //表单检查结果
  103. checkStatus:false,
  104. }
  105. },
  106. onShow() {
  107. let serf = this;
  108. //检查登录,获取token
  109. // let loginRes = this.checkLogin('/pages/index/index', '2');
  110. // if(!loginRes){return false;}
  111. // serf.params.token=loginRes[0];
  112. },
  113. onLoad() {
  114. this.params.type = this.typearray[this.typeindex];
  115. let self = this;
  116. uni.getStorage({
  117. key:'token',
  118. success: function (res) {
  119. self.params.token = res.data;
  120. // console.log(res.data);
  121. }
  122. });
  123. uni.getStorage({
  124. key:'tokenhead',
  125. success: function (res) {
  126. self.params.tokenhead = res.data;
  127. // console.log(res.data);
  128. }
  129. });
  130. },
  131. methods: {
  132. bindPickerChange: function(e) {
  133. console.log('picker发送选择改变,携带值为', e.target.value)
  134. this.typeindex = e.target.value;
  135. this.params.typeindex = e.target.value;
  136. this.params.type = this.typearray[this.params.typeindex];
  137. },
  138. //选择图片
  139. chooseimg() {
  140. let _self = this;
  141. uni.chooseImage({
  142. count: 2,
  143. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  144. sourceType: ['album', 'camera'], //从相册选择
  145. success: function(res) {
  146. const tempFilePaths = res.tempFilePaths;
  147. _self.image = tempFilePaths[0];
  148. console.log("tempFilePaths[0]", tempFilePaths[0]) //能够打印出选中的图片
  149. _self.iconcheck = 1; //点击后图片更改状态由0变成1
  150. console.log('111', JSON.stringify(res.tempFilePaths));
  151. _self.params.media = res.tempFilePaths;
  152. // _self.params.media = _self.params.media.concat(res.tempFilePaths)
  153. console.log(_self.params.media);
  154. },
  155. error: function(e) {
  156. console.log(e);
  157. }
  158. });
  159. },
  160. //点击保存
  161. saveclick(){
  162. // console.log(this.params.type);
  163. // console.log(this.params.typeindex);
  164. // console.log(this.params.certNo);
  165. this.checkStatus = this.check_form();
  166. if(this.checkStatus){
  167. uni.showLoading({
  168. title: '请稍等'
  169. });
  170. let thetoken = this.params.tokenhead+this.params.token;
  171. this.$api.http.put(this.config.apiBaseurl+'/wechat/h5/cert',this.params,{header: {Authorization:thetoken}}).then( res =>{
  172. uni.hideLoading();
  173. uni.showToast({
  174. icon:'success',
  175. title:res.data.message,
  176. duration: 3000
  177. });
  178. console.log(res)
  179. }).catch(err => {
  180. uni.hideLoading();
  181. console.log(err)
  182. });
  183. // setTimeout(function () {
  184. // uni.hideLoading();
  185. // }, 1500);
  186. setTimeout(() => {
  187. uni.showToast({
  188. icon:'success',
  189. title:`保存成功,请等待审核!`,
  190. duration: 2000
  191. });
  192. }, 3000);
  193. setTimeout(() => {
  194. uni.switchTab({
  195. url:'/pages/usercenter/usercenter'
  196. })
  197. }, 3000);
  198. }
  199. },
  200. //表单验证
  201. check_form() {
  202. if(this.params.companyName.length <= 0 && this.params.typeindex == 0) {
  203. uni.showToast({icon:'none',title:`请输入单位/企业名称!`,duration: 2000});
  204. return false;
  205. }
  206. if(this.params.certNo.length <= 0 && this.params.typeindex == 0) {
  207. uni.showToast({icon:'none',title:`请输入邀请码!`,duration: 2000});
  208. return false;
  209. }
  210. if(this.params.typeindex.length <= 0) {
  211. uni.showToast({icon:'none',title:`请输入主体类型!`,duration: 2000});
  212. return false;
  213. }
  214. if(this.params.username.length <= 0) {
  215. uni.showToast({icon:'none',title:`请输入姓名!`,duration: 2000});
  216. return false;
  217. }
  218. if(!this.rules['phone'].rule.test(this.params.phone)) {
  219. uni.showToast({icon:'none',title:`请输入正确手机号码!`,duration: 2000});
  220. return false;
  221. }
  222. if(!this.rules['mail'].rule.test(this.params.mail)) {
  223. uni.showToast({icon:'none',title:`请输入正确邮箱!`,duration: 2000});
  224. return false;
  225. }
  226. if(this.params.address.length <= 0) {
  227. uni.showToast({icon:'none',title:`请输入地址!`,duration: 2000});
  228. return false;
  229. }
  230. // if(this.params.media.length < 2) {
  231. // uni.showToast({icon:'none',title:`请填上传所需资料!`,duration: 2000});
  232. // return false;
  233. // }
  234. return true;
  235. },
  236. }
  237. }
  238. </script>
  239. <style scoped>
  240. /* @import url("./authentication.css"); */
  241. </style>