authentication.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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. //验证的规则
  93. rules:{
  94. phone:{
  95. rule:/^1[3456789]\d{9}$/,
  96. },
  97. mail:{
  98. rule:/^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/,
  99. },
  100. },
  101. //表单检查结果
  102. checkStatus:false,
  103. }
  104. },
  105. onShow() {
  106. let serf = this;
  107. //检查登录,获取token
  108. // let loginRes = this.checkLogin('/pages/index/index', '2');
  109. // if(!loginRes){return false;}
  110. // serf.params.token=loginRes[0];
  111. },
  112. onLoad() {
  113. this.params.type = this.typearray[this.typeindex];
  114. let self = this;
  115. uni.getStorage({
  116. key:'token',
  117. success: function (res) {
  118. self.params.token = res.data;
  119. // console.log(res.data);
  120. }
  121. });
  122. uni.getStorage({
  123. key:'tokenhead',
  124. success: function (res) {
  125. self.params.tokenhead = res.data;
  126. // console.log(res.data);
  127. }
  128. });
  129. },
  130. methods: {
  131. bindPickerChange: function(e) {
  132. console.log('picker发送选择改变,携带值为', e.target.value)
  133. this.typeindex = e.target.value;
  134. this.params.typeindex = e.target.value;
  135. this.params.type = this.typearray[this.params.typeindex];
  136. },
  137. //选择图片
  138. chooseimg() {
  139. let _self = this;
  140. uni.chooseImage({
  141. count: 2,
  142. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  143. sourceType: ['album', 'camera'], //从相册选择
  144. success: function(res) {
  145. const tempFilePaths = res.tempFilePaths;
  146. _self.image = tempFilePaths[0];
  147. console.log("tempFilePaths[0]", tempFilePaths[0]) //能够打印出选中的图片
  148. _self.iconcheck = 1; //点击后图片更改状态由0变成1
  149. console.log('111', JSON.stringify(res.tempFilePaths));
  150. _self.params.media = res.tempFilePaths;
  151. // _self.params.media = _self.params.media.concat(res.tempFilePaths)
  152. console.log(_self.params.media);
  153. },
  154. error: function(e) {
  155. console.log(e);
  156. }
  157. });
  158. },
  159. //点击保存
  160. saveclick(){
  161. // console.log(this.params.type);
  162. // console.log(this.params.typeindex);
  163. // console.log(this.params.certNo);
  164. this.checkStatus = this.check_form();
  165. if(this.checkStatus){
  166. uni.showLoading({
  167. title: '请稍等'
  168. });
  169. let thetoken = this.params.tokenhead+this.params.token;
  170. this.$api.http.put(this.config.apiBaseurl+'/wechat/h5/cert',this.params,{header: {Authorization:thetoken}}).then( res =>{
  171. uni.hideLoading();
  172. uni.showToast({
  173. icon:'success',
  174. title:res.data.message,
  175. duration: 3000
  176. });
  177. console.log(res)
  178. }).catch(err => {
  179. uni.hideLoading();
  180. console.log(err)
  181. });
  182. // setTimeout(function () {
  183. // uni.hideLoading();
  184. // }, 1500);
  185. setTimeout(() => {
  186. uni.showToast({
  187. icon:'success',
  188. title:`保存成功,请等待审核!`,
  189. duration: 2000
  190. });
  191. }, 3000);
  192. setTimeout(() => {
  193. uni.switchTab({
  194. url:'/pages/usercenter/usercenter'
  195. })
  196. }, 3000);
  197. }
  198. },
  199. //表单验证
  200. check_form() {
  201. if(this.params.companyName.length <= 0 && this.params.typeindex == 0) {
  202. uni.showToast({icon:'none',title:`请输入单位/企业名称!`,duration: 2000});
  203. return false;
  204. }
  205. if(this.params.certNo.length <= 0 && this.params.typeindex == 0) {
  206. uni.showToast({icon:'none',title:`请输入邀请码!`,duration: 2000});
  207. return false;
  208. }
  209. if(this.params.typeindex.length <= 0) {
  210. uni.showToast({icon:'none',title:`请输入主体类型!`,duration: 2000});
  211. return false;
  212. }
  213. if(this.params.username.length <= 0) {
  214. uni.showToast({icon:'none',title:`请输入姓名!`,duration: 2000});
  215. return false;
  216. }
  217. if(!this.rules['phone'].rule.test(this.params.phone)) {
  218. uni.showToast({icon:'none',title:`请输入正确手机号码!`,duration: 2000});
  219. return false;
  220. }
  221. if(!this.rules['mail'].rule.test(this.params.mail)) {
  222. uni.showToast({icon:'none',title:`请输入正确邮箱!`,duration: 2000});
  223. return false;
  224. }
  225. if(this.params.address.length <= 0) {
  226. uni.showToast({icon:'none',title:`请输入地址!`,duration: 2000});
  227. return false;
  228. }
  229. // if(this.params.media.length < 2) {
  230. // uni.showToast({icon:'none',title:`请填上传所需资料!`,duration: 2000});
  231. // return false;
  232. // }
  233. return true;
  234. },
  235. }
  236. }
  237. </script>
  238. <style scoped>
  239. /* @import url("./authentication.css"); */
  240. </style>