perfect.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <template>
  2. <view class="perfect">
  3. <u-toast ref="uToast" />
  4. <view class="head">
  5. 完善信息
  6. <view class="msg">温馨提示:输入姓名要和开户人姓名保持一致。</view>
  7. </view>
  8. <view class="con">
  9. <view class="form">
  10. <view class="input flex">
  11. <view class="icon">
  12. <image src="../../static/img/li1.png" mode=""></image>
  13. </view>
  14. <u-input v-model="name" :clearable="false" type="text" :border="border" placeholder="请输入姓名" />
  15. </view>
  16. <view class="input flex">
  17. <view class="icon">
  18. <image src="../../static/img/li2.png" mode=""></image>
  19. </view>
  20. <u-input v-model="card" maxlength="18" :clearable="false" type="text" :border="border" placeholder="请输入身份证号" />
  21. </view>
  22. <!-- <view class="input flex">
  23. <view class="icon">
  24. <image src="../../static/img/li3.png" mode=""></image>
  25. </view>
  26. <u-input v-model="phone" :clearable="false" type="number" :border="border" placeholder="请输入联系电话" />
  27. </view> -->
  28. <!-- <view class="input flex">
  29. <view class="icon">
  30. <image src="../../static/img/li4.png" mode=""></image>
  31. </view>
  32. <u-input v-model="contactInformation" :clearable="false" type="text" :border="border" placeholder="请输入联系方式" />
  33. </view> -->
  34. <view class="input flex">
  35. <view class="icon">
  36. <image src="../../static/img/li5.png" mode=""></image>
  37. </view>
  38. <u-input v-model="dwname" :clearable="false" type="text" :border="border" placeholder="请输入单位名称" />
  39. </view>
  40. <view class="input flex">
  41. <view class="icon">
  42. <image src="../../static/img/li6.png" mode=""></image>
  43. </view>
  44. <u-input v-model="ksname" :clearable="false" type="text" :border="border" placeholder="请输入科室名称" />
  45. </view>
  46. <view class="updata">
  47. <view class="text">请上传医师执照或工牌照片 </view>
  48. <u-upload ref="uUpload1" :show-progress="false" :file-list="fileList" @on-change="progress1" :action="action" max-count="1"></u-upload>
  49. </view>
  50. </view>
  51. <view class="form form1">
  52. <view class="input flex">
  53. <view class="icon">
  54. <image src="../../static/img/li7.png" mode=""></image>
  55. </view>
  56. <u-input v-model="backCard" :clearable="false" type="number" :border="border" placeholder="请输入银行账户卡号" />
  57. </view>
  58. <view class="input flex">
  59. <view class="icon">
  60. <image src="../../static/img/li1.png" mode=""></image>
  61. </view>
  62. <u-input v-model="cardholderName" :clearable="false" type="text" :border="border" placeholder="请输入持卡人姓名" />
  63. </view>
  64. <view class="input flex">
  65. <view class="icon">
  66. <image src="../../static/img/li8.png" mode=""></image>
  67. </view>
  68. <u-input v-model="cardholderPhone" maxlength="11" :clearable="false" type="number" :border="border" placeholder="请输入银行预留手机号" />
  69. </view>
  70. <view class="input flex">
  71. <view class="icon">
  72. <image src="../../static/img/li4.png" mode=""></image>
  73. </view>
  74. <u-input v-model="backName" :clearable="false" type="text" :border="border" placeholder="请输入开户行" />
  75. </view>
  76. </view>
  77. </view>
  78. <view class="btn" @click="completeInformation()">
  79. <view class="btn_con">完成</view>
  80. </view>
  81. </view>
  82. </template>
  83. <script>
  84. export default {
  85. data() {
  86. return {
  87. // 演示地址,请勿直接使用
  88. action: 'http://www.example.com/upload',
  89. fileList: [],
  90. name: '',
  91. card: '',
  92. phone: '',
  93. contactInformation: '',
  94. dwname: '',
  95. ksname: '',
  96. backCard: '',
  97. backName: '',
  98. cardholderName: '',
  99. cardholderPhone: '',
  100. data: {
  101. id: '',
  102. name: '',
  103. card: '',
  104. phone: '',
  105. contactInformation: '',
  106. dwname: '',
  107. ksname: '',
  108. backCard: '',
  109. backName: '',
  110. cardholderName: '',
  111. cardholderPhone: '',
  112. cardPic: '',
  113. completeInformation: "2"
  114. },
  115. }
  116. },
  117. onLoad(option) {
  118. this.action = this.$httpUrl + '/api/uploadLocality'
  119. this.getUserInfo()
  120. },
  121. methods: {
  122. progress1(res, index, lists, name) {
  123. // console.log(JSON.parse(res.data))
  124. if (JSON.parse(res.data).code == 0) {
  125. this.$refs.uToast.show({
  126. title: JSON.parse(res.data).msg,
  127. type: 'error ',
  128. })
  129. this.$refs.uUpload1.clear()
  130. }
  131. },
  132. getUserInfo() {
  133. this.$http.getUserInfo()
  134. .then(res => {
  135. if (res.data.code == 200) {
  136. let data = res.data.result
  137. console.log()
  138. if (data.cardPic) {
  139. this.fileList = [{ url: data.cardPic, }]
  140. }
  141. this.data.id = data.id
  142. this.name = data.name
  143. this.card = data.card
  144. // console.log(this.card);
  145. this.phone = data.phone
  146. this.contactInformation = data.contactInformation
  147. this.dwname = data.dwname
  148. this.ksname = data.ksname
  149. this.backCard = data.backCard
  150. this.backName = data.backName
  151. this.cardholderName = data.cardholderName
  152. this.cardholderPhone = data.cardholderPhone
  153. }
  154. })
  155. },
  156. completeInformation() {
  157. let files1 = [];
  158. // 通过filter,筛选出上传进度为100的文件(因为某些上传失败的文件,进度值不为100,这个是可选的操作)
  159. files1 = this.$refs.uUpload1.lists.filter(val => {
  160. return val.progress == 100;
  161. })
  162. // console.log(files1)
  163. let values = []
  164. if (files1.length != 0) {
  165. if (files1[0].response) {
  166. values = files1.map(item => item.response.result)
  167. } else {
  168. values = files1.map(item => item.url)
  169. }
  170. }
  171. // if(files1.length==0){
  172. // this.$refs.uToast.show({ title: '上传执照或工牌', type: 'error ', })
  173. // return;
  174. // }
  175. if (!this.name) {
  176. this.$refs.uToast.show({ title: '请输入姓名', type: 'error ', })
  177. return;
  178. }
  179. // console.log(this.card);
  180. if (this.card) {
  181. if (!this.$checkId(this.card)) {
  182. this.$refs.uToast.show({
  183. title: '请输入正确身份证格式',
  184. type: 'error ',
  185. })
  186. return;
  187. }
  188. }
  189. // if(this.phone==''){
  190. // this.$refs.uToast.show({ title: '请输入手机号', type: 'error ', })
  191. // return;
  192. // }
  193. // if(!this.$checkMobile(this.phone)){
  194. // this.$refs.uToast.show({
  195. // title: '请输入正确手机号的格式',
  196. // type: 'error ',
  197. // })
  198. // return;
  199. // }
  200. // if(this.contactInformation==''){
  201. // this.$refs.uToast.show({ title: '请输入联系方式', type: 'error ', })
  202. // return;
  203. // }
  204. // if (!this.dwname) {
  205. // this.$refs.uToast.show({ title: '请输入单位名称', type: 'error ', })
  206. // return;
  207. // }
  208. // if (!this.ksname) {
  209. // this.$refs.uToast.show({ title: '请输入科室名称', type: 'error ', })
  210. // return;
  211. // }
  212. // return
  213. this.data.name = this.name
  214. this.data.card = this.card
  215. this.data.phone = this.phone
  216. this.data.contactInformation = this.contactInformation
  217. this.data.dwname = this.dwname
  218. this.data.ksname = this.ksname
  219. this.data.backCard = this.backCard
  220. this.data.backName = this.backName
  221. this.data.cardholderName = this.cardholderName
  222. this.data.cardholderPhone = this.cardholderPhone
  223. this.data.cardPic = values.join(',')
  224. this.$http.completeInformation(this.data)
  225. .then(res => {
  226. if (res.data.code == 200) {
  227. this.$refs.uToast.show({
  228. title: '保存完成',
  229. })
  230. uni.navigateTo({
  231. url: '/pages/index/index',
  232. })
  233. }
  234. })
  235. }
  236. }
  237. }
  238. </script>
  239. <style lang="scss">
  240. .perfect {
  241. position: relative;
  242. padding-bottom: 30rpx;
  243. .head {
  244. box-sizing: border-box;
  245. height: 432rpx;
  246. background: linear-gradient(220deg, #24B8FF 0%, $color 100%);
  247. border-radius: 0px 0px 120rpx 0px;
  248. padding: 160rpx 48rpx 0;
  249. font-size: 56rpx;
  250. color: #fff;
  251. .msg {
  252. font-size: 24rpx;
  253. color: #fff;
  254. margin-top: 12rpx;
  255. }
  256. }
  257. .con {
  258. position: relative;
  259. top: -140rpx;
  260. padding: 0 48rpx;
  261. .form {
  262. box-sizing: border-box;
  263. background-color: #fff;
  264. border-radius: 24rpx;
  265. padding: 0 48rpx;
  266. .icon {
  267. margin-right: 20rpx;
  268. image {
  269. width: 40rpx;
  270. height: 40rpx;
  271. }
  272. }
  273. }
  274. .form1 {
  275. margin-top: 24rpx;
  276. .input:last-child {
  277. border-bottom: 0;
  278. }
  279. }
  280. .u-add-tips {
  281. display: none;
  282. }
  283. .updata {
  284. .text {
  285. font-size: 28rpx;
  286. color: rgba(0, 0, 0, 0.35);
  287. margin: 36rpx 0;
  288. }
  289. }
  290. }
  291. .btn {
  292. position: fixed;
  293. bottom: 0;
  294. text-align: center;
  295. z-index: 11;
  296. width: 100%;
  297. padding: 12rpx 0;
  298. background-color: #fff;
  299. .btn_con {
  300. width: 680rpx;
  301. margin: 0 auto;
  302. font-size: 32rpx;
  303. padding: 30rpx 0;
  304. background-color: $color;
  305. border-radius: 48rpx;
  306. color: #fff;
  307. }
  308. }
  309. }
  310. </style>