driverIdentityEdit.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796
  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. if(res.errmsg){
  354. uni.showToast({
  355. title: res.errmsg,
  356. icon: 'none',
  357. duration: 2000
  358. })
  359. }
  360. else{
  361. uni.showToast({
  362. title: "系统异常,请联系管理员",
  363. icon: 'none',
  364. duration: 2000
  365. })
  366. }
  367. });
  368. },
  369. commitEdit() {
  370. console.log(this.addressUrl,"数组")
  371. this.DriverViewInfo.addressUrl = this.addressUrl.toString()
  372. console.log(this.DriverViewInfo.addressUrl,"字符串")
  373. this.DriverViewInfo.driverCarInfoList = this.driverCarInfoList
  374. this.DriverViewInfo.driverPayeeInfoList = this.driverPayeeInfoList
  375. this.DriverViewInfo.commonId = this.userInfo.id
  376. this.DriverViewInfo.cardAddressUrl = this.id.toString()
  377. this.DriverViewInfo.pcFlag = 0
  378. this.DriverViewInfo.compId = "2710b21efc1e4393930c5dc800010dc4"
  379. console.log(this.DriverViewInfo,"司机对象")
  380. this.$api.doRequest('post', '/driverViewInfo/api/editInfo', this.DriverViewInfo).then(res => {
  381. }).catch(res => {
  382. uni.showToast({
  383. title: res.data.message,
  384. icon: 'none',
  385. duration: 2000
  386. })
  387. })
  388. },
  389. bankimgs(items){
  390. console.log(items)
  391. var that = this
  392. wx.chooseImage({
  393. success: function(res) {
  394. wx.uploadFile({
  395. url: 'https://www.zthymaoyi.com/upload/admin',
  396. filePath: res.tempFilePaths[0],
  397. name: 'file',
  398. success(res) {
  399. var data = res.data
  400. var strToObj = JSON.parse(data)
  401. // that.id[0] = strToObj.url
  402. that.bankimg = strToObj.url
  403. that.bankImgs1.bankImg = strToObj.url
  404. that.$api.doRequest('get', '/driverViewInfo/bankShibie', that.bankImgs1).then(res => {
  405. console.log(res)
  406. that.$set(that.driverPayeeInfoList[items],'bankCard',res.data.data.bankNo)
  407. that.$set(that.driverPayeeInfoList[items],'bankDeposit',res.data.data.bankName)
  408. that.bankType = res.data.data.bankNameZhihang
  409. console.log(that.ban)
  410. }).catch(res => {
  411. uni.showToast({
  412. title: res.data.message,
  413. icon: 'none',
  414. duration: 2000
  415. })
  416. })
  417. }
  418. })
  419. }
  420. })
  421. },
  422. idUp(){
  423. var that = this
  424. wx.chooseImage({
  425. success: function(res) {
  426. wx.uploadFile({
  427. url: 'https://www.zthymaoyi.com/upload/admin',
  428. filePath: res.tempFilePaths[0],
  429. name: 'file',
  430. success(res) {
  431. var data = res.data
  432. var strToObj = JSON.parse(data)
  433. that.id[0] = strToObj.url
  434. that.id1 = strToObj.url
  435. }
  436. })
  437. }
  438. })
  439. },
  440. idLow(){
  441. var that = this
  442. wx.chooseImage({
  443. success: function(res) {
  444. wx.uploadFile({
  445. url: 'https://www.zthymaoyi.com/upload/admin',
  446. filePath: res.tempFilePaths[0],
  447. name: 'file',
  448. success(res) {
  449. var data = res.data
  450. var strToObj = JSON.parse(data)
  451. that.id[1] = strToObj.url
  452. that.id2 = strToObj.url
  453. }
  454. })
  455. }
  456. })
  457. },
  458. travel(){
  459. var that = this
  460. wx.chooseImage({
  461. success: function(res) {
  462. wx.uploadFile({
  463. url: 'https://www.zthymaoyi.com/upload/admin',
  464. filePath: res.tempFilePaths[0],
  465. name: 'file',
  466. success(res) {
  467. var data = res.data
  468. var strToObj = JSON.parse(data)
  469. that.travels = strToObj.url
  470. that.addressUrl[0] = strToObj.url
  471. console.log(that.addressUrl)
  472. }
  473. })
  474. }
  475. })
  476. },
  477. drive(){
  478. var that = this
  479. wx.chooseImage({
  480. success: function(res) {
  481. wx.uploadFile({
  482. url: 'https://www.zthymaoyi.com/upload/admin',
  483. filePath: res.tempFilePaths[0],
  484. name: 'file',
  485. success(res) {
  486. var data = res.data
  487. var strToObj = JSON.parse(data)
  488. that.drives = strToObj.url
  489. that.addressUrl[1] = strToObj.url
  490. console.log(that.addressUrl)
  491. }
  492. })
  493. }
  494. })
  495. },
  496. operate(){
  497. var that = this
  498. wx.chooseImage({
  499. success: function(res) {
  500. wx.uploadFile({
  501. url: 'https://www.zthymaoyi.com/upload/admin',
  502. filePath: res.tempFilePaths[0],
  503. name: 'file',
  504. success(res) {
  505. var data = res.data
  506. var strToObj = JSON.parse(data)
  507. that.operates = strToObj.url
  508. that.addressUrl[2] = strToObj.url
  509. console.log(that.addressUrl)
  510. }
  511. })
  512. }
  513. })
  514. },
  515. practice(){
  516. var that = this
  517. wx.chooseImage({
  518. success: function(res) {
  519. wx.uploadFile({
  520. url: 'https://www.zthymaoyi.com/upload/admin',
  521. filePath: res.tempFilePaths[0],
  522. name: 'file',
  523. success(res) {
  524. var data = res.data
  525. var strToObj = JSON.parse(data)
  526. that.practices = strToObj.url
  527. that.addressUrl[3] = strToObj.url
  528. console.log(that.addressUrl)
  529. }
  530. })
  531. }
  532. })
  533. },
  534. getcode() {
  535. var that = this
  536. console.log(that.DriverViewInfo.driverPhone)
  537. if (/^0?1[3|4|5|6|7|8][0-9]\d{8}$/.test(that.DriverViewInfo.driverPhone)) {
  538. this.$api.doRequest('get', '/commonUser/sendVerifyCode', {
  539. customerPhone: that.DriverViewInfo.driverPhone
  540. }).then(res => {
  541. if (res.data.code == 200) {
  542. that.sendDisabled = true
  543. let sec = 60
  544. let interval = setInterval(() => {
  545. sec--;
  546. that.sendText = sec + 's后重发'
  547. if (sec <= 0) {
  548. that.sendDisabled = false
  549. that.sendText = "获取验证码"
  550. clearInterval(interval)
  551. }
  552. }, 1000)
  553. } else {
  554. uni.showToast({
  555. title: res.data.message,
  556. icon: 'none',
  557. duration: 2000
  558. })
  559. }
  560. })
  561. .catch(res => {
  562. uni.showToast({
  563. title: res.data.message,
  564. icon: 'none',
  565. duration: 2000
  566. })
  567. });
  568. } else {
  569. uni.showToast({
  570. title: '请输入正确的手机号',
  571. icon: 'none',
  572. duration: 2000
  573. })
  574. }
  575. },
  576. ModelChange(e) {
  577. this.ModelIndex = e.detail.value
  578. this.Model = this.ModelType[this.ModelIndex];
  579. this.driverCarInfoList.carModel = this.ModelType[this.ModelIndex];
  580. },
  581. carLongChange(e) {
  582. this.carLongIndex = e.detail.value
  583. this.carLong = this.carLongType[this.carLongIndex];
  584. },
  585. }
  586. }
  587. </script>
  588. <style>
  589. .center {
  590. padding: 10px 20px;
  591. }
  592. .labels{
  593. font-size: 16px;
  594. font-weight: 400;
  595. }
  596. .c-row {
  597. display: -webkit-box;
  598. display: -webkit-flex;
  599. display: flex;
  600. -webkit-box-align: center;
  601. -webkit-align-items: center;
  602. align-items: center;
  603. padding: 20rpx 30rpx;
  604. position: relative;
  605. }
  606. .con-list {
  607. -webkit-box-flex: 1;
  608. -webkit-flex: 1;
  609. flex: 1;
  610. display: -webkit-box;
  611. display: -webkit-flex;
  612. display: flex;
  613. -webkit-box-orient: vertical;
  614. -webkit-box-direction: normal;
  615. -webkit-flex-direction: column;
  616. flex-direction: column;
  617. color: #303133;
  618. line-height: 40rpx;
  619. text-align: right;
  620. padding-right: 20rpx;
  621. font-size: 14px;
  622. }
  623. .getcode {
  624. font-size: 14px;
  625. position: absolute;
  626. top: 50%;
  627. transform: translateY(-50%);
  628. color: #AFB3BF;
  629. background: #F5F6F9;
  630. height: 30px;
  631. line-height: 30px;
  632. }
  633. .getcode.active {
  634. border: none;
  635. }
  636. .uni-navigator{
  637. display:inline-block;
  638. color:#22C572;
  639. }
  640. .getcode.active {
  641. background: #22C572;
  642. color: #fff;
  643. }
  644. .labels {
  645. font-size: 16px;
  646. font-weight: 400;
  647. }
  648. .c-row {
  649. display: -webkit-box;
  650. display: -webkit-flex;
  651. display: flex;
  652. -webkit-box-align: center;
  653. -webkit-align-items: center;
  654. align-items: center;
  655. padding: 20rpx 30rpx;
  656. position: relative;
  657. }
  658. .con-list {
  659. -webkit-box-flex: 1;
  660. -webkit-flex: 1;
  661. flex: 1;
  662. display: -webkit-box;
  663. display: -webkit-flex;
  664. display: flex;
  665. -webkit-box-orient: vertical;
  666. -webkit-box-direction: normal;
  667. -webkit-flex-direction: column;
  668. flex-direction: column;
  669. color: #303133;
  670. line-height: 40rpx;
  671. text-align: right;
  672. padding-right: 20rpx;
  673. font-size: 14px;
  674. }
  675. .verificationCode {
  676. margin-top: 20px;
  677. background: #F5F6F9;
  678. color: #AFB3BF;
  679. }
  680. .verificationCode:after {
  681. border: none;
  682. }
  683. .verificationCode.active {
  684. background: #22C572;
  685. color: #fff;
  686. }
  687. .getcode {
  688. font-size: 14px;
  689. position: absolute;
  690. /* right:0; */
  691. top: 50%;
  692. transform: translateY(-50%);
  693. color: #AFB3BF;
  694. background: #F5F6F9;
  695. height: 30px;
  696. line-height: 30px;
  697. }
  698. .getcode:after {
  699. border: none;
  700. }
  701. .getcode.active {
  702. background: #22C572;
  703. color: #fff;
  704. }
  705. .picture {
  706. width: 100%;
  707. height: 220px;
  708. text-align: center;
  709. margin-top: 10px;
  710. }
  711. .fujians{
  712. margin: 0 auto;
  713. background-color: #FFFFFF;
  714. margin-top: 30px;
  715. border-radius: 20px;
  716. padding: 10px 10px;
  717. }
  718. .btn {
  719. margin-top: 10px;
  720. background-color: #FFFFFF;
  721. border-radius: 25px;
  722. border: none;
  723. }
  724. .btns {
  725. background-color: #22C572;
  726. }
  727. .information {
  728. margin-top: 10px;
  729. width: 100%;
  730. height: 56px;
  731. background-color: #FFFFFF;
  732. border-radius: 16px;
  733. }
  734. .informations {
  735. margin-top: 10px;
  736. background-color: #FFFFFF;
  737. border-radius: 20px;
  738. }
  739. .personalcss{
  740. background-color: #FFFFFF;
  741. border-radius: 20px;
  742. margin-top: 10px;
  743. }
  744. .open {
  745. width: 30px;
  746. height: 20px;
  747. position: absolute;
  748. right: 20px;
  749. margin-top: -10px;
  750. }
  751. .add{
  752. width: 26px;
  753. height: 26px;
  754. /* background-image: url(../../static/img/jiaoyi/ic_fabu@3x.png); */
  755. }
  756. /* 清除 */
  757. .eliminate {
  758. width: 20px;
  759. height: 20px;
  760. float: right;
  761. }
  762. .bankImg{
  763. width: 20px;
  764. height: 20px;
  765. }
  766. </style>