dispatch.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  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="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="stepActive==='已处理'">
  272. <div class="evaluationBox" >
  273. <span class="evaName">您对本次服务的评价</span>
  274. <van-rate
  275. :value="value"
  276. :size="24"
  277. gutter="32rpx"
  278. void-color="#eee"
  279. bind:change="onChange"
  280. color="#fd9a63"
  281. />
  282. </div>
  283. </div>
  284. <div class="buttonBox">
  285. <button class="zcBtn" @tap="closePage" :class="stepActive==='已处理'?'btn2':'btn '">关闭</button>
  286. <button class="btn tjBtn" v-if="stepActive!=='已处理'" @tap="onConfirm">提交</button>
  287. </div>
  288. </div>
  289. </template>
  290. <script>
  291. import {getRepairDispatchById,getUserLocalStorageInfo,getByCodes,getDispatchToPerson, editRepair} from "@/js_sdk/http";
  292. export default {
  293. data(){
  294. return{
  295. getUserLocalStorageInfo:getUserLocalStorageInfo(),
  296. showPicker:false,
  297. dc_key: ['QUICK_SELECTION'],
  298. isCheck:false,
  299. isCheck2:false,
  300. detail:{
  301. },
  302. checkList:[
  303. // {name:'挂件安装',isCheck:true},
  304. // {name:'我要投诉',isCheck:false},
  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. ],
  312. fileList:[],
  313. optionsType:'2',
  314. timeNow:'',
  315. value: "5",
  316. id:'',
  317. dic_SelectList:[],
  318. explainAnnexList:[],
  319. processedAnnexList:[],
  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. this.handleParams.id = this.id
  410. this.handleParams.handleUrl = JSON.stringify(this.fileList)
  411. this.handleParams.handleTime= this.getTime()
  412. // console.log('this.handleParams',this.handleParams)
  413. editRepair(this.handleParams).then((res) => {
  414. if (res.code === 200) {
  415. uni.showToast({
  416. title: '处理成功',
  417. icon: 'none',
  418. mask: true,
  419. duration: 1000
  420. });
  421. uni.navigateBack({})
  422. }else{
  423. uni.showToast({
  424. title: res.msg,
  425. icon: 'none',
  426. mask: true,
  427. duration: 1000
  428. });
  429. }
  430. })
  431. }
  432. },
  433. changeRemark(e){
  434. this.params.remark = e.detail
  435. },
  436. onSelect(val){
  437. // console.log('val',val.detail.value.text)
  438. this.handler = val.detail.value.text
  439. this.params.handleUserId = val.detail.value.value
  440. this.params.handleUserName = val.detail.value.text
  441. this.showPicker = false
  442. },
  443. changeHandle(e){
  444. // console.log(e)
  445. this.optionsType = e.detail
  446. },
  447. getDispatch(){
  448. getDispatchToPerson({}).then(res=>{
  449. this.dispatchPerson = res.data
  450. })
  451. },
  452. // 放大图片
  453. clickImg(url) {
  454. wx.previewImage({
  455. urls: [url], //接受的是一个数组,默认展示第一张
  456. current: "",
  457. success: function (res) {
  458. },
  459. fail: function (res) {
  460. },
  461. complete: function (res) {
  462. },
  463. })
  464. },
  465. async getByCodes() {
  466. let data = await getByCodes(JSON.stringify(this.dc_key));
  467. this.dic_SelectList = this.$common.handleDicList(data);
  468. this.checkList = this.dic_SelectList.QUICK_SELECTION
  469. this.getById()
  470. },
  471. getById(){
  472. const _this = this
  473. getRepairDispatchById(this.id).then(res=>{
  474. if (res.data) {
  475. const det = _this.getItemJson(res.data)
  476. this.detail = det
  477. // console.log('this.detail',this.detail)
  478. this.explainAnnexList = det.fileUrlList
  479. this.handleUrlList = det.handleUrlList
  480. this.processedAnnexList = det.handleUrlList
  481. this.detailStatus = det.status
  482. // this.params = {
  483. // id: det.id,
  484. // evaluateNum: det.evaluateNum,
  485. // score: det.score
  486. // }
  487. // this.evaluateVal = ((det.score == null ? 0 : det.score) / (det.evaluateNum == null ? 1 : det.evaluateNum))
  488. }
  489. })
  490. },
  491. getTime(){
  492. let timestamp = new Date().getTime();
  493. let dateStr = new Date().toLocaleDateString();
  494. let date = new Date();
  495. let year = date.getFullYear();
  496. let month = date.getMonth() + 1;
  497. let day = date.getDate();
  498. let hours = date.getHours();
  499. let minutes = date.getMinutes();
  500. let fullDateStr = `${year}-${month}-${day} ${hours}:${minutes < 10 ? '0' + minutes : minutes}`;
  501. console.log(fullDateStr);
  502. this.timeNow = fullDateStr
  503. return fullDateStr
  504. },
  505. getItemJson: function(item) {
  506. item.releaseTime = this.$common.transDate(item.releaseTime)
  507. item.createdAt = this.$common.transDate(item.createdAt)
  508. let transformedObject = this.dic_SelectList.QUICK_SELECTION.reduce((acc, obj) => {
  509. acc[obj.value] = obj.label;
  510. return acc;
  511. }, {});
  512. item.serviceType = transformedObject[item.serviceType]
  513. if (item.userId) {
  514. const user = item.userId.split('-')
  515. item.userPhone = user[1] + '-' + user[2]
  516. item.phone = user[2]
  517. }
  518. if (item.handleUserId) {
  519. const test = item.handleUserId.split('-')
  520. item.handleUserId = test[1] + '-' + test[2]
  521. item.hanleUserPhone = test[2]
  522. }
  523. // item.handleTime = this.$common.transDate(item.handleTime)
  524. switch (item.status) {
  525. case 'unAcceptance':
  526. this.stepActive = '待受理'
  527. break
  528. case 'acceptance':
  529. this.stepActive = '已受理'
  530. break
  531. case 'processed':
  532. this.stepActive = '已处理'
  533. break
  534. case 'unSubmit':
  535. this.stepActive = '暂存'
  536. break
  537. }
  538. if (item.fileUrl){
  539. // console.log('item.fileUrl' ,JSON.parse(item.fileUrl))
  540. const fileUrl = JSON.parse(item.fileUrl)
  541. const newFile = []
  542. fileUrl.forEach((e=>{
  543. newFile.push({
  544. imgUrl: e.imgUrl,
  545. id: e.id,
  546. url: e.url,
  547. type: e.type,
  548. });
  549. })
  550. )
  551. // console.log('newFile',newFile)
  552. item.fileUrlList = newFile
  553. }
  554. if (item.handleUrl ){
  555. // console.log('item.fileUrl' ,JSON.parse(item.fileUrl))
  556. const fileUrl = JSON.parse(item.handleUrl)
  557. const newFile = []
  558. fileUrl.forEach((e=>{
  559. newFile.push({
  560. imgUrl: e.imgUrl,
  561. id: e.id,
  562. url: e.url,
  563. type: e.type,
  564. });
  565. })
  566. )
  567. // console.log('newFile',newFile)
  568. item.handleUrlList = newFile
  569. }
  570. const handleUrls = JSON.parse(item.handleUrl)
  571. const handleUrl = []
  572. if (handleUrls !== null && handleUrls.length > 0) {
  573. handleUrls.forEach(item => {
  574. if (item.url) {
  575. const ul = {
  576. type: 'image',
  577. url: item.url.replace('/server', '/smartParkH5Server')
  578. }
  579. handleUrl.push(ul)
  580. }
  581. })
  582. }
  583. item.handleUrlList = handleUrl
  584. console.log('item',item)
  585. return item
  586. },
  587. closePage() {
  588. uni.navigateBack({})
  589. },
  590. deleteRYXXZP(event) {
  591. this.fileList.splice(event.detail.index, 1);
  592. this.$forceUpdate();
  593. },
  594. uploadRYXXZP(event) {
  595. // console.log(event)
  596. let that = this;
  597. const { file } = event.detail;
  598. uni.uploadFile({
  599. url: that.$constant.BASE_URI + "/wx/fileController/upload",
  600. filePath: file.url,
  601. name: "file",
  602. formData: { user: "test" },
  603. success(res) {
  604. // 上传完成需要更新 fileList
  605. let data = JSON.parse(res.data);
  606. that.fileList.push({
  607. imgUrl: "/FileController/download/" + data.data[0],
  608. id: data.data[0],
  609. url:
  610. that.$constant.BASE_URI +
  611. "/FileController/download/" +
  612. data.data[0],
  613. isImage: true,
  614. });
  615. },
  616. fail(res) {},
  617. });
  618. },
  619. }
  620. }
  621. </script>
  622. <style lang="scss">
  623. .addRepair{
  624. .reportBody{
  625. margin-top: 24rpx;
  626. padding: 38rpx 36rpx;
  627. background: white;
  628. //height: 1416rpx;
  629. box-sizing: border-box;
  630. .record {
  631. display: flex;
  632. align-items: center;
  633. justify-content: flex-end;
  634. color: #0365F9;
  635. font-size: 32rpx;
  636. .recordImg{
  637. width: 36rpx;
  638. height: 36rpx;
  639. padding: 5rpx 0 0 10rpx;
  640. }
  641. }
  642. .detailUl{
  643. margin-top: 20rpx;
  644. .liName{
  645. font-size: 32rpx;
  646. color: rgba(51, 51, 51, 1);
  647. white-space: nowrap;
  648. }
  649. .detailLi{
  650. display: flex;
  651. justify-content: space-between;
  652. align-items: center;
  653. padding: 32rpx 0;
  654. border-bottom: 2rpx solid #E6E6E6;
  655. .liInfo{
  656. display: inline-block;
  657. text-align: right;
  658. max-width: 428rpx;
  659. color: rgba(102, 102, 102, 1);
  660. font-size: 32rpx;
  661. line-height: 38rpx;
  662. display: flex;
  663. align-items: center;
  664. .phoneIcon{
  665. width: 64rpx;
  666. height: 64rpx;
  667. margin-left: 24rpx;
  668. }
  669. }
  670. .van-radio-group{
  671. display: flex;
  672. align-items: center;
  673. gap: 0 32rpx;
  674. }
  675. }
  676. .detailLi2{
  677. display: flex;
  678. flex-direction: column;
  679. padding: 32rpx 0;
  680. border-bottom: 2rpx solid #E6E6E6;
  681. .detailLi2BoxTop{
  682. display: flex;
  683. flex-wrap: wrap;
  684. justify-content: space-between;
  685. margin: 12rpx 0;
  686. .checkItem{
  687. width: 160rpx;
  688. height: 64rpx;
  689. font-size: 28rpx;
  690. color: #666666;
  691. display: flex;
  692. align-items: center;
  693. justify-content: center;
  694. background: #F5F7FA;
  695. border-radius: 8rpx;
  696. margin: 12rpx 0;
  697. }
  698. .checked{
  699. background: #0365F9;
  700. color: white;
  701. }
  702. }
  703. }
  704. }
  705. }
  706. .anImg{
  707. width: 200rpx;
  708. height: 200rpx;
  709. }
  710. .van-cell {
  711. background: #F5F7FA !important;
  712. border-radius: 8rpx;
  713. font-size: 28rpx;
  714. }
  715. .buttonBox{
  716. display: flex;
  717. justify-content: center;
  718. .btn{
  719. width: 240rpx;
  720. height: 80rpx;
  721. display: flex;
  722. border-radius: 8rpx;
  723. align-items: center;
  724. justify-content: center;
  725. margin: 48rpx 16rpx 150rpx 16rpx;
  726. color: white;
  727. letter-spacing: 2rpx;
  728. text-indent: 2rpx;
  729. }
  730. .btn2{
  731. width: 654rpx;
  732. height: 96rpx;
  733. display: flex;
  734. border-radius: 8rpx;
  735. align-items: center;
  736. justify-content: center;
  737. margin: 48rpx 48rpx 150rpx 48rpx;
  738. color: white;
  739. letter-spacing: 2rpx;
  740. text-indent: 2rpx;
  741. }
  742. .zcBtn{
  743. background: rgba(0, 0, 0, 0.05);
  744. color: rgba(3, 101, 249, 1);
  745. &::after{
  746. border: none;
  747. }
  748. }
  749. .tjBtn{
  750. background: #0365F9;
  751. }
  752. }
  753. .handleBox{
  754. background: white;
  755. padding: 32rpx;
  756. margin: 24rpx 0;
  757. .imageBox{
  758. display: flex;
  759. justify-content: space-evenly;
  760. align-items: center;
  761. margin-top: 48rpx;
  762. .handleImg{
  763. width: 72rpx;
  764. height: 72rpx;
  765. margin-bottom: 8rpx;
  766. }
  767. .handleArrow{
  768. width: 64rpx;
  769. height: 20rpx;
  770. }
  771. }
  772. .imageItem{
  773. display: flex;
  774. flex-direction: column;
  775. align-items: center;
  776. color: rgba(34, 34, 34, 1);
  777. font-size: 28rpx;
  778. }
  779. }
  780. .handleTitle{
  781. color: rgba(34, 34, 34, 1);
  782. font-size: 36rpx;
  783. font-weight: 600;
  784. }
  785. .evaluationBox {
  786. width: 686rpx;
  787. height: 100rpx;
  788. padding: 0 24rpx;
  789. display: flex;
  790. align-items: center;
  791. justify-content: space-between;
  792. background: #f5f7fa;
  793. border-radius: 8rpx;
  794. box-sizing: border-box;
  795. margin-top: 24rpx;
  796. .evaName{
  797. font-size: 32rpx;
  798. color: rgba(51, 51, 51, 1);
  799. }
  800. }
  801. }
  802. </style>