info.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="cmain">
  3. <view class="form_group">
  4. <view class="lable re">企业名称</view>
  5. <input type="text" placeholder="请输入" v-model="item.name" :disabled="item.judgeStatus==1?true:false" />
  6. </view>
  7. <!-- <view class="form_group">
  8. <view class="lable re">税号</view>
  9. <input type="text" placeholder="请输入" v-model="item.dutyParagraph" :disabled="item.judgeStatus==1?true:false"/>
  10. </view> -->
  11. <view class="form_group">
  12. <view class="lable re">姓名</view>
  13. <input type="text" placeholder="请输入" v-model="item.legalPerson" :disabled="item.judgeStatus==1?true:false" />
  14. </view>
  15. <view class="form_group">
  16. <view class="lable re">身份证号</view>
  17. <input type="text" maxlength="18" placeholder="请输入" v-model="item.idCard" :disabled="item.judgeStatus==1?true:false" />
  18. </view>
  19. <view class="form_group">
  20. <view class="lable re">联系号码</view>
  21. <input type="text" maxlength="11" placeholder="请输入" v-model="item.contact" :disabled="item.judgeStatus==1?true:false" />
  22. </view>
  23. <view class="form_group">
  24. <view class="lable re">银行账号</view>
  25. <input type="text" maxlength="16" placeholder="请输入" v-model="item.bankAccount" :disabled="item.judgeStatus==1?true:false" />
  26. </view>
  27. <!-- <view class="form_group">
  28. <view class="lable re">地址</view>
  29. <input type="text" placeholder="请输入" v-model="item.address" :disabled="item.judgeStatus==1?true:false" />
  30. </view> -->
  31. <!-- <view class="form_group">
  32. <view class="lable re">法人身份证</view>
  33. <card v-model="item.pic" pic="../../../static/images/yyzz.png"></card>
  34. </view> -->
  35. <view class="form_group" v-if="item.type==1">
  36. <view class="lable re">营业执照</view>
  37. <card v-model="item.businessLicense" pic="../../../static/images/yyzz.png"></card>
  38. </view>
  39. <button class="btn" @click="save()" v-if="item.judgeStatus != 1">提交审核</button>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. item: {},
  47. param: {},
  48. };
  49. },
  50. onLoad(e) {
  51. this.param.appUserId = this.getUser().id
  52. this.http.request({
  53. url: '/level-two-server/app/TbPurchaser/info',
  54. data: this.param,
  55. success: res => {
  56. if (res.data.data) {
  57. this.item = res.data.data;
  58. uni.setNavigationBarTitle({ title: '我的认证资料' });
  59. } else {
  60. uni.setNavigationBarTitle({ title: '填写认证资料' });
  61. }
  62. }
  63. });
  64. },
  65. methods: {
  66. save() {
  67. let rule = [
  68. { name: 'name', checkType: 'notnull', errorMsg: '请输入企业名称' },
  69. { name: 'dutyParagraph', checkType: 'notnull', errorMsg: '请输入税号' },
  70. { name: 'corporateName', checkType: 'notnull', errorMsg: '请输入法人姓名' },
  71. { name: 'businessLicense', checkType: 'notnull', errorMsg: '请上传营业执照' }
  72. ];
  73. if (!this.verify.check(this.item, rule)) {
  74. uni.showModal({ content: this.verify.error, showCancel: false });
  75. return false;
  76. }
  77. this.item.loginUserId = this.getUser().id
  78. this.http.request({
  79. url: '/level-two-server/app/TbPurchaser/identification',
  80. method: 'POST',
  81. data: this.item,
  82. contentType: 'application/json;charset=UTF-8',
  83. success: res => {
  84. uni.showToast({ title: '提交成功' });
  85. uni.$emit('purchaserAuth');
  86. uni.navigateBack();
  87. }
  88. });
  89. }
  90. }
  91. };
  92. </script>
  93. <style lang="scss">
  94. .btn {
  95. margin-top: 25px;
  96. }
  97. </style>