driverIdentityEdit.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  1. <template>
  2. <view class="center">
  3. <view>
  4. <view>
  5. <view style="margin: 0 auto;" v-if="id != ''" @click="idUp">
  6. <image v-bind:src = "id1" class="picture"></image>
  7. </view>
  8. <view style="margin: 0 auto;" v-if="id2 != ''" @click="idLow">
  9. <image v-bind:src = "id2" class="picture"></image>
  10. </view>
  11. </view>
  12. <view class="personalcss">
  13. <view class="c-row b-b">
  14. <text class="tit">姓名</text>
  15. <view class="con-list">
  16. <input placeholder="请填写姓名" name="input" v-model="DriverViewInfo.driverName"></input>
  17. </view>
  18. </view>
  19. <view class="c-row b-b">
  20. <text class="tit">身份证号</text>
  21. <view class="con-list">
  22. <input placeholder="请填写身份证号" name="input" v-model="DriverViewInfo.numberCard"></input>
  23. </view>
  24. </view>
  25. <view class="c-row b-b">
  26. <text class="tit">手机号</text>
  27. <view class="con-list">
  28. <input placeholder="请填写手机号" name="input" v-model="DriverViewInfo.driverPhone"></input>
  29. </view>
  30. </view>
  31. <view style='width:100%;border-bottom:1px solid #E8E9ED;position:relative;padding:10px;' class="flex">
  32. <button :class='codestatus&&!sendDisabled?"active":""' @click='getcode'
  33. class='getcode'>{{sendText}}</button>
  34. <view style='width:70%;position:relative;margin-left: 200px;'>
  35. <view class="con-list">
  36. <!-- style='width:70%;position:relative;margin-left: 200px;' -->
  37. <input v-model='verifyCode' placeholder="请输入验证码" type="text">
  38. </view>
  39. </view>
  40. </view>
  41. <view class="c-row b-b">
  42. <text class="tit">常驻城市</text>
  43. <view class="con-list">
  44. <input placeholder="请填写常驻城市" name="input" v-model="DriverViewInfo.residentCityProvincial"></input>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- 车辆信息 -->
  50. <view class="information">
  51. <view class="c-row">
  52. <text class="tit" style="line-height: 36px;">货车信息</text>
  53. <view class="con-list">
  54. <image v-bind:src="opencar" class="open" opencarboolean @click="opencarclick" ></image>
  55. </view>
  56. </view>
  57. </view>
  58. <view class="informations" v-if="opencarboolean == true" v-for="(item , index) in driverCarInfoList"
  59. :Key="index">
  60. <view class="c-row ">
  61. <text class="tit">车辆 -{{index+1}}</text>
  62. <view class="con-list">
  63. <image src="../../static/img/jiaoyi/shanchu@2x.png" class="eliminate" @click="carDel(index)" ></image>
  64. </view>
  65. </view>
  66. <view class="c-row b-b">
  67. <text class="tit">车牌号</text>
  68. <view class="con-list">
  69. <input placeholder="请填写车牌号" name="input" v-model="item.carNumber"></input>
  70. </view>
  71. </view>
  72. <view class="c-row b-b">
  73. <text class="tit">车型</text>
  74. <picker @change="ModelChange" :value="ModelIndex" :range="ModelType" class="con-list">
  75. <view class="picker " v-model="item.carModel">
  76. {{ModelIndex>-1?ModelType[ModelIndex]:'请选择车型'}}
  77. </view>
  78. </picker>
  79. <!-- </view> -->
  80. </view>
  81. <view class="c-row b-b">
  82. <text class="tit">不含车头车长(米)</text>
  83. <picker @change="carLongChange" :value="carLongIndex" :range="carLongType" class="con-list">
  84. <view class="picker" v-model="item.carLength">
  85. {{carLongIndex>-1?carLongType[carLongIndex]:'请选择车长'}}
  86. </view>
  87. </picker>
  88. </view>
  89. <view class="c-row b-b">
  90. <text class="tit">载重(吨)</text>
  91. <view class="con-list">
  92. <input placeholder="请填写载重(吨)" name="input" v-model="item.carLoad"></input>
  93. </view>
  94. </view>
  95. <view class="c-row ">
  96. <text class="tit">出厂年份</text>
  97. <view class="con-list">
  98. <input placeholder="请填写出厂年份" name="input" v-model="item.yearManufacture"></input>
  99. </view>
  100. </view>
  101. </view>
  102. <button class="btn" v-if="opencarboolean == true" @click="carAdd">
  103. <image src="../../static/img/jiaoyi/ic_fabu@3x.png" class="add" style="top: 8px;"></image>
  104. <texe>添加车辆</texe>
  105. </button>
  106. <!-- 账户信息 -->
  107. <view class="information">
  108. <view class="c-row">
  109. <text class="tit" style="line-height: 36px;">账户信息</text>
  110. <view class="con-list">
  111. <image v-bind:src="openuser" class="open" openuserboolean @click="openuserclick"></image>
  112. </view>
  113. </view>
  114. </view>
  115. <view class="informations" v-if="openuserboolean == true" v-for="(items , index) in driverPayeeInfoList"
  116. :Key="index">
  117. <!-- <view class="labels"> 账户 -?</view> -->
  118. <view class="c-row ">
  119. <text class="tit">账户 -{{index+1}}</text>
  120. <view class="con-list">
  121. <image src="../../static/img/jiaoyi/shanchu@2x.png" class="eliminate" @click="userDel(index)"></image>
  122. </view>
  123. </view>
  124. <view class="c-row b-b">
  125. <text class="tit">账户类型</text>
  126. <view class="con-list">
  127. <input placeholder="请填写账户类型" name="input" v-model="items.accountType"></input>
  128. </view>
  129. </view>
  130. <view class="c-row b-b">
  131. <text class="tit">银行卡照片(可选)</text>
  132. <view class="con-list">
  133. <!-- <input placeholder="请上传照片" name="input" v-model="items.payeeAddressUrl" @clisk="bankimg(items)"></input> -->
  134. <view v-if="bankimg == ''" @click="bankimgs(index)">请上传照片</view>
  135. <view v-if="bankimg != ''" @click="bankimgs(index)">
  136. <image v-bind:src="bankimg" style="width: 40px; height: 40px;"></image>
  137. </view>
  138. </view>
  139. </view>
  140. <view class="c-row b-b">
  141. <text class="tit">银行卡号</text>
  142. <view class="con-list">
  143. <input placeholder="请输入银行卡号" name="input" v-model="items.bankCard"></input>
  144. </view>
  145. </view>
  146. <view class="c-row b-b">
  147. <text class="tit">开户行</text>
  148. <view class="con-list">
  149. <input placeholder="请输入开户行" name="input" v-model="items.bankDeposit"></input>
  150. </view>
  151. </view>
  152. <view class="c-row b-b">
  153. <text class="tit">开户支行</text>
  154. <picker @change="bankChange" :value="bankIndex" :range="bankType" class="con-list">
  155. <view class="con-list">
  156. {{bankIndex>-1?bankType[bankIndex]:'请选择开户支行'}}
  157. </view>
  158. </picker>
  159. </view>
  160. <view class="c-row b-b">
  161. <text class="tit">收款人姓名</text>
  162. <view class="con-list">
  163. <input placeholder="请输入收款人姓名" name="input" v-model="items.payeeName"></input>
  164. </view>
  165. </view>
  166. <view class="c-row ">
  167. <text class="tit">收款人身份证号</text>
  168. <view class="con-list">
  169. <input placeholder="请输入收款人身份证号" name="input" v-model="items.payeeNumberCard"></input>
  170. </view>
  171. </view>
  172. </view>
  173. <button class="btn" v-if="openuserboolean == true" @click="userAdd()">
  174. <image src="../../static/img/jiaoyi/ic_fabu@3x.png" class="add" style="top: 8px;"></image>
  175. <text style="margin-top: -2px;">添加账户</text>
  176. </button>
  177. <view class="fujians" v-if="travels != ''" @click="travel">
  178. <view class="c-row b-b">
  179. <text class="picturebiaoti">行驶证</text>
  180. </view>
  181. <image v-bind:src="travels" class="picture"></image>
  182. </view>
  183. <view class="fujians" v-if="drives != ''" @click="drive">
  184. <view class="c-row b-b">
  185. <text class="picturebiaoti">驾驶证</text>
  186. </view>
  187. <image v-bind:src="drives" class="picture"></image>
  188. </view>
  189. <view class="fujians" v-if="operates != ''" @click="operate">
  190. <view class="c-row b-b">
  191. <text class="picturebiaoti">道路运营证</text>
  192. </view>
  193. <image v-bind:src="operates" class="picture"></image>
  194. </view>
  195. <view class="fujians" v-if="practices != ''" @click="practice">
  196. <view class="c-row b-b">
  197. <text class="picturebiaoti">从业资格证</text>
  198. </view>
  199. <image v-bind:src="practices" class="picture"></image>
  200. </view>
  201. <button class="btn btns" @click="commitEdit">修改</button>
  202. </view>
  203. </view>
  204. </template>
  205. <script>
  206. import {
  207. mapState
  208. } from 'vuex';
  209. export default {
  210. data() {
  211. return {
  212. goods:{},
  213. ModelIndex:'高栏',
  214. Model:'',
  215. ModelType:["高栏","集装箱","自卸车"],
  216. carLong:'',
  217. carLongType:['13','9.6','8.2','8.7','11.7','12.5','13.7','15','16','17.5'],
  218. id:[],
  219. id1:"",
  220. id2:"",
  221. travels:"",
  222. drives:"",
  223. operates:"",
  224. practices:"",
  225. // bank1:"",
  226. // bank2:"",
  227. // bankid:[],
  228. sendText: '获取验证码',
  229. sendDisabled: false,
  230. sendText: '获取验证码',
  231. ModelIndex: '高栏',
  232. Model: '',
  233. ModelType: ["高栏", "集装箱", "自卸车"],
  234. carLong: '',
  235. carLongIndex:0,
  236. carLongType: ['13', '9.6', '8.2', '8.7', '11.7', '12.5', '13.7', '15', '16', '17.5'],
  237. driverCarInfoList: [],
  238. driverPayeeInfoList: [],
  239. DriverViewInfo: {
  240. driverCarInfoList: [],
  241. driverPayeeInfoList: [],
  242. },
  243. verifyCode:"",
  244. codestatus:false,
  245. customerPhone: '',
  246. addressUrl:[],
  247. opencarboolean:false,
  248. openuserboolean:false,
  249. opencar: "../../static/img/authentication/down2@3x.png",
  250. openuser: "../../static/img/authentication/down2@3x.png",
  251. bankimg:"",
  252. bankImgs1:{},
  253. bankIndex:-1,
  254. bankType:[],
  255. }
  256. },
  257. computed: {
  258. ...mapState(['hasLogin','userInfo'])
  259. },
  260. onLoad(option){
  261. this.getList(option.id)
  262. },
  263. methods: {
  264. carAdd() {
  265. this.driverCarInfoList.push({
  266. carNumber: '',
  267. carModel: "",
  268. carLength: "",
  269. carLoad: "",
  270. yearManufacture: "",
  271. })
  272. },
  273. userAdd() {
  274. this.driverPayeeInfoList.push({
  275. accountType:"",
  276. cardAddressUrl:"",
  277. bankCard:"",
  278. bankDeposit:"",
  279. bankDepositBranch:"",
  280. payeeName:"",
  281. payeeNumberCard:"",
  282. })
  283. },
  284. carDel(index) {
  285. if (this.driverCarInfoList.length > 1) {
  286. this.driverCarInfoList.splice(index, 1)
  287. }
  288. },
  289. userDel(index) {
  290. if (this.driverPayeeInfoList.length > 1) {
  291. this.driverPayeeInfoList.splice(index, 1)
  292. }
  293. },
  294. opencarclick() {
  295. if (this.opencarboolean == false) {
  296. this.opencarboolean = true;
  297. this.opencar = "../../static/img/authentication/up2%20(3).png"
  298. } else if (this.opencarboolean == true) {
  299. this.opencarboolean = false;
  300. this.opencar = "../../static/img/authentication/down2@3x.png"
  301. }
  302. },
  303. openuserclick() {
  304. if (this.openuserboolean == false) {
  305. this.openuserboolean = true;
  306. this.openuser = "../../static/img/authentication/up2%20(3).png"
  307. } else if (this.openuserboolean == true) {
  308. this.openuserboolean = false;
  309. this.openuser = "../../static/img/authentication/down2@3x.png"
  310. }
  311. },
  312. openfujianclick(){
  313. if (this.openfujianboolean == false) {
  314. this.openfujianboolean = true;
  315. this.openfujian = "../../static/img/authentication/up2%20(3).png"
  316. } else if (this.openfujianboolean == true) {
  317. this.openfujianboolean = false;
  318. this.openfujian = "../../static/img/authentication/down2@3x.png"
  319. }
  320. },
  321. bankChange(e) {
  322. console.log(e,"e是神恶魔")
  323. this.bankIndex = e.detail.value
  324. this.Model = this.bankType[this.bankIndex];
  325. this.driverPayeeInfoList[index].bankDepositBranch = this.bankType[this.bankIndex];
  326. },
  327. getList(ids) {
  328. this.$api.doRequest('get', '/driverViewInfo/getDriver', {
  329. id: ids
  330. }, 'application/json;charset=UTF-8').then(res => {
  331. console.log("成功连接")
  332. this.procurementPlanInfos = res.data.data
  333. this.DriverViewInfo = res.data.data
  334. this.driverCarInfoList = this.DriverViewInfo.driverCarInfoList
  335. this.driverPayeeInfoList = this.DriverViewInfo.driverPayeeInfoList
  336. this.addressUrl =this.DriverViewInfo.addressUrl.split(",")
  337. console.log(this.driverPayeeInfoList,"dsfds")
  338. this.drivers = res.data.data
  339. if (this.drivers.cardAddressUrl != "") {
  340. this.id = this.drivers.cardAddressUrl.split(","),
  341. this.id1 = this.id[0]
  342. this.id2 = this.id[1]
  343. }
  344. if (this.drivers.addressUrl != "") {
  345. this.address = this.drivers.addressUrl.split(","),
  346. this.travels = this.address[0]
  347. this.drives = this.address[1]
  348. this.operates = this.address[2]
  349. this.practices = this.address[3]
  350. }
  351. })
  352. .catch(res => {
  353. uni.showToast({
  354. title: res.errmsg,
  355. icon: 'none',
  356. duration: 2000
  357. })
  358. });
  359. },
  360. commitEdit() {
  361. console.log(this.addressUrl,"数组")
  362. this.DriverViewInfo.addressUrl = this.addressUrl.toString()
  363. console.log(this.DriverViewInfo.addressUrl,"字符串")
  364. this.DriverViewInfo.driverCarInfoList = this.driverCarInfoList
  365. this.DriverViewInfo.driverPayeeInfoList = this.driverPayeeInfoList
  366. this.DriverViewInfo.commonId = this.userInfo.id
  367. this.DriverViewInfo.cardAddressUrl = this.id.toString()
  368. this.DriverViewInfo.pcFlag = 0
  369. this.DriverViewInfo.compId = "2710b21efc1e4393930c5dc800010dc4"
  370. console.log(this.DriverViewInfo,"司机对象")
  371. this.$api.doRequest('post', '/driverViewInfo/api/editInfo', this.DriverViewInfo).then(res => {
  372. }).catch(res => {
  373. uni.showToast({
  374. title: res.data.message,
  375. icon: 'none',
  376. duration: 2000
  377. })
  378. })
  379. },
  380. bankimgs(items){
  381. console.log(items)
  382. var that = this
  383. wx.chooseImage({
  384. success: function(res) {
  385. wx.uploadFile({
  386. url: 'https://www.zthymaoyi.com/upload/admin',
  387. filePath: res.tempFilePaths[0],
  388. name: 'file',
  389. success(res) {
  390. var data = res.data
  391. var strToObj = JSON.parse(data)
  392. // that.id[0] = strToObj.url
  393. that.bankimg = strToObj.url
  394. that.bankImgs1.bankImg = strToObj.url
  395. that.$api.doRequest('get', '/driverViewInfo/bankShibie', that.bankImgs1).then(res => {
  396. console.log(res)
  397. that.$set(that.driverPayeeInfoList[items],'bankCard',res.data.data.bankNo)
  398. that.$set(that.driverPayeeInfoList[items],'bankDeposit',res.data.data.bankName)
  399. that.bankType = res.data.data.bankNameZhihang
  400. console.log(that.ban)
  401. }).catch(res => {
  402. uni.showToast({
  403. title: res.data.message,
  404. icon: 'none',
  405. duration: 2000
  406. })
  407. })
  408. }
  409. })
  410. }
  411. })
  412. },
  413. idUp(){
  414. var that = this
  415. wx.chooseImage({
  416. success: function(res) {
  417. wx.uploadFile({
  418. url: 'https://www.zthymaoyi.com/upload/admin',
  419. filePath: res.tempFilePaths[0],
  420. name: 'file',
  421. success(res) {
  422. var data = res.data
  423. var strToObj = JSON.parse(data)
  424. that.id[0] = strToObj.url
  425. that.id1 = strToObj.url
  426. }
  427. })
  428. }
  429. })
  430. },
  431. idLow(){
  432. var that = this
  433. wx.chooseImage({
  434. success: function(res) {
  435. wx.uploadFile({
  436. url: 'https://www.zthymaoyi.com/upload/admin',
  437. filePath: res.tempFilePaths[0],
  438. name: 'file',
  439. success(res) {
  440. var data = res.data
  441. var strToObj = JSON.parse(data)
  442. that.id[1] = strToObj.url
  443. that.id2 = strToObj.url
  444. }
  445. })
  446. }
  447. })
  448. },
  449. travel(){
  450. var that = this
  451. wx.chooseImage({
  452. success: function(res) {
  453. wx.uploadFile({
  454. url: 'https://www.zthymaoyi.com/upload/admin',
  455. filePath: res.tempFilePaths[0],
  456. name: 'file',
  457. success(res) {
  458. var data = res.data
  459. var strToObj = JSON.parse(data)
  460. that.travels = strToObj.url
  461. that.addressUrl[0] = strToObj.url
  462. console.log(that.addressUrl)
  463. }
  464. })
  465. }
  466. })
  467. },
  468. drive(){
  469. var that = this
  470. wx.chooseImage({
  471. success: function(res) {
  472. wx.uploadFile({
  473. url: 'https://www.zthymaoyi.com/upload/admin',
  474. filePath: res.tempFilePaths[0],
  475. name: 'file',
  476. success(res) {
  477. var data = res.data
  478. var strToObj = JSON.parse(data)
  479. that.drives = strToObj.url
  480. that.addressUrl[1] = strToObj.url
  481. console.log(that.addressUrl)
  482. }
  483. })
  484. }
  485. })
  486. },
  487. operate(){
  488. var that = this
  489. wx.chooseImage({
  490. success: function(res) {
  491. wx.uploadFile({
  492. url: 'https://www.zthymaoyi.com/upload/admin',
  493. filePath: res.tempFilePaths[0],
  494. name: 'file',
  495. success(res) {
  496. var data = res.data
  497. var strToObj = JSON.parse(data)
  498. that.operates = strToObj.url
  499. that.addressUrl[2] = strToObj.url
  500. console.log(that.addressUrl)
  501. }
  502. })
  503. }
  504. })
  505. },
  506. practice(){
  507. var that = this
  508. wx.chooseImage({
  509. success: function(res) {
  510. wx.uploadFile({
  511. url: 'https://www.zthymaoyi.com/upload/admin',
  512. filePath: res.tempFilePaths[0],
  513. name: 'file',
  514. success(res) {
  515. var data = res.data
  516. var strToObj = JSON.parse(data)
  517. that.practices = strToObj.url
  518. that.addressUrl[3] = strToObj.url
  519. console.log(that.addressUrl)
  520. }
  521. })
  522. }
  523. })
  524. },
  525. getcode() {
  526. var that = this
  527. console.log(that.DriverViewInfo.driverPhone)
  528. if (/^0?1[3|4|5|6|7|8][0-9]\d{8}$/.test(that.DriverViewInfo.driverPhone)) {
  529. this.$api.doRequest('get', '/commonUser/sendVerifyCode', {
  530. customerPhone: that.DriverViewInfo.driverPhone
  531. }).then(res => {
  532. if (res.data.code == 200) {
  533. that.sendDisabled = true
  534. let sec = 60
  535. let interval = setInterval(() => {
  536. sec--;
  537. that.sendText = sec + 's后重发'
  538. if (sec <= 0) {
  539. that.sendDisabled = false
  540. that.sendText = "获取验证码"
  541. clearInterval(interval)
  542. }
  543. }, 1000)
  544. } else {
  545. uni.showToast({
  546. title: res.data.message,
  547. icon: 'none',
  548. duration: 2000
  549. })
  550. }
  551. })
  552. .catch(res => {
  553. uni.showToast({
  554. title: res.data.message,
  555. icon: 'none',
  556. duration: 2000
  557. })
  558. });
  559. } else {
  560. uni.showToast({
  561. title: '请输入正确的手机号',
  562. icon: 'none',
  563. duration: 2000
  564. })
  565. }
  566. },
  567. ModelChange(e) {
  568. this.ModelIndex = e.detail.value
  569. this.Model = this.ModelType[this.ModelIndex];
  570. this.driverCarInfoList.carModel = this.ModelType[this.ModelIndex];
  571. },
  572. carLongChange(e) {
  573. this.carLongIndex = e.detail.value
  574. this.carLong = this.carLongType[this.carLongIndex];
  575. },
  576. }
  577. }
  578. </script>
  579. <style>
  580. .center {
  581. padding: 10px 20px;
  582. }
  583. .labels{
  584. font-size: 16px;
  585. font-weight: 400;
  586. }
  587. .c-row {
  588. display: -webkit-box;
  589. display: -webkit-flex;
  590. display: flex;
  591. -webkit-box-align: center;
  592. -webkit-align-items: center;
  593. align-items: center;
  594. padding: 20rpx 30rpx;
  595. position: relative;
  596. }
  597. .con-list {
  598. -webkit-box-flex: 1;
  599. -webkit-flex: 1;
  600. flex: 1;
  601. display: -webkit-box;
  602. display: -webkit-flex;
  603. display: flex;
  604. -webkit-box-orient: vertical;
  605. -webkit-box-direction: normal;
  606. -webkit-flex-direction: column;
  607. flex-direction: column;
  608. color: #303133;
  609. line-height: 40rpx;
  610. text-align: right;
  611. padding-right: 20rpx;
  612. font-size: 14px;
  613. }
  614. .getcode {
  615. font-size: 14px;
  616. position: absolute;
  617. top: 50%;
  618. transform: translateY(-50%);
  619. color: #AFB3BF;
  620. background: #F5F6F9;
  621. height: 30px;
  622. line-height: 30px;
  623. }
  624. .getcode.active {
  625. border: none;
  626. }
  627. .uni-navigator{
  628. display:inline-block;
  629. color:#22C572;
  630. }
  631. .getcode.active {
  632. background: #22C572;
  633. color: #fff;
  634. }
  635. .labels {
  636. font-size: 16px;
  637. font-weight: 400;
  638. }
  639. .c-row {
  640. display: -webkit-box;
  641. display: -webkit-flex;
  642. display: flex;
  643. -webkit-box-align: center;
  644. -webkit-align-items: center;
  645. align-items: center;
  646. padding: 20rpx 30rpx;
  647. position: relative;
  648. }
  649. .con-list {
  650. -webkit-box-flex: 1;
  651. -webkit-flex: 1;
  652. flex: 1;
  653. display: -webkit-box;
  654. display: -webkit-flex;
  655. display: flex;
  656. -webkit-box-orient: vertical;
  657. -webkit-box-direction: normal;
  658. -webkit-flex-direction: column;
  659. flex-direction: column;
  660. color: #303133;
  661. line-height: 40rpx;
  662. text-align: right;
  663. padding-right: 20rpx;
  664. font-size: 14px;
  665. }
  666. .verificationCode {
  667. margin-top: 20px;
  668. background: #F5F6F9;
  669. color: #AFB3BF;
  670. }
  671. .verificationCode:after {
  672. border: none;
  673. }
  674. .verificationCode.active {
  675. background: #22C572;
  676. color: #fff;
  677. }
  678. .getcode {
  679. font-size: 14px;
  680. position: absolute;
  681. /* right:0; */
  682. top: 50%;
  683. transform: translateY(-50%);
  684. color: #AFB3BF;
  685. background: #F5F6F9;
  686. height: 30px;
  687. line-height: 30px;
  688. }
  689. .getcode:after {
  690. border: none;
  691. }
  692. .getcode.active {
  693. background: #22C572;
  694. color: #fff;
  695. }
  696. .picture {
  697. width: 100%;
  698. height: 220px;
  699. text-align: center;
  700. margin-top: 10px;
  701. }
  702. .fujians{
  703. margin: 0 auto;
  704. background-color: #FFFFFF;
  705. margin-top: 30px;
  706. border-radius: 20px;
  707. padding: 10px 10px;
  708. }
  709. .btn {
  710. margin-top: 10px;
  711. background-color: #FFFFFF;
  712. border-radius: 25px;
  713. border: none;
  714. }
  715. .btns {
  716. background-color: #22C572;
  717. }
  718. .information {
  719. margin-top: 10px;
  720. width: 100%;
  721. height: 56px;
  722. background-color: #FFFFFF;
  723. border-radius: 16px;
  724. }
  725. .informations {
  726. margin-top: 10px;
  727. background-color: #FFFFFF;
  728. border-radius: 20px;
  729. }
  730. .personalcss{
  731. background-color: #FFFFFF;
  732. border-radius: 20px;
  733. margin-top: 10px;
  734. }
  735. .open {
  736. width: 30px;
  737. height: 20px;
  738. position: absolute;
  739. right: 20px;
  740. margin-top: -10px;
  741. }
  742. .add{
  743. width: 26px;
  744. height: 26px;
  745. /* background-image: url(../../static/img/jiaoyi/ic_fabu@3x.png); */
  746. }
  747. /* 清除 */
  748. .eliminate {
  749. width: 20px;
  750. height: 20px;
  751. float: right;
  752. }
  753. .bankImg{
  754. width: 20px;
  755. height: 20px;
  756. }
  757. </style>