dispatch.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  1. <template>
  2. <div class="addRepair">
  3. <div class="reportBody">
  4. <ul class="detailUl">
  5. <li class="detailLi">
  6. <span class="liName">当前企业</span>
  7. <span class="liInfo">{{ detail.companyName }}</span>
  8. </li>
  9. <li class="detailLi">
  10. <span class="liName">
  11. <span style="color: red;margin-right: 10rpx;">*</span>
  12. 您是想
  13. </span>
  14. <span class="liInfo">
  15. <van-radio-group :value="detail.type" disabled>
  16. <van-radio name="1">报事</van-radio>
  17. <van-radio name="2">咨询</van-radio>
  18. </van-radio-group>
  19. </span>
  20. </li>
  21. <li class="detailLi2">
  22. <span class="liName">
  23. 快捷选择
  24. </span>
  25. <div class="detailLi2Box">
  26. <div class="detailLi2BoxTop">
  27. <div class="checkItem" :class="detail.serviceType===item.label?'checked':''" v-for="item in checkList">{{item.label}}</div>
  28. </div>
  29. <van-field
  30. :value="detail.description"
  31. autosize
  32. type="textarea"
  33. placeholder="请输入文字进行报事报修描述"
  34. class="myField"
  35. maxlength="800"
  36. show-word-limit
  37. readonly
  38. />
  39. </div>
  40. </li>
  41. <li class="detailLi">
  42. <span class="liName">
  43. <span style="color: red;margin-right: 10rpx;">*</span>
  44. 位置
  45. </span>
  46. <span class="liInfo">
  47. <van-radio-group :value="detail.position" disabled>
  48. <van-radio name="1">室内</van-radio>
  49. <van-radio name="2">公区</van-radio>
  50. </van-radio-group>
  51. </span>
  52. </li>
  53. <li class="detailLi2">
  54. <span class="liName">
  55. 补充说明
  56. <span style="color: #B3B3B3;font-size: 28rpx">(支持图片/视频上传限20M内,最多6张)</span>
  57. </span>
  58. <div style="display: flex;flex-wrap: wrap;gap: 24rpx">
  59. <div class="detailLi2Box annex-item"
  60. style="margin: 24rpx 0 0 0"
  61. v-for="(item, index) in explainAnnexList"
  62. :key="index">
  63. <img :src="item.url" alt="" v-if="item.type === 'image'" class="anImg" @tap="clickImg(item.url)"/>
  64. </div>
  65. </div>
  66. <div class="detailLi2Box annex-item"
  67. style="margin: 24rpx 0 0 0"
  68. v-for="(item, index) in explainAnnexList"
  69. :key="index+999">
  70. <video
  71. :src="item.url"
  72. v-if="item.type === 'video'"
  73. style="width: 686rpx"
  74. height="100%"
  75. autoplay
  76. ></video>
  77. </div>
  78. </li>
  79. <li class="detailLi">
  80. <span class="liName">
  81. 报事人
  82. </span>
  83. <span class="liInfo">
  84. {{detail.userName}} <img src="https://www.idea-co-sf.com/gardenProduct/image/phoneIcon.png" class="phoneIcon">
  85. </span>
  86. </li>
  87. <li class="detailLi" style="border-bottom: none">
  88. <span class="liName">
  89. 报事时间
  90. </span>
  91. <span class="liInfo">
  92. {{detail.createdAt}}
  93. </span>
  94. </li>
  95. </ul>
  96. </div>
  97. <div class="handleBox">
  98. <div class="handleTitle">处理情况</div>
  99. <div class="imageBox">
  100. <div class="imageItem">
  101. <img src="https://www.idea-co-sf.com/gardenProduct/image/upImage.svg" class="handleImg">
  102. <span>上报</span>
  103. </div>
  104. <img src="https://www.idea-co-sf.com/gardenProduct/image/arrow.png" class="handleArrow">
  105. <div class="imageItem">
  106. <img :src="stepActive==='已受理'||stepActive==='已处理'?'https://www.idea-co-sf.com/gardenProduct/image/acceptance.svg':'https://www.idea-co-sf.com/gardenProduct/image/unAcceptance.svg'" class="handleImg">
  107. <span>受理</span>
  108. </div>
  109. <img src="https://www.idea-co-sf.com/gardenProduct/image/arrow.png" class="handleArrow">
  110. <div class="imageItem">
  111. <img :src="stepActive==='已处理'?'https://www.idea-co-sf.com/gardenProduct/image/handle.svg':'https://www.idea-co-sf.com/gardenProduct/image/unHandle.svg'" class="handleImg">
  112. <span>处理</span>
  113. </div>
  114. <img src="https://www.idea-co-sf.com/gardenProduct/image/arrow.png" class="handleArrow">
  115. <div class="imageItem">
  116. <img :src="detail.evaluateStatus===2?'https://www.idea-co-sf.com/gardenProduct/image/unEvaluate.svg':'https://www.idea-co-sf.com/gardenProduct/image/evaluate.svg'" class="handleImg">
  117. <span>评价</span>
  118. </div>
  119. </div>
  120. </div>
  121. <div class="reportBody" v-if="stepActive!=='已处理'">
  122. <ul class="detailUl">
  123. <li class="detailLi">
  124. <span class="liInfo">
  125. <van-radio-group :value="optionsType" :disabled="stepActive==='已处理'||stepActive==='已受理'" @change="changeHandle">
  126. <van-radio name="1">派单</van-radio>
  127. <van-radio name="2">处理</van-radio>
  128. </van-radio-group>
  129. </span>
  130. </li>
  131. <li class="detailLi" v-if="optionsType==='1'">
  132. <span class="liName">
  133. 派单给
  134. </span>
  135. <input v-model="handler" class="liInfo" @click="showPicker = true" placeholder="请选择" disabled />
  136. </li>
  137. <li class="detailLi2" v-if="optionsType==='1'">
  138. <span class="liName" style="margin-bottom: 16rpx">
  139. 备注
  140. </span>
  141. <van-field
  142. :value="params.contant"
  143. autosize
  144. type="textarea"
  145. placeholder="请输入文字进行报事报修描述"
  146. class="myField2"
  147. maxlength="800"
  148. show-word-limit
  149. @change="changeRemark"
  150. />
  151. </li>
  152. <li class="detailLi2" v-if="optionsType==='2'">
  153. <span class="liName">
  154. 处理后拍照
  155. <span style="color: #B3B3B3;font-size: 28rpx">(支持图片上传限20M内,最多6张)</span>
  156. </span>
  157. <div class="detailLi2Box" style="margin: 24rpx 0 0 0">
  158. <van-uploader
  159. :max-count="6"
  160. @delete="deleteRYXXZP"
  161. :file-list="fileList"
  162. @after-read="uploadRYXXZP"
  163. :show-upload="true"
  164. />
  165. </div>
  166. </li>
  167. <li class="detailLi" v-if="optionsType==='2'">
  168. <span class="liName">
  169. 处理人
  170. </span>
  171. <span class="liInfo">
  172. {{getUserLocalStorageInfo.username}}
  173. </span>
  174. </li>
  175. <li class="detailLi" v-if="optionsType==='2'" style="border-bottom: none">
  176. <span class="liName">
  177. 处理时间
  178. </span>
  179. <span class="liInfo">
  180. {{timeNow}}
  181. </span>
  182. </li>
  183. </ul>
  184. </div>
  185. <van-popup :show="showPicker" position="bottom">
  186. <van-picker
  187. class="picker-box"
  188. show-toolbar
  189. :columns="dispatchPerson"
  190. @confirm="(value) => onSelect(value)"
  191. @cancel="showPicker = false"
  192. />
  193. </van-popup>
  194. <div class="reportBody" v-if="stepActive==='已处理'||stepActive==='已受理'">
  195. <div class="handleTitle">派单信息</div>
  196. <ul class="detailUl">
  197. <li class="detailLi">
  198. <span class="liName">
  199. 派单给
  200. </span>
  201. <span class="liInfo">
  202. {{detail.handleUserName}}
  203. </span>
  204. </li>
  205. <li class="detailLi2">
  206. <span class="liName" style="margin-bottom: 16rpx">
  207. 备注
  208. </span>
  209. <van-field
  210. :value="detail.remark"
  211. autosize
  212. type="textarea"
  213. placeholder=" "
  214. class="myField2"
  215. readonly
  216. />
  217. </li>
  218. <li class="detailLi">
  219. <span class="liName">
  220. 派单人
  221. </span>
  222. <span class="liInfo">
  223. {{detail.dispatchUserName}}
  224. </span>
  225. </li>
  226. <li class="detailLi" style="border-bottom: none">
  227. <span class="liName">
  228. 派单时间
  229. </span>
  230. <span class="liInfo">
  231. {{detail.dispatchTime}}
  232. </span>
  233. </li>
  234. </ul>
  235. </div>
  236. <div class="reportBody" v-if="stepActive==='已处理'">
  237. <div class="handleTitle">处理信息</div>
  238. <ul class="detailUl">
  239. <li class="detailLi2">
  240. <span class="liName">
  241. 处理后拍照
  242. <span style="color: #B3B3B3;font-size: 28rpx">(支持图片上传限20M内,最多6张)</span>
  243. </span>
  244. <div style="display: flex;flex-wrap: wrap;gap: 24rpx">
  245. <div class="detailLi2Box annex-item"
  246. style="margin: 24rpx 0 0 0;"
  247. v-for="(item, index) in handleUrlList"
  248. :key="index">
  249. <img :src="item.url" alt="" class="anImg" @tap="clickImg(item.url)"/>
  250. </div>
  251. </div>
  252. </li>
  253. <li class="detailLi">
  254. <span class="liName">
  255. 处理人
  256. </span>
  257. <span class="liInfo">
  258. {{detail.handleUserName}}
  259. </span>
  260. </li>
  261. <li class="detailLi" style="border-bottom: none">
  262. <span class="liName">
  263. 处理时间
  264. </span>
  265. <span class="liInfo">
  266. {{detail.handleTime}}
  267. </span>
  268. </li>
  269. </ul>
  270. </div>
  271. <div class="reportBody" v-if="detail.evaluateStatus===2">
  272. <div class="evaluationBox" >
  273. <span class="evaName">您对本次服务的评价</span>
  274. <van-rate
  275. :value="detail.evaluateNum"
  276. :size="24"
  277. gutter="32rpx"
  278. void-color="#eee"
  279. color="#fd9a63"
  280. disabled-color="#fd9a63"
  281. disabled
  282. />
  283. </div>
  284. </div>
  285. <div class="buttonBox">
  286. <button class="zcBtn" @tap="closePage" :class="stepActive==='已处理'?'btn2':'btn '">关闭</button>
  287. <button class="btn tjBtn" v-if="stepActive!=='已处理'" @tap="onConfirm">提交</button>
  288. </div>
  289. </div>
  290. </template>
  291. <script>
  292. import {getRepairDispatchById,getUserLocalStorageInfo,getByCodes,getDispatchToPerson, editRepair} from "@/js_sdk/http";
  293. export default {
  294. data(){
  295. return{
  296. getUserLocalStorageInfo:getUserLocalStorageInfo(),
  297. showPicker:false,
  298. dc_key: ['QUICK_SELECTION'],
  299. isCheck:false,
  300. isCheck2:false,
  301. detail:{
  302. },
  303. checkList:[
  304. // {name:'挂件安装',isCheck:true},
  305. // {name:'我要投诉',isCheck:false},
  306. // {name:'疏通管道',isCheck:false},
  307. // {name:'维修线路',isCheck:false},
  308. // {name:'更换灯泡',isCheck:false},
  309. // {name:'网络维修',isCheck:false},
  310. // {name:'保洁服务',isCheck:false},
  311. // {name:'其他维修',isCheck:false},
  312. ],
  313. fileList:[],
  314. optionsType:'2',
  315. timeNow:'',
  316. value: "5",
  317. id:'',
  318. dic_SelectList:[],
  319. explainAnnexList:[],
  320. stepActive:'0',
  321. dispatchPerson:[],
  322. params: {
  323. id: '',
  324. status: 'acceptance',
  325. dispatchUserId:getUserLocalStorageInfo().userId,
  326. dispatchUserName: getUserLocalStorageInfo().username,
  327. handleUserName:'',
  328. dispatchTime: this.$common.transServDate(new Date()),
  329. handleUserId: '',
  330. remark: '',
  331. },
  332. handleParams:{
  333. id: '',
  334. status: 'processed',
  335. handleUrl:'',
  336. handleTime:'',
  337. handleUserId:getUserLocalStorageInfo().userId,
  338. handleUserName: getUserLocalStorageInfo().username,
  339. },
  340. handler:'',
  341. handleUrlList:[]
  342. }
  343. },
  344. onLoad(options) {
  345. const item = JSON.parse(options.item)
  346. this.id = item.id
  347. if (options.type==='待处理'){
  348. uni.setNavigationBarTitle({
  349. title: '报修处理',
  350. });
  351. }else if(options.type==='已处理'){
  352. uni.setNavigationBarTitle({
  353. title: '报修详情',
  354. });
  355. }else {
  356. uni.setNavigationBarTitle({
  357. title: '报修派单',
  358. });
  359. }
  360. this.getByCodes()
  361. },
  362. mounted(){
  363. this.getTime()
  364. this.getDispatch()
  365. },
  366. methods:{
  367. onConfirm(value) {
  368. // console.log(this.optionsType)
  369. if(this.optionsType=='1'){
  370. if (this.params.handleUserId == null || this.params.handleUserId === '') {
  371. uni.showToast({
  372. title: '请选择处理人',
  373. icon: 'none',
  374. mask: true,
  375. duration: 1000
  376. });
  377. return
  378. }
  379. this.params.id = this.id
  380. // console.log('this.params',this.params)
  381. editRepair(this.params).then((res) => {
  382. if (res.code === 200) {
  383. uni.showToast({
  384. title: '派单成功',
  385. icon: 'none',
  386. mask: true,
  387. duration: 1000
  388. });
  389. uni.navigateBack({})
  390. }else{
  391. uni.showToast({
  392. title: res.msg,
  393. icon: 'none',
  394. mask: true,
  395. duration: 1000
  396. });
  397. }
  398. })
  399. }else {
  400. if ( this.fileList.length<=0 || !this.fileList ){
  401. uni.showToast({
  402. title: '请上传处理图片',
  403. icon: 'none',
  404. mask: true,
  405. duration: 1000
  406. });
  407. return
  408. }
  409. if (this.stepActive==='待受理'){
  410. this.handleParams.dispatchUserId = this.getUserLocalStorageInfo.userId,
  411. this.handleParams.dispatchUserName = this.getUserLocalStorageInfo.username
  412. this.handleParams.dispatchTime = this.$common.transServDate(new Date())
  413. this.handleParams.remark = null
  414. }
  415. this.handleParams.id = this.id
  416. this.handleParams.handleUrl = JSON.stringify(this.fileList)
  417. this.handleParams.handleTime= this.$common.transServDate(new Date())
  418. // console.log('this.handleParams',this.handleParams)
  419. editRepair(this.handleParams).then((res) => {
  420. if (res.code === 200) {
  421. uni.showToast({
  422. title: '处理成功',
  423. icon: 'none',
  424. mask: true,
  425. duration: 1000
  426. });
  427. uni.navigateBack({})
  428. }else{
  429. uni.showToast({
  430. title: res.msg,
  431. icon: 'none',
  432. mask: true,
  433. duration: 1000
  434. });
  435. }
  436. })
  437. }
  438. },
  439. changeRemark(e){
  440. this.params.remark = e.detail
  441. },
  442. onSelect(val){
  443. // console.log('val',val.detail.value.text)
  444. this.handler = val.detail.value.text
  445. this.params.handleUserId = val.detail.value.value
  446. this.params.handleUserName = val.detail.value.text
  447. this.showPicker = false
  448. },
  449. changeHandle(e){
  450. // console.log(e)
  451. this.optionsType = e.detail
  452. },
  453. getDispatch(){
  454. getDispatchToPerson({}).then(res=>{
  455. this.dispatchPerson = res.data
  456. })
  457. },
  458. // 放大图片
  459. clickImg(url) {
  460. wx.previewImage({
  461. urls: [url], //接受的是一个数组,默认展示第一张
  462. current: "",
  463. success: function (res) {
  464. },
  465. fail: function (res) {
  466. },
  467. complete: function (res) {
  468. },
  469. })
  470. },
  471. async getByCodes() {
  472. let data = await getByCodes(JSON.stringify(this.dc_key));
  473. this.dic_SelectList = this.$common.handleDicList(data);
  474. this.checkList = this.dic_SelectList.QUICK_SELECTION
  475. this.getById()
  476. },
  477. getById(){
  478. const _this = this
  479. getRepairDispatchById(this.id).then(res=>{
  480. if (res.data) {
  481. const det = _this.getItemJson(res.data)
  482. this.detail = det
  483. // console.log('this.detail',this.detail)
  484. this.explainAnnexList = det.fileUrlList
  485. this.handleUrlList = det.handleUrlList
  486. this.detailStatus = det.status
  487. // this.params = {
  488. // id: det.id,
  489. // evaluateNum: det.evaluateNum,
  490. // score: det.score
  491. // }
  492. // this.evaluateVal = ((det.score == null ? 0 : det.score) / (det.evaluateNum == null ? 1 : det.evaluateNum))
  493. }
  494. })
  495. },
  496. getTime(){
  497. let timestamp = new Date().getTime();
  498. let dateStr = new Date().toLocaleDateString();
  499. let date = new Date();
  500. let year = date.getFullYear();
  501. let month = date.getMonth() + 1;
  502. let day = date.getDate();
  503. let hours = date.getHours();
  504. let minutes = date.getMinutes();
  505. let fullDateStr = `${year}-${month}-${day} ${hours}:${minutes < 10 ? '0' + minutes : minutes}`;
  506. console.log(fullDateStr);
  507. this.timeNow = fullDateStr
  508. return fullDateStr
  509. },
  510. getItemJson: function(item) {
  511. item.releaseTime = this.$common.transDate(item.releaseTime)
  512. item.createdAt = this.$common.transDate(item.createdAt)
  513. let transformedObject = this.dic_SelectList.QUICK_SELECTION.reduce((acc, obj) => {
  514. acc[obj.value] = obj.label;
  515. return acc;
  516. }, {});
  517. item.serviceType = transformedObject[item.serviceType]
  518. if (item.userId) {
  519. const user = item.userId.split('-')
  520. item.userPhone = user[1] + '-' + user[2]
  521. item.phone = user[2]
  522. }
  523. if (item.handleUserId) {
  524. const test = item.handleUserId.split('-')
  525. item.handleUserId = test[1] + '-' + test[2]
  526. item.hanleUserPhone = test[2]
  527. }
  528. // item.handleTime = this.$common.transDate(item.handleTime)
  529. switch (item.status) {
  530. case 'unAcceptance':
  531. this.stepActive = '待受理'
  532. break
  533. case 'acceptance':
  534. this.stepActive = '已受理'
  535. break
  536. case 'processed':
  537. this.stepActive = '已处理'
  538. break
  539. case 'unSubmit':
  540. this.stepActive = '暂存'
  541. break
  542. }
  543. if (item.fileUrl){
  544. // console.log('item.fileUrl' ,JSON.parse(item.fileUrl))
  545. const fileUrl = JSON.parse(item.fileUrl)
  546. const newFile = []
  547. fileUrl.forEach((e=>{
  548. newFile.push({
  549. imgUrl: e.imgUrl,
  550. id: e.id,
  551. url: e.url,
  552. type: e.type,
  553. });
  554. })
  555. )
  556. // console.log('newFile',newFile)
  557. item.fileUrlList = newFile
  558. }
  559. if (item.handleUrl ){
  560. // console.log('item.fileUrl' ,JSON.parse(item.fileUrl))
  561. const fileUrl = JSON.parse(item.handleUrl)
  562. const newFile = []
  563. fileUrl.forEach((e=>{
  564. newFile.push({
  565. imgUrl: e.imgUrl,
  566. id: e.id,
  567. url: e.url,
  568. type: e.type,
  569. });
  570. })
  571. )
  572. // console.log('newFile',newFile)
  573. item.handleUrlList = newFile
  574. }
  575. const handleUrls = JSON.parse(item.handleUrl)
  576. const handleUrl = []
  577. if (handleUrls !== null && handleUrls.length > 0) {
  578. handleUrls.forEach(item => {
  579. if (item.url) {
  580. const ul = {
  581. type: 'image',
  582. url: item.url.replace('/server', '/smartParkH5Server')
  583. }
  584. handleUrl.push(ul)
  585. }
  586. })
  587. }
  588. item.handleUrlList = handleUrl
  589. console.log('item',item)
  590. return item
  591. },
  592. closePage() {
  593. uni.navigateBack({})
  594. },
  595. deleteRYXXZP(event) {
  596. this.fileList.splice(event.detail.index, 1);
  597. this.$forceUpdate();
  598. },
  599. uploadRYXXZP(event) {
  600. // console.log(event)
  601. let that = this;
  602. const { file } = event.detail;
  603. uni.uploadFile({
  604. url: that.$constant.BASE_URI + "/wx/fileController/upload",
  605. filePath: file.url,
  606. name: "file",
  607. formData: { user: "test" },
  608. success(res) {
  609. // 上传完成需要更新 fileList
  610. let data = JSON.parse(res.data);
  611. that.fileList.push({
  612. imgUrl: "/FileController/download/" + data.data[0],
  613. id: data.data[0],
  614. url:
  615. that.$constant.BASE_URI +
  616. "/FileController/download/" +
  617. data.data[0],
  618. isImage: true,
  619. });
  620. },
  621. fail(res) {},
  622. });
  623. },
  624. }
  625. }
  626. </script>
  627. <style lang="scss">
  628. .addRepair{
  629. .reportBody{
  630. margin-top: 24rpx;
  631. padding: 38rpx 36rpx;
  632. background: white;
  633. //height: 1416rpx;
  634. box-sizing: border-box;
  635. .record {
  636. display: flex;
  637. align-items: center;
  638. justify-content: flex-end;
  639. color: #0365F9;
  640. font-size: 32rpx;
  641. .recordImg{
  642. width: 36rpx;
  643. height: 36rpx;
  644. padding: 5rpx 0 0 10rpx;
  645. }
  646. }
  647. .detailUl{
  648. margin-top: 20rpx;
  649. .liName{
  650. font-size: 32rpx;
  651. color: rgba(51, 51, 51, 1);
  652. white-space: nowrap;
  653. }
  654. .detailLi{
  655. display: flex;
  656. justify-content: space-between;
  657. align-items: center;
  658. padding: 32rpx 0;
  659. border-bottom: 2rpx solid #E6E6E6;
  660. .liInfo{
  661. display: inline-block;
  662. text-align: right;
  663. max-width: 428rpx;
  664. color: rgba(102, 102, 102, 1);
  665. font-size: 32rpx;
  666. line-height: 38rpx;
  667. display: flex;
  668. align-items: center;
  669. .phoneIcon{
  670. width: 64rpx;
  671. height: 64rpx;
  672. margin-left: 24rpx;
  673. }
  674. }
  675. .van-radio-group{
  676. display: flex;
  677. align-items: center;
  678. gap: 0 32rpx;
  679. }
  680. }
  681. .detailLi2{
  682. display: flex;
  683. flex-direction: column;
  684. padding: 32rpx 0;
  685. border-bottom: 2rpx solid #E6E6E6;
  686. .detailLi2BoxTop{
  687. display: flex;
  688. flex-wrap: wrap;
  689. justify-content: space-between;
  690. margin: 12rpx 0;
  691. .checkItem{
  692. width: 160rpx;
  693. height: 64rpx;
  694. font-size: 28rpx;
  695. color: #666666;
  696. display: flex;
  697. align-items: center;
  698. justify-content: center;
  699. background: #F5F7FA;
  700. border-radius: 8rpx;
  701. margin: 12rpx 0;
  702. }
  703. .checked{
  704. background: #0365F9;
  705. color: white;
  706. }
  707. }
  708. }
  709. }
  710. }
  711. .anImg{
  712. width: 200rpx;
  713. height: 200rpx;
  714. }
  715. .van-cell {
  716. background: #F5F7FA !important;
  717. border-radius: 8rpx;
  718. font-size: 28rpx;
  719. }
  720. .buttonBox{
  721. display: flex;
  722. justify-content: center;
  723. .btn{
  724. width: 240rpx;
  725. height: 80rpx;
  726. display: flex;
  727. border-radius: 8rpx;
  728. align-items: center;
  729. justify-content: center;
  730. margin: 48rpx 16rpx 150rpx 16rpx;
  731. color: white;
  732. letter-spacing: 2rpx;
  733. text-indent: 2rpx;
  734. }
  735. .btn2{
  736. width: 654rpx;
  737. height: 96rpx;
  738. display: flex;
  739. border-radius: 8rpx;
  740. align-items: center;
  741. justify-content: center;
  742. margin: 48rpx 48rpx 150rpx 48rpx;
  743. color: white;
  744. letter-spacing: 2rpx;
  745. text-indent: 2rpx;
  746. }
  747. .zcBtn{
  748. background: rgba(0, 0, 0, 0.05);
  749. color: rgba(3, 101, 249, 1);
  750. &::after{
  751. border: none;
  752. }
  753. }
  754. .tjBtn{
  755. background: #0365F9;
  756. }
  757. }
  758. .handleBox{
  759. background: white;
  760. padding: 32rpx;
  761. margin: 24rpx 0;
  762. .imageBox{
  763. display: flex;
  764. justify-content: space-evenly;
  765. align-items: center;
  766. margin-top: 48rpx;
  767. .handleImg{
  768. width: 72rpx;
  769. height: 72rpx;
  770. margin-bottom: 8rpx;
  771. }
  772. .handleArrow{
  773. width: 64rpx;
  774. height: 20rpx;
  775. }
  776. }
  777. .imageItem{
  778. display: flex;
  779. flex-direction: column;
  780. align-items: center;
  781. color: rgba(34, 34, 34, 1);
  782. font-size: 28rpx;
  783. }
  784. }
  785. .handleTitle{
  786. color: rgba(34, 34, 34, 1);
  787. font-size: 36rpx;
  788. font-weight: 600;
  789. }
  790. .evaluationBox {
  791. width: 686rpx;
  792. height: 100rpx;
  793. padding: 0 24rpx;
  794. display: flex;
  795. align-items: center;
  796. justify-content: space-between;
  797. background: #f5f7fa;
  798. border-radius: 8rpx;
  799. box-sizing: border-box;
  800. margin-top: 24rpx;
  801. .evaName{
  802. font-size: 28rpx;
  803. color: rgba(51, 51, 51, 1);
  804. }
  805. }
  806. }
  807. </style>