inventoryReview.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. <template>
  2. <div class="inventoryReview">
  3. <ul class="detailUl">
  4. <li class="detailLi">
  5. <span class="liName">
  6. <span style="color: red;margin-right: 5rpx">*</span>
  7. 企业名称
  8. </span>
  9. <div class="inputBox">
  10. <input v-model="form.qymc" disabled class="myIpt">
  11. </div>
  12. </li>
  13. <li class="detailLi">
  14. <span class="liName">
  15. <span style="color: red;margin-right: 5rpx">*</span>
  16. 统一社会信用代码
  17. </span>
  18. <div class="inputBox">
  19. <input v-model="form.shxydm" disabled class="myIpt">
  20. </div>
  21. </li>
  22. <li class="detailLi">
  23. <span class="liName">
  24. 注册资金(万元)
  25. </span>
  26. <div class="inputBox">
  27. <input v-model="form.zczj" disabled class="myIpt">
  28. </div>
  29. </li>
  30. <li class="detailLi">
  31. <span class="liName">
  32. 币种
  33. </span>
  34. <div class="inputBox" @tap="showArea('币种')">
  35. <input placeholder="" v-model="form.currencyStr" disabled class="myIpt">
  36. <van-icon name="arrow" />
  37. </div>
  38. </li>
  39. <li class="detailLi">
  40. <span class="liName">
  41. 注册时间
  42. </span>
  43. <div class="inputBox" @tap="showTime">
  44. <!-- <input placeholder="" v-model="form.zcsj" disabled class="myIpt">-->
  45. <span class="myIpt">{{ form.zcsj }} </span>
  46. <van-icon name="arrow" />
  47. </div>
  48. </li>
  49. <li class="detailLi">
  50. <span class="liName">
  51. 法定代表人
  52. </span>
  53. <input class="myIpt" value="256" disabled style="padding-right: 30rpx" v-model="form.fddbr">
  54. </li>
  55. <li class="detailLi">
  56. <span class="liName">
  57. 法人电话
  58. </span>
  59. <div class="inputBox">
  60. <input disabled class="myIpt" v-model="form.legalPersonPhone">
  61. </div>
  62. </li>
  63. <li class="detailLi">
  64. <span class="liName">
  65. 法人邮箱
  66. </span>
  67. <div class="inputBox">
  68. <input disabled class="myIpt" v-model="form.frEmail">
  69. </div>
  70. </li>
  71. <li class="detailLi">
  72. <span class="liName">
  73. <span style="color: red;margin-right: 5rpx">*</span>
  74. 企业联系人
  75. </span>
  76. <div class="inputBox">
  77. <input disabled class="myIpt" v-model="form.qylxr">
  78. </div>
  79. </li>
  80. <li class="detailLi">
  81. <span class="liName">
  82. <span style="color: red;margin-right: 5rpx">*</span>
  83. 联系人手机
  84. </span>
  85. <div class="inputBox">
  86. <input disabled class="myIpt" v-model="form.lxdh">
  87. </div>
  88. </li>
  89. <li class="detailLi">
  90. <span class="liName">
  91. <span style="color: red;margin-right: 5rpx">*</span>
  92. 联系人邮箱
  93. </span>
  94. <div class="inputBox">
  95. <input disabled class="myIpt" v-model="form.email">
  96. </div>
  97. </li>
  98. <li class="detailLi">
  99. <span class="liName">
  100. <span style="color: red;margin-right: 5rpx">*</span>
  101. 财务负责人
  102. </span>
  103. <div class="inputBox">
  104. <input disabled class="myIpt" v-model="form.cwfzr">
  105. </div>
  106. </li>
  107. <li class="detailLi">
  108. <span class="liName">
  109. <span style="color: red;margin-right: 5rpx">*</span>
  110. 负责人电话
  111. </span>
  112. <div class="inputBox">
  113. <input disabled class="myIpt" v-model="form.cwfzrdh">
  114. </div>
  115. </li>
  116. <li class="detailLi">
  117. <span class="liName">
  118. 注册地址
  119. </span>
  120. <div class="moreLineBox">
  121. {{ form.zcdz }}
  122. </div>
  123. </li>
  124. <li class="detailLi">
  125. <span class="liName">
  126. 经营地址
  127. </span>
  128. <div class="moreLineBox">
  129. {{ form.jydz }}
  130. </div>
  131. </li>
  132. <li class="detailLi2" >
  133. <div class="titleBox" >
  134. <span class="liName">经营范围</span>
  135. </div>
  136. <van-field
  137. :value="form.jyfw"
  138. autosize
  139. type="textarea"
  140. class="myField"
  141. readonly
  142. />
  143. </li>
  144. <li class="detailLi2" >
  145. <div class="titleBox" style="margin-bottom: 24rpx">
  146. <span class="liName">
  147. <span style="color: red;margin-right: 5rpx">*</span>
  148. 营业执照
  149. </span>
  150. </div>
  151. <van-uploader
  152. :max-count="9"
  153. @delete="deleteRYXXZP"
  154. @after-read="uploadRYXXZP"
  155. :show-upload="true"
  156. :file-list="fileList"
  157. />
  158. </li>
  159. <li class="detailLi2" >
  160. <div class="titleBox" >
  161. <span class="liName">荣誉信息</span>
  162. </div>
  163. <van-field
  164. autosize
  165. type="textarea"
  166. class="myField"
  167. style="margin-bottom: 24rpx"
  168. readonly
  169. />
  170. <van-uploader
  171. :max-count="6"
  172. @delete="deleteRYXXZP1"
  173. :file-list="fileList1"
  174. @after-read="uploadRYXXZP1"
  175. :show-upload="true"
  176. />
  177. <span style="color: #B3B3B3;font-size: 28rpx">(只能上传jpg/png格式,限制上传6张)</span>
  178. </li>
  179. <li class="detailLi2" >
  180. <div class="titleBox" style="margin-bottom: 24rpx">
  181. <span class="liName">
  182. 法人身份证
  183. <span style="color: #B3B3B3;font-size: 28rpx">(只能上传jpg/png格式,限制上传6张)</span>
  184. </span>
  185. </div>
  186. <van-uploader
  187. :max-count="6"
  188. @delete="deleteRYXXZP2"
  189. :file-list="fileList2"
  190. @after-read="uploadRYXXZP2"
  191. :show-upload="true"
  192. />
  193. </li>
  194. <li class="detailLi2" style="position:relative;">
  195. <div class="titleBox" >
  196. <span class="liName">主营业务</span>
  197. </div>
  198. <van-field
  199. :value="form.business"
  200. autosize
  201. type="textarea"
  202. class="myField"
  203. readonly
  204. />
  205. </li>
  206. <li class="detailLi">
  207. <span class="liName">
  208. 全年研发投入(万元)
  209. </span>
  210. <div class="moreLineBox">
  211. {{ form.rdInvestment || ''}}
  212. </div>
  213. </li>
  214. <li class="detailLi">
  215. <span class="liName">
  216. 全年技改投入(万元)
  217. </span>
  218. <div class="moreLineBox">
  219. {{ form.jgInvestment || '' }}
  220. </div>
  221. </li>
  222. <li class="detailLi">
  223. <span class="liName">
  224. 发明专利(件)
  225. </span>
  226. <div class="moreLineBox">
  227. {{ form.inventionPatent || '' }}
  228. </div>
  229. </li>
  230. <li class="detailLi">
  231. <span class="liName">
  232. 软件著作(件)
  233. </span>
  234. <div class="moreLineBox">
  235. {{ form.softwareWorks || '' }}
  236. </div>
  237. </li>
  238. <li class="detailLi">
  239. <span class="liName">
  240. 实用新型专利(件)
  241. </span>
  242. <div class="moreLineBox">
  243. {{ form.utilityModel || '' }}
  244. </div>
  245. </li>
  246. <li class="detailLi">
  247. <span class="liName">
  248. 集成电路布图设计专有权(件)
  249. </span>
  250. <div class="moreLineBox">
  251. {{ form.integratedCircuit || '' }}
  252. </div>
  253. </li>
  254. <li class="detailLi">
  255. <span class="liName">
  256. 四技合同金额-开发(万元)
  257. </span>
  258. <div class="moreLineBox">
  259. {{ form.fourOpennessAmount || '' }}
  260. </div>
  261. </li>
  262. <li class="detailLi">
  263. <span class="liName">
  264. 四技合同金额-转让(万元)
  265. </span>
  266. <div class="moreLineBox">
  267. {{ form.fourTransferenceAmount || '' }}
  268. </div>
  269. </li>
  270. <li class="detailLi">
  271. <span class="liName">
  272. 四技合同金额-服务(万元)
  273. </span>
  274. <div class="moreLineBox">
  275. {{ form.fourServiceAmount || '' }}
  276. </div>
  277. </li>
  278. <li class="detailLi" style="border-bottom: none">
  279. <span class="liName">
  280. 四技合同金额-咨询(万元)
  281. </span>
  282. <div class="moreLineBox">
  283. {{ form.fourConsultAmount || '' }}
  284. </div>
  285. </li>
  286. </ul>
  287. <ul class="detailUl">
  288. <li class="detailLi2">
  289. <span class="liName">
  290. <span style="color: red;margin-right: 5rpx">*</span>
  291. 入驻类型
  292. </span>
  293. <van-radio-group :value="settleInType" @change="onChange">
  294. <van-radio
  295. :name="item.value"
  296. checked-color="#976CEB"
  297. v-for="item in settleInTypeList"
  298. :key="item.value"
  299. >{{ item.label }}</van-radio
  300. >
  301. </van-radio-group>
  302. </li>
  303. <li class="detailLi">
  304. <span class="liName">
  305. 招商经理
  306. </span>
  307. <div class="inputBox">
  308. <input placeholder="" v-model="form.investmentManagerName" disabled class="myIpt">
  309. <van-icon name="arrow" />
  310. </div>
  311. </li>
  312. <li class="detailLi">
  313. <span class="liName">
  314. 关联企业
  315. </span>
  316. <div class="inputBox" style="border-bottom: none">
  317. <input placeholder="" v-model="form.associationCompanyName" disabled class="myIpt">
  318. <van-icon name="arrow" />
  319. </div>
  320. </li>
  321. </ul>
  322. <ul class="detailUl">
  323. <li class="detailTitle">审核结果</li>
  324. <li class="detailLi">
  325. <span class="liName">
  326. <span style="color: red;margin-right: 5rpx">*</span>
  327. 处理结果
  328. </span>
  329. <van-radio-group :value="radio2" @change="onChange2">
  330. <van-radio name="1">通过</van-radio>
  331. <van-radio name="2">不通过</van-radio>
  332. </van-radio-group>
  333. </li>
  334. <li class="detailLi2" style="position:relative;border-bottom: none">
  335. <div class="titleBox" >
  336. <span class="liName">处理意见</span>
  337. </div>
  338. <van-field
  339. @change="onChange3"
  340. :value="form.handleOpinions"
  341. autosize
  342. type="textarea"
  343. class="myField"
  344. />
  345. </li>
  346. </ul>
  347. <div class="buttonBox">
  348. <button class="btn zcBtn" @click="cancel">取消</button>
  349. <button class="btn tjBtn" @click="confirmSubmit()">提交审核</button>
  350. </div>
  351. <van-popup
  352. :show="show"
  353. position="bottom"
  354. custom-style="height: 50%;"
  355. >
  356. <van-picker v-show="popType==='币种'" :columns="currencyList" show-toolbar @cancel="show=false" @confirm="onConfirm" value-key="label"/>
  357. </van-popup>
  358. <van-popup
  359. :show="timeShow"
  360. position="bottom"
  361. custom-style="height: 50%;"
  362. >
  363. <van-datetime-picker
  364. type="date"
  365. :value="currentDate"
  366. :formatter="formatter"
  367. @cancel="timeShow=false"
  368. @confirm="selectTime"
  369. />
  370. </van-popup>
  371. </div>
  372. </template>
  373. <script>
  374. import { getUserLocalStorageInfo,getByCodes,companyExamineGetById,companyExamineExamine,getAllBaseCompany } from "@/js_sdk/http";
  375. export default {
  376. name: "inventoryReview",
  377. onLoad(options){
  378. console.log('options:',options)
  379. this.id = options.id
  380. this.proveType = options.proveType
  381. this.getById()
  382. this.getByCodes()
  383. this.getCompanyList()
  384. },
  385. data(){
  386. return{
  387. dc_key: ['MNP_BUILDING_TYPE', 'CURRENCY'],
  388. form:{
  389. },
  390. radio: '',
  391. radio2: '',
  392. id: '',
  393. proveType: '',
  394. fileList: [],
  395. fileList1: [],
  396. fileList2: [],
  397. settleInType:'',
  398. settleInTypeList: [],
  399. dic_SelectList: [],
  400. currencyList: [],
  401. show:false,
  402. popType:'',
  403. timeShow: '',
  404. currentDate: new Date().getTime(),
  405. companyOptions: []
  406. }
  407. },
  408. methods:{
  409. getById(){
  410. const data = {
  411. id: this.id
  412. }
  413. companyExamineGetById(data).then(res=>{
  414. if(res){
  415. this.form = res
  416. this.form.currencyStr = this.form.currency == null ? ' ' : this.getDicType("bizhong", this.form.currency)
  417. this.settleInType = res.settleInType
  418. if (res.yyzzfbzp) {
  419. res.yyzzfbzp.split(',').forEach(id=>{
  420. this.fileList.push({
  421. imgUrl: "/FileController/download/" + id,
  422. id: id,
  423. url:
  424. this.$constant.BASE_URI +
  425. "/FileController/download/" +
  426. id,
  427. isImage: true,
  428. });
  429. })
  430. }
  431. if (res.ryxxzp) {
  432. res.ryxxzp.split(',').forEach(id=>{
  433. this.fileList1.push({
  434. imgUrl: "/FileController/download/" + id,
  435. id: id,
  436. url:
  437. this.$constant.BASE_URI +
  438. "/FileController/download/" +
  439. id,
  440. isImage: true,
  441. });
  442. })
  443. }
  444. if (res.frsfzh) {
  445. res.frsfzh.split(',').forEach(id=>{
  446. this.fileList2.push({
  447. imgUrl: "/FileController/download/" + id,
  448. id: id,
  449. url:
  450. this.$constant.BASE_URI +
  451. "/FileController/download/" +
  452. id,
  453. isImage: true,
  454. });
  455. })
  456. }
  457. }
  458. })
  459. },
  460. async getByCodes() {
  461. let data = await getByCodes(JSON.stringify(this.dc_key));
  462. this.dic_SelectList = this.$common.handleDicList(data);
  463. this.settleInTypeList = this.dic_SelectList.MNP_BUILDING_TYPE
  464. this.currencyList = this.dic_SelectList.CURRENCY
  465. },
  466. getDicType(type, value) {
  467. if (type == "bizhong" && this.dic_SelectList.CURRENCY) {
  468. let CURRENCY = this.dic_SelectList.CURRENCY;
  469. let index = CURRENCY.findIndex((e) => e.value == value);
  470. return CURRENCY[index].label;
  471. }
  472. },
  473. onChange(event) {
  474. this.form.settleInType = event.detail
  475. },
  476. onChange2(event) {
  477. console.log(event)
  478. this.form.state = event.detail
  479. },
  480. onChange3(event) {
  481. console.log(event)
  482. this.form.handleOpinions = event.detail
  483. },
  484. deleteRYXXZP(event) {
  485. this.fileList.splice(event.detail.index, 1);
  486. this.$forceUpdate();
  487. },
  488. uploadRYXXZP(event) {
  489. console.log(event)
  490. let that = this;
  491. const { file } = event.detail;
  492. uni.uploadFile({
  493. url: that.$constant.BASE_URI + "/wx/fileController/upload",
  494. filePath: file.url,
  495. name: "file",
  496. formData: { user: "test" },
  497. success(res) {
  498. // 上传完成需要更新 fileList
  499. let data = JSON.parse(res.data);
  500. that.fileList.push({
  501. id: data.data[0],
  502. });
  503. },
  504. fail(res) {},
  505. });
  506. },
  507. deleteRYXXZP1(event) {
  508. this.fileList1.splice(event.detail.index, 1);
  509. this.$forceUpdate();
  510. },
  511. uploadRYXXZP1(event) {
  512. console.log(event)
  513. let that = this;
  514. const { file } = event.detail;
  515. uni.uploadFile({
  516. url: that.$constant.BASE_URI + "/wx/fileController/upload",
  517. filePath: file.url,
  518. name: "file",
  519. formData: { user: "test" },
  520. success(res) {
  521. // 上传完成需要更新 fileList
  522. let data = JSON.parse(res.data);
  523. that.fileList1.push({
  524. id: data.data[0],
  525. });
  526. },
  527. fail(res) {},
  528. });
  529. },
  530. deleteRYXXZP2(event) {
  531. this.fileList2.splice(event.detail.index, 1);
  532. this.$forceUpdate();
  533. },
  534. uploadRYXXZP2(event) {
  535. console.log(event)
  536. let that = this;
  537. const { file } = event.detail;
  538. uni.uploadFile({
  539. url: that.$constant.BASE_URI + "/wx/fileController/upload",
  540. filePath: file.url,
  541. name: "file",
  542. formData: { user: "test" },
  543. success(res) {
  544. // 上传完成需要更新 fileList
  545. let data = JSON.parse(res.data);
  546. that.fileList2.push({
  547. id: data.data[0],
  548. });
  549. },
  550. fail(res) {},
  551. });
  552. },
  553. cancel(){
  554. uni.navigateBack({})
  555. },
  556. confirmSubmit(){
  557. const _this = this
  558. // 通过才校验
  559. if(_this.form.state == '1'){
  560. if (!_this.form.qymc){
  561. this.$showToast('请输入企业名称')
  562. return
  563. }
  564. if (!_this.form.shxydm){
  565. this.$showToast('请输入统一社会信用代码')
  566. return
  567. }
  568. if (!_this.form.qylxr){
  569. this.$showToast('请输入企业联系人')
  570. return
  571. }
  572. if (!_this.form.lxdh){
  573. this.$showToast('请输入联系人手机')
  574. return
  575. }
  576. if (!_this.form.email){
  577. this.$showToast('请输入联系人邮箱')
  578. return
  579. }
  580. if (!_this.form.cwfzr){
  581. this.$showToast('请输入财务负责人')
  582. return
  583. }
  584. if (!_this.form.cwfzrdh){
  585. this.$showToast('请输入财务负责人电话')
  586. return
  587. }
  588. if (!_this.form.yyzzfbzp){
  589. this.$showToast('请上传营业执照')
  590. return
  591. }
  592. if (!_this.form.settleInType){
  593. this.$showToast('请选择入驻类型')
  594. return
  595. }
  596. if (!_this.form.state){
  597. this.$showToast('请选择处理结果')
  598. return
  599. }
  600. }
  601. if (this.fileList.length > 0){
  602. let yyzzfbzp = []
  603. this.fileList.forEach(e=>{
  604. yyzzfbzp.push(e.id)
  605. })
  606. this.form.yyzzfbzp = yyzzfbzp.toString()
  607. }
  608. if (this.fileList1.length > 0){
  609. let ryxxzp = []
  610. this.fileList1.forEach(e=>{
  611. ryxxzp.push(e.id)
  612. })
  613. this.form.ryxxzp = ryxxzp.toString()
  614. }
  615. if (this.fileList2.length > 0){
  616. let qylbbq = []
  617. this.fileList2.forEach(e=>{
  618. qylbbq.push(e.id)
  619. })
  620. this.form.qylbbq = qylbbq.toString()
  621. }
  622. const data = {
  623. id: _this.id,
  624. state: _this.form.state,
  625. proveType: _this.proveType,
  626. handleOpinions: _this.form.handleOpinions,
  627. examineUserId: getUserLocalStorageInfo().userId,
  628. }
  629. companyExamineExamine(data).then(res=>{
  630. if(res.code == '200'){
  631. this.$showToast("审核成功");
  632. this.cancel()
  633. }else {
  634. this.$showToast(res.msg);
  635. }
  636. })
  637. },
  638. showArea(e){
  639. this.popType = e
  640. this.show = true
  641. },
  642. onConfirm(e){
  643. console.log(e)
  644. switch (this.popType) {
  645. case "币种":
  646. this.form.currency = e.detail.value.label
  647. break;
  648. }
  649. this.show = false
  650. },
  651. showTime(){
  652. this.timeShow = true
  653. },
  654. // 时间戳转换方法
  655. timestampToDate(timestamp) {
  656. const date = new Date(timestamp); // 如果timestamp是字符串,确保它是整数:parseInt(timestamp)
  657. const year = date.getFullYear();
  658. const month = (date.getMonth() + 1).toString().padStart(2, '0');
  659. const day = date.getDate().toString().padStart(2, '0');
  660. const hours = date.getHours().toString().padStart(2, '0');
  661. const minutes = date.getMinutes().toString().padStart(2, '0');
  662. const seconds = date.getSeconds().toString().padStart(2, '0');
  663. return `${year}-${month}-${day}`;
  664. },
  665. // 时间选择单位
  666. formatter(type, val) {
  667. if (type === 'year') {
  668. return `${val}年`;
  669. } else if (type === 'month') {
  670. return `${val}月`;
  671. } else if (type === 'day') {
  672. return `${val}日`;
  673. } else if (type === 'hour') {
  674. return `${val}时`;
  675. } else if (type === 'minute') {
  676. return `${val}分`;
  677. }
  678. return val;
  679. },
  680. selectTime(e) {
  681. const dateString = this.timestampToDate(e.detail);
  682. this.form.zcsj = dateString
  683. this.timeShow = false
  684. // this.getRoomTime(this.startTime)
  685. },
  686. getCompanyList(){
  687. getAllBaseCompany({}).then(res=>{
  688. this.companyOptions = res
  689. })
  690. }
  691. }
  692. }
  693. </script>
  694. <style lang="scss">
  695. .inventoryReview{
  696. .detailUl{
  697. margin-top: 20rpx;
  698. background: white;
  699. padding: 24rpx 32rpx;
  700. .liName{
  701. font-size: 32rpx;
  702. color: rgba(51, 51, 51, 1);
  703. white-space: nowrap;
  704. .callNumber{
  705. color: rgba(24, 23, 42, 1);
  706. font-size: 36rpx;
  707. font-weight: 600;
  708. }
  709. .callName{
  710. color: rgba(102, 102, 102, 1);
  711. font-size: 28rpx;
  712. }
  713. }
  714. .phoneIcon{
  715. width: 64rpx;
  716. height: 64rpx;
  717. }
  718. .detailLi{
  719. display: flex;
  720. justify-content: space-between;
  721. align-items: center;
  722. padding: 32rpx 0;
  723. border-bottom: 2rpx solid #E6E6E6;
  724. .liInfo{
  725. display: inline-block;
  726. text-align: right;
  727. max-width: 428rpx;
  728. color: rgba(102, 102, 102, 1);
  729. font-size: 32rpx;
  730. line-height: 38rpx;
  731. overflow: hidden;
  732. word-wrap: break-word;
  733. }
  734. .inputBox{
  735. display: flex;
  736. align-items: center;
  737. }
  738. .moreLineBox{
  739. word-wrap: break-word;
  740. max-width: 422rpx;
  741. color: rgba(102, 102, 102, 1);
  742. }
  743. .myIpt{
  744. text-align: right;
  745. margin-right: 20rpx;
  746. color: rgba(102, 102, 102, 1);
  747. min-width: 422rpx;
  748. }
  749. }
  750. .detailLi2{
  751. display: flex;
  752. flex-direction: column;
  753. padding: 32rpx 0;
  754. border-bottom: 2rpx solid #E6E6E6;
  755. .detailLi2BoxTop{
  756. display: flex;
  757. flex-wrap: wrap;
  758. justify-content: space-between;
  759. margin: 12rpx 0;
  760. .checkItem{
  761. width: 128rpx;
  762. height: 64rpx;
  763. font-size: 28rpx;
  764. color: #666666;
  765. display: flex;
  766. align-items: center;
  767. justify-content: center;
  768. background: #F5F7FA;
  769. border-radius: 8rpx;
  770. margin: 12rpx 0;
  771. }
  772. .checked{
  773. background: #0365F9;
  774. color: white;
  775. }
  776. }
  777. .locationBox{
  778. position: absolute;
  779. right: 24rpx;
  780. top: 100rpx;
  781. }
  782. .van-cell {
  783. background: #F5F7FA !important;
  784. border-radius: 8rpx;
  785. font-size: 28rpx;
  786. margin-top: 16rpx;
  787. }
  788. .van-radio-group{
  789. display: flex;
  790. flex-wrap: wrap;
  791. margin-top: 24rpx;
  792. gap: 24rpx;
  793. color: rgba(102, 102, 102, 1);
  794. font-size: 4vw;
  795. }
  796. }
  797. }
  798. .buttonBox{
  799. display: flex;
  800. justify-content: center;
  801. .btn{
  802. width: 240rpx;
  803. height: 80rpx;
  804. display: flex;
  805. border-radius: 8rpx;
  806. align-items: center;
  807. justify-content: center;
  808. margin: 48rpx 16rpx 150rpx 16rpx;
  809. color: white;
  810. letter-spacing: 2rpx;
  811. text-indent: 2rpx;
  812. &::after{
  813. border: none;
  814. }
  815. }
  816. .zcBtn{
  817. background: rgba(0, 0, 0, 0.05);
  818. color: rgba(3, 101, 249, 1);
  819. }
  820. .tjBtn{
  821. background: #0365F9;
  822. }
  823. }
  824. }
  825. </style>