mainPointsDetail.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988
  1. <template>
  2. <view class="mainPointsDetailPage">
  3. <tm-modal v-if="showSelectModal" @click="clickModalhandle">
  4. <view class="checkItemResultModal">
  5. <view class="modalContent">
  6. <view class="modalBar">请选择查核结果</view>
  7. <scroll-view class="scroll" scroll-y="true" >
  8. <view v-for="item in checkItemResultList" class="list" :key="item.id" @click="selectResultHandle(item.resultName)" >{{item.resultName}}</view>
  9. <!-- <view class="list">无缺失</view>
  10. <view class="list">主要缺失</view>
  11. <view class="list" >不适用</view>
  12. <view class="list">无缺失</view>
  13. <view class="list">主要缺失</view>
  14. <view class="list" >不适用</view>
  15. <view class="list">无缺失</view>
  16. <view class="list">主要缺失</view> -->
  17. </scroll-view>
  18. </view>
  19. </view>
  20. </tm-modal>
  21. <scroll-view scroll-y="true" class="scroll-y">
  22. <view class="checkItem">
  23. <view class="chBg">
  24. <image
  25. src="../../static/chahexiang-bg.png"
  26. mode=""
  27. class="img"
  28. ></image>
  29. <text class="title">查核项</text>
  30. </view>
  31. <image
  32. src="../../static/tuli.png"
  33. mode=""
  34. class="tlImg"
  35. @click="toTuLi"
  36. ></image>
  37. <view class="chContent">
  38. <view class="checkItemName">{{ data.checkItemName ? data.checkItemName : "" }}</view>
  39. <view class="checkPointName">{{ data.checkPointName ? data.checkPointName : "" }}</view>
  40. <view class="cont">
  41. <view class="floatLeft other">
  42. <view class="letterTitle2">{{ data.deptName ? data.deptName : "" }}</view>
  43. <view class="letterTitle">查核单位</view>
  44. </view>
  45. <view class="floatLeft borderLine"></view>
  46. <view class="floatLeft other">
  47. <view class="letterTitle2">{{ data.checkModelName ? data.checkModelName : "" }}</view>
  48. <view class="letterTitle">查核方式</view>
  49. </view>
  50. <view class="floatLeft borderLine"></view>
  51. <view class="floatLeft other">
  52. <view class="letterTitle2">{{ data.lastResult ? data.lastResult : "" }}</view>
  53. <view class="letterTitle">上次结果</view>
  54. </view>
  55. <view class="floatLeft borderLine"></view>
  56. <view class="floatLeft other">
  57. <view class="letterTitle2">{{ data.checkResult ? data.checkResult : "" }}</view>
  58. <view class="letterTitle">本次结果</view>
  59. </view>
  60. </view>
  61. <view class="checked">
  62. <view
  63. class="checked-checkItem"
  64. v-for="item in checkConfiglist"
  65. :key="item.value"
  66. @click="checkedOne(item.attr)"
  67. :style="
  68. Index == item.attr
  69. ? { backgroundColor: '#3377FF', color: '#fff' }
  70. : { backgroundColor: '#EBEFF7' }
  71. "
  72. >{{item.attr}}
  73. <view v-if="lastIndex == item.attr"
  74. ><image
  75. src="../../static/shangci.png"
  76. mode=""
  77. class="img"
  78. ></image>
  79. <text class="lastName">上次</text></view
  80. >
  81. </view>
  82. <!-- <view
  83. class="checked-checkItem"
  84. @click="checkedOne(1)"
  85. :style="
  86. Index == 1
  87. ? { backgroundColor: '#3377FF', color: '#fff' }
  88. : { backgroundColor: '#EBEFF7' }
  89. "
  90. >不适用
  91. <view v-if="lastIndex == 1"
  92. ><image
  93. src="../../static/shangci.png"
  94. mode=""
  95. class="img"
  96. ></image>
  97. <text class="lastName">上次</text></view
  98. >
  99. </view> -->
  100. <!-- <view
  101. class="checked-checkItem"
  102. @click="checkedOne(2)"
  103. :style="
  104. Index == 2
  105. ? { backgroundColor: '#3377FF', color: '#fff' }
  106. : { backgroundColor: '#EBEFF7' }
  107. "
  108. >无缺失
  109. <view v-if="lastIndex == 2"
  110. ><image
  111. src="../../static/shangci.png"
  112. mode=""
  113. class="img"
  114. ></image>
  115. <text class="lastName">上次</text></view
  116. >
  117. </view>
  118. <view
  119. class="checked-checkItem"
  120. @click="checkedOne(3)"
  121. :style="
  122. Index == 3
  123. ? { backgroundColor: '#3377FF', color: '#fff' }
  124. : { backgroundColor: '#EBEFF7' }
  125. "
  126. >主要缺失
  127. <view v-if="lastIndex == 3"
  128. ><image
  129. src="../../static/shangci.png"
  130. mode=""
  131. class="img"
  132. ></image>
  133. <text class="lastName">上次</text></view
  134. >
  135. </view>
  136. <view
  137. class="checked-checkItem"
  138. @click="checkedOne(4)"
  139. :style="
  140. Index == 4
  141. ? { backgroundColor: '#3377FF', color: '#fff' }
  142. : { backgroundColor: '#EBEFF7' }
  143. "
  144. >次要缺失
  145. <view v-if="lastIndex == 4"
  146. ><image
  147. src="../../static/shangci.png"
  148. mode=""
  149. class="img"
  150. ></image>
  151. <text class="lastName">上次</text></view
  152. >
  153. </view>
  154. <view
  155. class="checked-checkItem"
  156. @click="checkedOne(5)"
  157. :style="
  158. Index == 5
  159. ? { backgroundColor: '#3377FF', color: '#fff' }
  160. : { backgroundColor: '#EBEFF7' }
  161. "
  162. >观察事项
  163. <view v-if="lastIndex == 5"
  164. ><image
  165. src="../../static/shangci.png"
  166. mode=""
  167. class="img"
  168. ></image>
  169. <text class="lastName">上次</text></view
  170. >
  171. </view> -->
  172. </view>
  173. <view class="more" @click="toHistory">
  174. <text>查看改善历史</text>
  175. <view class="moreImg">
  176. <image
  177. src="../../static/blue-arrow.png"
  178. mode=""
  179. class="moreImg2"
  180. ></image>
  181. </view>
  182. </view>
  183. </view>
  184. </view>
  185. <view v-if="data.checkModelName == '访谈'" class="talk">
  186. <view v-for="(item, i) in talkList">
  187. <view class="talkTitle">
  188. <text
  189. >访谈内容{{ i + 1 }}{{ i == 0 ? "" : "(访谈人员:护士、医生)" }}</text
  190. >
  191. <text v-if="i != 0" class="del" @click="del(i)">删除</text>
  192. </view>
  193. <view>
  194. <view class="talkResult">
  195. <view class="seeResultFloorOne">
  196. <text class="seeName">查核结果</text>
  197. <text v-if="checkItemResultList.length>0" class="threePoint" @click="openSelectModal(i)">⋮</text>
  198. </view>
  199. <textarea
  200. maxlength="300"
  201. class="seeTextarea"
  202. value=""
  203. placeholder="请输入"
  204. :value="item.talkResult"
  205. @blur="changeTextarea($event, i)"
  206. ></textarea>
  207. </view>
  208. <view class="talkImg" @click="imgClick(i)">
  209. <tm-upload-img
  210. label="上传图片"
  211. :filePaths="item.filePath"
  212. :isMultiple="true"
  213. @changeFilePaths="changeFilePaths2"
  214. />
  215. </view>
  216. </view>
  217. </view>
  218. </view>
  219. <view v-else class="see">
  220. <view class="seeResult">
  221. <view class="seeResultFloorOne">
  222. <text class="seeName">查核结果</text>
  223. <text class="threePoint" v-if="checkItemResultList.length>0" @click="openSelectModal">⋮</text>
  224. <!-- <dropdown :list="checkItemResultList" :current="currentSelect" @onClick="dropDownChange"></dropdown> -->
  225. </view>
  226. <textarea
  227. maxlength="300"
  228. class="seeTextarea"
  229. value=""
  230. placeholder="请输入"
  231. :value="recordList[0].talkResult"
  232. @blur="changeTextarea2"
  233. ></textarea>
  234. </view>
  235. <view class="seeImg">
  236. <tm-upload-img
  237. label="上传图片"
  238. :filePaths="filePath"
  239. :isMultiple="true"
  240. @changeFilePaths="changeFilePaths"
  241. />
  242. </view>
  243. </view>
  244. <button
  245. class="insert"
  246. @click="insert"
  247. v-if="data.checkModelName == '访谈'"
  248. >
  249. + 增加一条记录
  250. </button>
  251. </scroll-view>
  252. <!-- <button type="primary" class="sureDetail" @click="sureDetail" v-if="data.display?data.display:false">完成</button> -->
  253. <view class="bottomMenuGroup">
  254. <view class="menuBtn" @click="goToPrevPage">
  255. <image class="threeLineMenuIcon" src="/static/threeLineMenu.png" ></image>
  256. </view>
  257. <view class="prevBtn" @click="switchItem(1)">下一项</view>
  258. <view class="nextBtn" @click="sureDetail" v-if="data.display?data.display:false">完成</view>
  259. </view>
  260. </view>
  261. </template>
  262. <script>
  263. export default {
  264. data() {
  265. return {
  266. value:'',
  267. showSelectModal:false,
  268. data: {}, //详情数据
  269. lastIndex: null, //上次选中的结果
  270. Index: null, //点击修改本次选中样式
  271. filePath: [],
  272. recordList: [{ seeResult: "", filePath: [] }],
  273. talkLength: 1,
  274. talkList: [{ talkResult: "", filePath: [] }],
  275. editIndex: null,
  276. resultConfigList: [],
  277. id: "",
  278. checkPointId: "",
  279. itemBelongGroup:[],
  280. itemId:'',
  281. currentEditTextAreaIndex:'',
  282. checkItemResultList:[],//查核结果说明下拉列表
  283. currentSelect:'',
  284. checkConfiglist:[],//查核情况可配置列表
  285. };
  286. },
  287. mounted() {
  288. this.checkTaskDetail(this.id);
  289. this.getPeizhiList();
  290. // this.$refs.pop.open();
  291. },
  292. methods: {
  293. clickModalhandle(){
  294. this.showSelectModal = false;
  295. },
  296. openSelectModal(index){
  297. console.log({index});
  298. if(index>=0){
  299. this.currentEditTextAreaIndex = index;
  300. }
  301. this.showSelectModal = true;
  302. },
  303. selectResultHandle(val){
  304. console.log({val});
  305. console.log('currentEditTextAreaIndex',this.currentEditTextAreaIndex);
  306. if(this.data.checkModelName == '访谈'){
  307. this.talkList[this.currentEditTextAreaIndex].talkResult = val;
  308. }else {
  309. this.recordList[0].talkResult = val;
  310. }
  311. this.showSelectModal = false;
  312. },
  313. checkTaskDetail(id) {
  314. this.$store.dispatch({
  315. type: "mainPointsDetail/commActions",
  316. payload: {
  317. key: "checkTaskDetail",
  318. data: {
  319. id: id,
  320. },
  321. },
  322. }).then((res) => {
  323. this.id = id;
  324. if (res) {
  325. this.data = res;
  326. if (res && res.lastResult == "不适用") {
  327. // this.lastIndex = 1;
  328. this.lastIndex = res.lastResult;
  329. } else if (res && res.lastResult == "无缺失") {
  330. this.lastIndex = res.lastResult;
  331. } else if (res && res.lastResult == "主要缺失") {
  332. this.lastIndex = res.lastResult;
  333. } else if (res && res.lastResult == "次要缺失") {
  334. this.lastIndex = res.lastResult;
  335. } else if (res && res.lastResult == "观察事项") {
  336. this.lastIndex = res.lastResult;
  337. } else {
  338. this.lastIndex = 0;
  339. }
  340. }
  341. });
  342. },
  343. getPeizhiList() {
  344. this.$store.dispatch({
  345. type: "configure/commActions",
  346. payload: {
  347. key: "getResultConfig",
  348. },
  349. }).then((res) => {
  350. this.resultConfigList = res ? res : [];
  351. });
  352. },
  353. checkedOne(data) {
  354. this.Index = data;
  355. this.data.checkResult = data;
  356. // if (data == 1) {
  357. // this.data.checkResult = "不适用";
  358. // } else if (data == 2) {
  359. // this.data.checkResult = "无缺失";
  360. // } else if (data == 3) {
  361. // this.data.checkResult = "主要缺失";
  362. // } else if (data == 4) {
  363. // this.data.checkResult = "次要缺失";
  364. // } else if (data == 5) {
  365. // this.data.checkResult = "观察事项";
  366. // } else {
  367. // this.data.checkResult = "";
  368. // }
  369. },
  370. changeFilePaths(filePaths, index) {
  371. let _recordList = [...this.recordList];
  372. _recordList[index].filePath = filePaths;
  373. this.filePath = _recordList[0].filePath;
  374. },
  375. insert() {
  376. let list = [...this.talkList];
  377. if (list.length < 10) {
  378. list.push({ talkResult: "", filePath: [] });
  379. this.talkList = list;
  380. }
  381. },
  382. del(index) {
  383. let list = [...this.talkList];
  384. let list2 = [];
  385. for (let i = 0; i < list.length; i++) {
  386. if (i != index) {
  387. list2.push(list[i]);
  388. }
  389. }
  390. this.talkList = list2;
  391. },
  392. changeFilePaths2(filePaths, index) {
  393. for (let j = 0; j < this.talkList.length; j++) {
  394. this.talkList[this.editIndex].filePath = filePaths;
  395. }
  396. },
  397. changeTextarea(e, i) {
  398. for (let j = 0; j < this.talkList.length; j++) {
  399. this.talkList[i].talkResult = e.detail.value;
  400. }
  401. },
  402. changeTextarea2(e) {
  403. this.recordList[0].seeResult = e.target.value;
  404. },
  405. imgClick(i) {
  406. this.editIndex = i;
  407. },
  408. sureDetail(e) {
  409. if (this.Index) {
  410. let params = {
  411. id: this.data.id,
  412. checkResult: this.data.checkResult,
  413. checkResultRequestList: [],
  414. };
  415. if (this.data.checkModelName == "访谈") {
  416. let list = [];
  417. for (let i = 0; i < this.talkList.length; i++) {
  418. let path = "";
  419. for (let j = 0; j < this.talkList[i].filePath.length; j++) {
  420. if (j == 0) {
  421. path += `${this.talkList[i].filePath[j]}`;
  422. } else {
  423. path += `,${this.talkList[i].filePath[j]}`;
  424. }
  425. }
  426. let item = {
  427. checkResultId: i,
  428. checkResultDescribe: this.talkList[i].talkResult,
  429. checkResultUrl: path,
  430. };
  431. list.push(item);
  432. }
  433. params.checkResultRequestList = list;
  434. } else {
  435. let list = [];
  436. let path = "";
  437. for (let j = 0; j < this.recordList[0].filePath.length; j++) {
  438. if (j == 0) {
  439. path += `${this.recordList[0].filePath[j]}`;
  440. } else {
  441. path += `,${this.recordList[0].filePath[j]}`;
  442. }
  443. }
  444. let item = {
  445. checkResultId: 1,
  446. checkResultDescribe: this.recordList[0].seeResult,
  447. checkResultUrl: path,
  448. };
  449. list.push(item);
  450. params.checkResultRequestList = list;
  451. }
  452. const checkConfiglist = JSON.parse(JSON.stringify(this.checkConfiglist))
  453. // console.log({'checkConfiglist':this.checkConfiglist});
  454. // console.log(checkConfiglist[0].attr);
  455. this.$store.dispatch({
  456. type: "mainPointsDetail/commActions",
  457. payload: {
  458. key: "saveCheckTaskDetail",
  459. data: {
  460. ...params,
  461. },
  462. },
  463. }).then((res) => {
  464. // console.log({'res':res,'checkConfiglist':this.checkConfiglist});
  465. if (res) {
  466. for (let i = 0; i < checkConfiglist.length; i++) {
  467. if (
  468. checkConfiglist[i].attr == params.checkResult &&
  469. (checkConfiglist[i].resultType == 2 ||
  470. checkConfiglist[i].resultType == 3)
  471. ) {
  472. console.log('开始提交改善前准备');
  473. let param = {
  474. situationId: this.data.situationId,
  475. situationName: this.data.situationName,
  476. checkGroupId: this.data.checkGroupId,
  477. checkGroupName: this.data.checkGroupName,
  478. checkItemId: this.data.checkItemId,
  479. checkItemName: this.data.checkItemName,
  480. checkPointId: this.data.checkPointId,
  481. checkPointName: this.data.checkPointName,
  482. deptName: this.data.deptName,
  483. deptId: this.data.deptId,
  484. appointFlag: false,
  485. desicion: 0,
  486. taskType: "1",
  487. checkId: this.data.checkId,
  488. checkResult:0,
  489. newResultType:checkConfiglist[i].resultType,
  490. // checkResult: this.resultConfigList[i].id,
  491. receiveEmpId: this.data.receiveEmpId,
  492. receiveEmpName: this.data.receiveEmpName,
  493. checkDetailId: this.data.id,
  494. };
  495. this.$store.dispatch({
  496. type: "mission/commActions",
  497. payload: {
  498. key: "comTaskCirculation",
  499. data: {
  500. ...param,
  501. },
  502. },
  503. }).then(() => {
  504. uni.navigateTo({
  505. url: `/pages/auditItemDetails/auditItemDetails?id=${this.data.id}&checkPointId=${this.checkPointId}`,
  506. });
  507. });
  508. }
  509. }
  510. }
  511. });
  512. } else {
  513. uni.showModal({
  514. title: "检查选项未选择",
  515. showCancel: false,
  516. });
  517. }
  518. },
  519. toTuLi() {
  520. uni.navigateTo({
  521. url: `/pages/legendDetails/legendDetails?checkItemId=${this.data.checkItemId}&checkPointId=${this.checkPointId}`,
  522. });
  523. },
  524. toHistory() {
  525. const situationId = this.data.situationId;
  526. this.$store.dispatch({
  527. type: 'mission/commActions',
  528. payload: {
  529. key: "getMissionList",
  530. data:{situationId}
  531. }
  532. }).then(data => {
  533. if(data) {
  534. if(data.improvingTaskResponses.length>0){
  535. uni.navigateTo({
  536. url: `/pages/improve-mission-list/improve-mission-list?situationId=${this.data.situationId}`,
  537. });
  538. }else {
  539. uni.showModal({
  540. content: '暂无改善历史',
  541. showCancel:false
  542. });
  543. }
  544. // this.improvingTaskList = data.improvingTaskResponses || [];
  545. // this.completeTaskList = data.improveCompleteResponses || [];
  546. }
  547. });
  548. /** 请求参数 data
  549. * situationId: 情境id 当管路员或者查核者通过情境进入任务列表时 必传
  550. * checkItemId 单位负责人通过 查核要点进入改善任务列表时 必传
  551. */
  552. },
  553. goToPrevPage(){
  554. // window.history.back();
  555. // const pages = getCurrentPages();
  556. // console.log({pages});
  557. uni.navigateBack({
  558. delta: 1
  559. });
  560. },
  561. switchItem(num){
  562. let current = this.itemBelongGroup.filter(item=>{
  563. return item.id == this.id;
  564. });
  565. if(num<0){
  566. if(current[0].index==0){
  567. uni.showToast({
  568. title: '已经没有上一项',
  569. duration: 2000,
  570. icon:'none'
  571. });
  572. return;
  573. }
  574. }
  575. if(num>0){
  576. if(current[0].index==this.itemBelongGroup.length-1){
  577. uni.showToast({
  578. title: '已经没有下一项',
  579. duration: 2000,
  580. icon:'none'
  581. });
  582. return;
  583. }
  584. }
  585. let needItemIndex = num>0?current[0].index+1:current[0].index-1;
  586. let needItemId = this.itemBelongGroup[needItemIndex].id;
  587. // console.log({needItemIndex,needItemId});
  588. this.checkTaskDetail(needItemId);
  589. },
  590. // 获取查核项可配置列表
  591. getCheckConfigList(checkItemId) {
  592. this.$store.dispatch({
  593. type: 'mainPointsDetail/commActions',
  594. payload: {
  595. key:'getCheckItemAttr',
  596. data:checkItemId
  597. }
  598. }).then(data=>{
  599. this.checkConfiglist = data
  600. })
  601. },
  602. // 获取查核项结果说明下拉列表
  603. getCheckItemResultList(checkItemId) {
  604. this.$store.dispatch({
  605. type: 'mainPointsDetail/commActions',
  606. payload: {
  607. key:'getCheckItemResultList',
  608. data:checkItemId
  609. }
  610. }).then(data=>{
  611. // console.log({data});
  612. this.checkItemResultList = data;
  613. })
  614. },
  615. },
  616. onLoad({ id, checkPointId,checkItemId }) {
  617. this.id = id;
  618. this.checkPointId = checkPointId;
  619. this.getCheckConfigList(checkItemId);
  620. this.getCheckItemResultList(checkItemId);
  621. //接收来自上个页面所传过来的数据
  622. const eventChannel = this.getOpenerEventChannel();
  623. eventChannel.on('acceptDataFromOpenerPage', (data)=>{
  624. // console.log({data});
  625. this.itemBelongGroup =data.data[0].responseList.map((item,index)=>{
  626. return({
  627. index:index,
  628. id:item['id'],
  629. })
  630. });
  631. //重新导航进页面,删除缓存并设置最新数据
  632. uni.removeStorageSync('itemBelongGroup');
  633. uni.setStorageSync('itemBelongGroup',this.itemBelongGroup);
  634. });
  635. //手动刷新页面,获取本地缓存
  636. const itemBelongGroup = uni.getStorageSync('itemBelongGroup');
  637. this.itemBelongGroup = itemBelongGroup;
  638. },
  639. };
  640. </script>
  641. <style lang="less">
  642. .mainPointsDetailPage {
  643. position: relative;
  644. // min-height: 75rpx;
  645. // overflow-y: auto;
  646. height: 100%;
  647. .checkItemResultModal {
  648. display: flex;
  649. height: 100%;
  650. justify-content: center;
  651. align-items: center;
  652. .modalContent {
  653. width: 90%;
  654. height:500rpx;
  655. border-radius: 20rpx;
  656. background-color: #FFFFFF;
  657. .modalBar{
  658. display: flex;
  659. justify-content: center;
  660. align-items: center;
  661. height: 80rpx;
  662. color: #4E78FF;
  663. font-size: 22.5rpx;
  664. border-bottom: 0.1rpx solid #E5E5E5;
  665. }
  666. .scroll {
  667. height: calc(100% - 80rpx);
  668. .list {
  669. display: flex;
  670. height: 80rpx;
  671. justify-content: center;
  672. align-items: center;
  673. border-bottom: 0.1rpx solid #E5E5E5;
  674. }
  675. }
  676. }
  677. }
  678. .scroll-y {
  679. height: calc(100% - 75rpx);
  680. }
  681. .checkItem {
  682. padding-top: 47.5rpx;
  683. width: 100%;
  684. min-height: 450rpx;
  685. background-color: #fff;
  686. position: relative;
  687. .chBg {
  688. position: absolute;
  689. top: 0;
  690. left: 0;
  691. width: 125rpx;
  692. height: 37.5rpx;
  693. .img {
  694. width: 125rpx;
  695. height: 37.5rpx;
  696. }
  697. .title {
  698. position: absolute;
  699. top: 8.75rpx;
  700. left: 25rpx;
  701. font-size: 20rpx;
  702. color: #fff;
  703. font-weight: 500;
  704. line-height: 20rpx;
  705. }
  706. }
  707. .tlImg {
  708. width: 40rpx;
  709. height: 40rpx;
  710. position: absolute;
  711. right: 25rpx;
  712. top: 25rpx;
  713. }
  714. .chContent {
  715. width: 100%;
  716. .checkItemName {
  717. margin-left: 31.25rpx;
  718. font-size: 25rpx;
  719. line-height: 55rpx;
  720. color: #292c33;
  721. }
  722. .checkPointName {
  723. margin-left: 31.25rpx;
  724. font-size: 17.5rpx;
  725. line-height: 17.5rpx;
  726. color: #7a8599;
  727. }
  728. .cont {
  729. height: 135rpx;
  730. .floatLeft {
  731. float: left;
  732. }
  733. .borderLine {
  734. margin-top: 56.25rpx;
  735. width: 0.62rpx;
  736. height: 25rpx;
  737. background-color: #dadee6;
  738. }
  739. .other {
  740. padding: 40rpx 0rpx;
  741. height: 95rpx;
  742. width: 187.18rpx;
  743. text-align: center;
  744. .letterTitle {
  745. font-size: 17.5rpx;
  746. color: #7a8599;
  747. line-height: 17.5rpx;
  748. }
  749. .letterTitle2 {
  750. height: 22.5rpx;
  751. font-size: 22.5rpx;
  752. line-height: 22.5rpx;
  753. color: #292c33;
  754. margin-bottom: 15rpx;
  755. font-weight: 500;
  756. }
  757. }
  758. }
  759. .checked {
  760. margin-bottom: 40rpx;
  761. padding: 0rpx 15.62rpx;
  762. height: 75rpx;
  763. .checked-checkItem {
  764. margin: 0rpx 9.37rpx;
  765. padding: 0;
  766. width: 125rpx;
  767. height: 75rpx;
  768. background: #ebeff7;
  769. float: left;
  770. line-height: 75rpx;
  771. text-align: center;
  772. color: #292c33;
  773. border-radius: 20rpx;
  774. position: relative;
  775. .img {
  776. width: 51.25rpx;
  777. height: 25rpx;
  778. position: absolute;
  779. right: -6.25rpx;
  780. top: -6.25rpx;
  781. }
  782. .lastName {
  783. color: #fff;
  784. font-size: 13.75rpx;
  785. line-height: 13.75rpx;
  786. position: absolute;
  787. right: 5rpx;
  788. top: -1.87rpx;
  789. }
  790. }
  791. }
  792. .more {
  793. margin: 0rpx 25rpx 0rpx 25rpx;
  794. text-align: center;
  795. border-top: 0.62rpx solid #dadee6;
  796. text {
  797. padding: 29.37rpx 0rpx 27.5rpx;
  798. margin-right: 10rpx;
  799. line-height: 22.5rpx;
  800. font-size: 22.5rpx;
  801. color: #3377ff;
  802. display: inline-block;
  803. vertical-align: top;
  804. }
  805. .moreImg {
  806. margin-top: 28.75rpx;
  807. width: 12.37rpx;
  808. height: 21.21rpx;
  809. display: inline-block;
  810. }
  811. .moreImg2 {
  812. width: 12.37rpx;
  813. height: 21.21rpx;
  814. }
  815. }
  816. }
  817. }
  818. .see {
  819. margin-top: 15rpx;
  820. height: 287.5rpx;
  821. background-color: #fff;
  822. // padding-left: 25rpx;
  823. .seeResult {
  824. margin-left: 25rpx;
  825. padding-top: 32.5rpx;
  826. // height: 200rpx;
  827. border-bottom: 1px solid #dadee6;
  828. .seeResultFloorOne {
  829. display: flex;
  830. flex-direction: row;
  831. justify-content:space-between;
  832. align-items: center;
  833. margin-bottom: 25rpx;
  834. padding-right: 25rpx;
  835. .threePoint {
  836. padding-left: 12.5rpx;
  837. font-size: 20rpx;
  838. font-weight:700;
  839. }
  840. }
  841. .seeName {
  842. width: 175rpx;
  843. font-size: 22.5rpx;
  844. color: #525866;
  845. line-height: 22.5rpx;
  846. display: inline-block;
  847. }
  848. .seeTextarea {
  849. width: 531.25rpx;
  850. height: 155rpx;
  851. display: inline-block;
  852. font-size: 22.5rpx;
  853. line-height: 27.5rpx;
  854. }
  855. }
  856. .seeImg {
  857. min-height: 87.5rpx;
  858. .seeName2 {
  859. width: 175rpx;
  860. font-size: 22.5rpx;
  861. color: #525866;
  862. line-height: 87.5rpx;
  863. display: inline-block;
  864. }
  865. }
  866. }
  867. .talk {
  868. .talkTitle {
  869. padding: 25rpx 25rpx 15rpx;
  870. font-size: 22.5rpx;
  871. line-height: 22.5rpx;
  872. color: #666f80;
  873. .del {
  874. float: right;
  875. color: #3377ff;
  876. }
  877. }
  878. .talkResult {
  879. padding-left: 25rpx;
  880. padding-top: 32.5rpx;
  881. border-bottom: 1px solid #dadee6;
  882. background-color: #fff;
  883. .seeResultFloorOne {
  884. display: flex;
  885. flex-direction: row;
  886. justify-content:space-between;
  887. align-items: center;
  888. margin-bottom: 25rpx;
  889. padding-right: 25rpx;
  890. .threePoint {
  891. padding-left: 12.5rpx;
  892. font-size: 20rpx;
  893. font-weight:700;
  894. }
  895. }
  896. .seeName {
  897. width: 175rpx;
  898. font-size: 22.5rpx;
  899. color: #525866;
  900. line-height: 22.5rpx;
  901. display: inline-block;
  902. }
  903. .seeTextarea {
  904. width: 531.25rpx;
  905. height: 155rpx;
  906. display: inline-block;
  907. font-size: 22.5rpx;
  908. line-height: 27.5rpx;
  909. }
  910. }
  911. .talkImg {
  912. min-height: 87.5rpx;
  913. .seeName2 {
  914. width: 175rpx;
  915. font-size: 22.5rpx;
  916. color: #525866;
  917. line-height: 87.5rpx;
  918. display: inline-block;
  919. }
  920. }
  921. }
  922. .insert {
  923. background-color: #fff;
  924. font-size: 22.5rpx;
  925. line-height: 22.5rpx;
  926. color: #3377ff;
  927. padding: 26.25rpx;
  928. }
  929. .sureDetail {
  930. width: 100%;
  931. height: 75rpx;
  932. font-size: 22.5rpx;
  933. background-color: #3377ff;
  934. line-height: 75rpx;
  935. position: absolute;
  936. bottom: 0rpx;
  937. }
  938. .bottomMenuGroup {
  939. position: fixed;
  940. bottom: 0;
  941. width: 100%;
  942. height: 75rpx;
  943. display: flex;
  944. flex-direction: row;
  945. background: #FFFFFF;
  946. border-top:0.62rpx solid #DADEE6;
  947. .menuBtn {
  948. display: flex;
  949. width: 75rpx;
  950. height: 75rpx;
  951. justify-content: center;
  952. align-items: center;
  953. border-right: 0.62rpx solid #DADEE6;
  954. .threeLineMenuIcon {
  955. width: 26.25rpx;
  956. height: 21.25rpx;
  957. }
  958. }
  959. .prevBtn,.nextBtn {
  960. display: flex;
  961. flex: 1;
  962. justify-content: center;
  963. height:75rpx;
  964. line-height:75rpx;
  965. font-size: 22.5rpx;
  966. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  967. font-weight: 400;
  968. color: #3377FF;
  969. }
  970. .prevBtn {
  971. border-right: 0.62rpx solid #DADEE6;
  972. }
  973. .nextBtn{
  974. color: #FFFFFF;
  975. background: #3377FF;
  976. }
  977. }
  978. }
  979. </style>