CaseQualityBox2.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801
  1. <template>
  2. <div class="CaseQualityBox2">
  3. <el-row style="padding: 10px;line-height: 20px;" type="flex" justify="space-between">
  4. <span>病案号:{{data.AAA28}}</span>
  5. <span>床号:{{data.CH}}</span>
  6. <span>住院次数:{{data.ZYCS}}</span>
  7. </el-row>
  8. <el-tabs v-model="tabsActive" style="padding: 0 10px;background-color: #fff;">
  9. <el-tab-pane v-for="(item, index) in tabsArray" :key="index" :label="item.label" :name="item.name" >
  10. </el-tab-pane>
  11. </el-tabs>
  12. <div v-if="tabsActive == 1" class="tabContent">
  13. <div
  14. class="taskNameListAndMessage"
  15. :style="{
  16. width: currentTaskName ? '840px' : '340px'
  17. }"
  18. >
  19. <el-menu
  20. v-if="showTaskNameMenu"
  21. :default-active="currentTaskName"
  22. class="el-menu-vertical-demo"
  23. :style="{
  24. width: currentTaskName ? '230px' : '340px'
  25. }"
  26. >
  27. <div v-for="item in taskNameList">
  28. <el-submenu :index="`${item.id}`" v-if="item.child">
  29. <template slot="title">
  30. <span style="padding-left:20px">{{item.name}}</span>
  31. </template>
  32. <div v-for="element in item.child">
  33. <el-submenu :index="`${element.parent_id}-${element.id}`" v-if="element.child">
  34. <template slot="title">
  35. <span style="padding-left:40px">{{element.name}}</span>
  36. </template>
  37. <el-menu-item v-for="elementItem in element.child" :index="`${item.id}-${elementItem.parent_id}-${elementItem.id}`" @click="handleTaskNameSelect(elementItem, `${item.id}-${elementItem.parent_id}-${elementItem.id}`)">
  38. <span slot="title">{{elementItem.name}}</span>
  39. </el-menu-item>
  40. </el-submenu>
  41. <el-menu-item :index="`${element.parent_id}-${element.id}`" v-else @click="handleTaskNameSelect(element, `${element.parent_id}-${element.id}`)">
  42. <span slot="title">{{element.name}}</span>
  43. </el-menu-item>
  44. </div>
  45. </el-submenu>
  46. <el-menu-item :index="`${item.id}`" v-else @click="handleTaskNameSelect(item, item.id)">
  47. <span slot="title">{{item.name}}</span>
  48. </el-menu-item>
  49. </div>
  50. </el-menu>
  51. <div class="messageBox" v-if="currentTaskName">
  52. <div class="message">
  53. <div v-for="(item,index) in chatMessages" :key="index">
  54. <div v-if="item.role == 'user'" class="user-message">
  55. <div class="user-content">
  56. {{item.content}}
  57. </div>
  58. <el-avatar src="static/img/avatar07.7b002992.png" fit="contain"></el-avatar>
  59. </div>
  60. <div v-if="item.role == 'assistant'" class="record-message">
  61. <el-avatar :src="require('../../../assets/images/jiqiren.png')" fit="contain"></el-avatar>
  62. <div class="record-content">
  63. {{item.content}}
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. <div class="sendMessageBox">
  69. <!-- <div style="width: 80px;border-radius: 10px 0 0 10px; background-color: #DDDDDD;display: flex;flex-wrap: wrap;justify-content: center;padding-bottom: 5px;">
  70. <button style="width: 60px;margin-top: 5px;border-radius: 5px;border: 1px solid blue;color: blue">“ 病历</button>
  71. <button style="width: 60px;margin-top: 5px;border-radius: 5px;border: 1px solid blue;color: blue">“ 检查</button>
  72. <button style="width: 60px;margin-top: 5px;border-radius: 5px;border: 1px solid blue;color: blue">“ 检验</button>
  73. <button style="width: 60px;margin-top: 5px;border-radius: 5px;border: 1px solid blue;color: blue">“知识库</button>
  74. </div> -->
  75. <div style="width: calc(100%)">
  76. <textarea class="inputText" v-model="inputMessage" placeholder="请输入您的问题,帮您深度解答"></textarea>
  77. <el-row type="flex" justify="space-between" align="middle">
  78. <!-- <el-icon class="iconfont zj-damuzhi" style="margin-left: 20px;line-height: 35px;"></el-icon>
  79. <el-icon class="iconfont zj-zanxia" style="margin-left: 20px;line-height: 35px;"></el-icon> -->
  80. <!-- <el-button type="primary" @click="sendMessage()" icon="el-icon-top" circle> -->
  81. <div @click="showTaskNameMenu = !showTaskNameMenu"><Hamburger/></div>
  82. <!-- </el-button> -->
  83. <el-button type="primary" @click="sendMessage()" icon="el-icon-top" circle></el-button>
  84. </el-row>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. <!--病案首页-->
  91. <div v-else-if="tabsActive == 3" class="tabContent">
  92. <div ref="box" class="box22" :style="{width: width ? width + 'px' : '100%'}" :class="{'nocopy': $route.meta.nocopy}">
  93. <div class="score-box" :class="scoreLevel == '甲'? 'scoreLevel_1' : ( scoreLevel == '乙'?'scoreLevel_2': (scoreLevel == '丙'?'scoreLevel_3':'' ) ) ">
  94. <div>病案评分<span class="score-f">{{ data.score }}分</span></div>
  95. <!-- <h2 class="score-dj">{{ scoreLevel }}</h2> -->
  96. </div>
  97. <div class="card-box" v-if="data.is_case">
  98. <div class="title">
  99. <span class="font-size12">智能结果更新时间:</span>
  100. <span class="font-size12">{{ data.quality_time }}</span>
  101. </div>
  102. <el-tag type="danger" v-if="data.is_case == 1" class="font-size12">质控中</el-tag>
  103. <el-tag v-if="data.is_case == 2" class="font-size12">已质控</el-tag>
  104. </div>
  105. <el-scrollbar ref="scrollRef" class="scrollBox" :style="`height: ${scrollHeight}`">
  106. <template v-for="(item, index) in data.data">
  107. <!-- is_appeal: 是否申述 -->
  108. <div class="list-box box-card" :key="index">
  109. <div class="list-score-tips-box">
  110. <div class="list-left-score" :class=" item.level == 1 ? 'hover-1' : 'hover-2' ">
  111. <div> {{ item.level == 1? '必改':'建议' }} </div>
  112. <div>-{{ item.score }}</div>
  113. </div>
  114. <div class="list-right-tips">
  115. <div><span class="title-color">字段:</span><span>{{ item.error_field }}</span></div>
  116. <div class="notice-box"><span class="title-color">提示:</span><span>{{ item.notice }}</span></div>
  117. </div>
  118. </div>
  119. <div class="list-basis-box">
  120. <div class="list-basis-title" @click="item.basis && clickListItem(index)">
  121. <span>质控依据</span>
  122. <span> >> </span>
  123. <el-image class="typeImg" v-if="item.is_artificial == 0" :src="require('../../../assets/images/zsicon.png')" fit="contain">
  124. </el-image>
  125. <el-image v-if="item.is_artificial == 1" class="typeImg" :src="require('../../../assets/images/ysicon.png')" fit="contain">
  126. </el-image>
  127. </div>
  128. <div class="list-basis-text">
  129. <div class="list-basis-text-t" :class="item.show?'show':''">
  130. <div v-for="(yItem, yIndex) of item.basis" :key="yIndex" style="margin-bottom: 10px;">
  131. <div v-if="item.rule_id !== 6">
  132. <span class="span-index">{{ yIndex+1 }}</span>
  133. <span v-if="item.category=='入院记录'">
  134. <span v-for="(cItem, cIndex) of yItem" :key="cIndex" @click="hightRight(cItem,292,item.JZHM)" v-html="cItem"></span>
  135. </span>
  136. <span v-else>
  137. <span v-for="(cItem, cIndex) of yItem" :key="cIndex" v-html="cItem"></span>
  138. </span>
  139. </div>
  140. <div v-else>
  141. <span class="span-index">1</span>
  142. <span style="font-size: 13px;">{{ yItem[0] }}</span>
  143. </div>
  144. </div>
  145. </div>
  146. <div class="list-basis-bottom-box" v-if="$route.path == '/whitelist-caseControl'">
  147. <div class="list-basis-bottom-tips">
  148. <div class="appeal_no" @click="clickAppeal('appeal_no', item, 2 )" v-if="item.appeal_type == 2 && item.appeal_status == 2">驳回</div>
  149. <div class="appeal_progress" v-if="item.appeal_type == 2 && item.appeal_status == 0">申诉中</div>
  150. <div class="appeal_in_edit" @click="clickAppealEdit(item, 2)" v-if="item.is_artificial == 1">已整改</div>
  151. </div>
  152. <div class="list-basis-bottom-btn" v-if="item.appeal_type == 0">
  153. <div class="appeal" @click="clickAppeal('appeal', item, 2 )">申诉</div>
  154. <div class="appeal_in_ignore" @click="clickAppeal('appeal_in_ignore', item, 2 )">忽略</div>
  155. </div>
  156. </div>
  157. </div>
  158. </div>
  159. </div>
  160. </template>
  161. </el-scrollbar>
  162. </div>
  163. </div>
  164. <AppealModal ref="AppealModalRef" @onUpdate="getTableData()"/>
  165. </div>
  166. </template>
  167. <script>
  168. import Hamburger from '@/components/Hamburger';
  169. import AppealModal from '@/components/appealModal/index.vue'
  170. import { setCorrection } from '@/api/qc'
  171. export default {
  172. components: {
  173. Hamburger,
  174. AppealModal
  175. },
  176. props: {
  177. // data: {
  178. // type: Object,
  179. // default() {
  180. // return {
  181. // data: {}
  182. // }
  183. // }
  184. // },
  185. // mainHomeData: {
  186. // type: Object,
  187. // default() {
  188. // return {
  189. // data: {}
  190. // }
  191. // }
  192. // },
  193. // type:{
  194. // type: String,
  195. // default() {
  196. // return ''
  197. // }
  198. // },
  199. height: {
  200. type: Number,
  201. default() {
  202. return 0
  203. }
  204. },
  205. width: {
  206. type: Number,
  207. default() {
  208. return 0
  209. }
  210. },
  211. MED_REC_ID: {
  212. type: String,
  213. default() {
  214. return ''
  215. }
  216. }
  217. },
  218. data(){
  219. return {
  220. data: {},
  221. inputMessage:'',//消息输入框
  222. chatMessages:[],//内容显示
  223. tabsActive:'3',//tabs选择
  224. tabsArray:[
  225. {'name':'3','label':'质控结果'},
  226. {'name':'1','label':'病历生成'},
  227. // {'name':'2','label':'病案首页'},
  228. // {'name':'4','label':'编目首页'},
  229. ],
  230. tableData: [],
  231. is_show: true,
  232. quality_type: 2, // 1、首页质控 2、病例质控
  233. taskNameList: [],
  234. currentTaskName: '',
  235. showTaskNameMenu: true
  236. }
  237. },
  238. computed: {
  239. scoreLevel() {
  240. /**
  241. * 甲>90分
  242. * 乙75-90分
  243. * 丙<75分
  244. * */
  245. let str
  246. const { score } = this.data
  247. if (score > 90) {
  248. str = '甲'
  249. } else if (score < 75) {
  250. str = '丙'
  251. } else if ( score <= 90 && score >= 75 ) {
  252. str = '乙'
  253. }
  254. return str
  255. },
  256. scrollHeight() {
  257. // if (this.height) {
  258. // return (this.height - 214)+'px'
  259. // } else {
  260. // return `calc(100vh - 314px)`
  261. // }
  262. return `100%`
  263. }
  264. },
  265. mounted(){
  266. this.getTableData();
  267. this.getTaskNameList();
  268. },
  269. methods: {
  270. getTaskNameList() {
  271. this.$axios2.get('/big_model/get_task_name', {}).then(res => {
  272. if(res.code == 200){
  273. this.taskNameList = res.data || []
  274. }
  275. })
  276. },
  277. handleTaskNameSelect(menuItem, indexId) {
  278. this.currentTaskName = indexId
  279. this.$axios.post('/get_big_model_task', {
  280. rule_id: indexId.split('-').map(Number),
  281. MED_REC_ID: this.$props.MED_REC_ID
  282. }).then(res => {
  283. if(res.code == 200){
  284. this.sendMessage(res.data)
  285. }
  286. })
  287. window.electronAPI.middle()
  288. },
  289. //发送消息
  290. async sendMessage(params){
  291. const messages = params ? params : this.inputMessage.trim();
  292. if (messages){
  293. //添加用户信息到聊天记录
  294. this.chatMessages.push({
  295. role: 'user',
  296. content: messages
  297. });
  298. // 清空输入框
  299. this.inputMessage = '';
  300. // this.$axios.post('/predict', {
  301. // query: messages
  302. // }).then(res => {
  303. // if(res.code == 200){
  304. // // 添加模型响应消息到聊天记录
  305. // this.chatMessages.push({
  306. // role: 'assistant',
  307. // content: res.data
  308. // });
  309. // }
  310. // })
  311. //大模型请求
  312. const modelResponse = await this.simulateModelResponse(messages);
  313. // 添加模型响应消息到聊天记录
  314. this.chatMessages.push({
  315. role: 'assistant',
  316. content: modelResponse
  317. });
  318. }
  319. },
  320. //大模型请求
  321. simulateModelResponse(userMessage) {
  322. //请求内容
  323. const options = {
  324. method: 'POST',
  325. headers: {
  326. Authorization: 'Bearer sk-ttnryoxayznjgquagdfwjefbkubdnezabsotuczokunwkjin',
  327. 'Content-Type': 'application/json'
  328. },
  329. // body: '{"model":"Qwen/QwQ-32B","messages":[{"role":"user","content":"当前时间"}],"stream":false,"max_tokens":512,"stop":null,"temperature":0.7,"top_p":0.7,"top_k":50,"frequency_penalty":0.5,"n":1,"response_format":{"type":"text"},"tools":[{"type":"function","function":{"description":"<string>","name":"<string>","parameters":{},"strict":false}}]}'
  330. };
  331. const body = {};
  332. body.model = "deepseek-ai/DeepSeek-R1";
  333. body.messages = [{"role":"user","content":userMessage}];
  334. options.body = JSON.stringify(body);
  335. //请求
  336. return fetch('https://api.siliconflow.cn/v1/chat/completions', options).then(response => {
  337. return response.json();
  338. }).then(data => {
  339. const content = data.choices[0].message.content;
  340. return content;
  341. }).catch(err => console.error(err));
  342. },
  343. getTableData(isRender = false){
  344. const params = {
  345. id: this.$props.MED_REC_ID,
  346. isNeedLoading: isRender ? true : false
  347. };
  348. this.$axios2.post('/get_case_quality_v2', params).then(res => {
  349. this.$nextTick(() =>{
  350. console.log('this.data', this.data, res.data)
  351. if(isRender) {
  352. if(this.data.is_case != res.data.is_case) {
  353. this.data = res.data;
  354. this.data && this.data.data && Array.isArray(this.data.data)&& this.data.data.map((item) => {
  355. item.show = false
  356. })
  357. }
  358. } else {
  359. this.data = res.data;
  360. this.data && this.data.data && Array.isArray(this.data.data)&& this.data.data.map((item) => {
  361. item.show = true
  362. })
  363. }
  364. })
  365. });
  366. },
  367. clickAppealEdit(item, quality_type) {
  368. this.$confirm('是否确认已整改?', '提示', {
  369. confirmButtonText: '确定',
  370. cancelButtonText: '取消',
  371. type: 'warning',
  372. customClass: 'customClass-el-message-box-center'
  373. }).then(() => {
  374. setCorrection({
  375. id: item.id,
  376. quality_type
  377. }).then(res => {
  378. if(res.code == 200) {
  379. this.$message.success('已整改成功!')
  380. this.getTableData()
  381. }
  382. });
  383. }).catch(() => {
  384. });
  385. },
  386. onScroll(index) {
  387. const el = this.$el.querySelector(`.category${index}`);
  388. const node = el.parentNode.parentNode.parentNode
  389. this.$refs["scrollRef"].wrap.scrollTop = node.offsetTop;
  390. },
  391. hightRight(hightKeyWord, bllb, zyh) {
  392. this.$emit('hightRight',hightKeyWord,bllb,zyh)
  393. },
  394. clickListItem(idx){
  395. this.data.data[idx].show = !this.data.data[idx].show
  396. this.$forceUpdate();
  397. },
  398. // 点击申诉、忽略按钮
  399. clickAppeal(type,items,quality_type){
  400. if(type == 'appeal_in_ignore') {
  401. this.$refs.AppealModalRef.handleIgnore(items, quality_type)
  402. } else {
  403. this.$refs.AppealModalRef.openAppealDialog(type, items, quality_type)
  404. }
  405. }
  406. }
  407. }
  408. </script>
  409. <style lang="scss" scoped>
  410. .CaseQualityBox2 {
  411. height: 100%;
  412. .tabContent {
  413. height: calc(100% - 94px);
  414. }
  415. }
  416. ::v-deep.el-submenu {
  417. &>.el-submenu__title {
  418. padding-left: 0 !important;
  419. .el-submenu__icon-arrow {
  420. display: block !important;
  421. }
  422. }
  423. }
  424. .taskNameListAndMessage {
  425. height: 100%;
  426. overflow-y: auto;
  427. background-color: white;
  428. border-radius: 10px;
  429. display: flex;
  430. .el-menu-vertical-demo {
  431. // width:340px;
  432. height: 100%;
  433. overflow-y: scroll;
  434. width: 230px;
  435. }
  436. }
  437. .messageBox {
  438. flex: 1;
  439. display: flex;
  440. flex-direction: column;
  441. height: 100%;
  442. .message {
  443. flex: 1;
  444. margin-bottom: 20px;
  445. max-height: 85%;
  446. overflow-y: auto;
  447. height: 480px;
  448. background-color: white;
  449. border-radius: 10px;
  450. .user-message{
  451. display: flex;
  452. margin: 10px 10px 20px 10px;
  453. justify-content: right;
  454. .user-content {
  455. line-height: 40px;
  456. background-color: #bee2f8;
  457. margin-right: 10px;
  458. border-radius: 5px;
  459. padding: 0 10px 0 10px;
  460. flex: 1
  461. }
  462. }
  463. .record-message {
  464. display: flex;
  465. margin: 10px 10px 20px 10px;
  466. .record-content {
  467. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  468. width: 360px;
  469. margin-left:10px;
  470. padding: 0 10px 0 10px;
  471. border-radius: 5px;
  472. line-height: 40px;
  473. flex: 1
  474. }
  475. }
  476. }
  477. .sendMessageBox {
  478. margin: 10px;
  479. padding: 10px;
  480. border: 1px solid #bbb;
  481. border-radius: 8px;
  482. display: flex;
  483. height: 150px;
  484. .inputText {
  485. height: 80px;
  486. border: none;
  487. outline:none;
  488. width: 100%;
  489. resize: none;
  490. }
  491. }
  492. }
  493. ::v-deep .el-scrollbar__wrap {
  494. overflow-x: hidden;
  495. }
  496. ::v-deep .el-divider--horizontal {
  497. margin: 10px 0;
  498. }
  499. .box22 {
  500. padding: 0 10px;
  501. background: #FFFFFF;
  502. border-radius: 5px;
  503. height: 100%;
  504. overflow-y: scroll;
  505. display: flex;
  506. flex-direction: column;
  507. .score-box{
  508. width: 100%;
  509. margin-bottom: 16px;
  510. padding: 30px 50px 30px 20px;
  511. border-radius: 4px;
  512. display: flex;
  513. align-items: center;
  514. justify-content: space-between;
  515. color: #fff;
  516. div{
  517. font-size: 20px;
  518. }
  519. .score-f{
  520. padding-left: 20px;
  521. font-size: 20px;
  522. }
  523. .score-dj,.score-f{
  524. font-weight: bold;
  525. }
  526. }
  527. .score-box.scoreLevel_1{
  528. background: rgb(11, 133, 63);
  529. background-image: url('../../../assets/images/icon-jia.png');
  530. background-repeat: no-repeat;
  531. background-size: 60px 52px;
  532. background-position:80% 50%;
  533. }
  534. .score-box.scoreLevel_2{
  535. background: rgb(152, 112, 20);
  536. background-image: url('../../../assets/images/icon-yi.png');
  537. background-repeat: no-repeat;
  538. background-size: 60px 52px;
  539. background-position:80% 50%;
  540. }
  541. .score-box.scoreLevel_3{
  542. background: rgb(199, 54, 13);
  543. background-image: url('../../../assets/images/icon-bing.png');
  544. background-repeat: no-repeat;
  545. background-size: 60px 52px;
  546. background-position:80% 50%;
  547. }
  548. .card-box {
  549. // height: 175px;
  550. // background: #FFFFFF;
  551. // border: 1px solid #E2E2E2;
  552. background: #f1f5fe;
  553. padding: 10px;
  554. box-sizing: border-box;
  555. margin-bottom: 14px;
  556. display: flex;
  557. align-items: center;
  558. justify-content: space-between;
  559. .title {
  560. font-size: 12px;
  561. font-family: PingFang-SC-Bold, PingFang-SC;
  562. // font-weight: bold;
  563. color: #333333;
  564. line-height: 22px;
  565. // span {
  566. // margin-left: 7px;
  567. // }
  568. }
  569. .card-icon-btn{
  570. width: auto;
  571. padding: 4px 8px;
  572. border-radius: 4px;
  573. background: rgb(254, 240, 240);
  574. color: rgb(245, 128, 140);
  575. border: 1px solid rgb(245, 128, 140);
  576. font-size: 10px;
  577. }
  578. .title2 {
  579. font-size: 14px;
  580. font-family: PingFang-SC-Bold, PingFang-SC;
  581. // font-weight: bold;
  582. color: #333333;
  583. line-height: 26px;
  584. cursor: pointer;
  585. span {
  586. margin-left: 7px;
  587. }
  588. }
  589. .error {
  590. color: #D81E06;
  591. }
  592. }
  593. .box-card {
  594. margin-bottom: 10px;
  595. position: relative;
  596. background: rgb(241, 245, 254);
  597. .category {
  598. font-family: PingFangSC-Semibold, PingFang SC;
  599. font-weight: bold;
  600. color: #333333;
  601. }
  602. .koufen {
  603. font-weight: bold;
  604. vertical-align: middle;
  605. margin-left: 16px;
  606. }
  607. .typeImg {
  608. width: 53px;
  609. height: 53px;
  610. position: absolute;
  611. top: 12px;
  612. right: 12px;
  613. z-index: 999;
  614. }
  615. }
  616. .box-card .el-table ::v-deep tr{
  617. background: transparent;
  618. }
  619. ::v-deep .el-table__row {
  620. background: #185DA6 !important;
  621. color: #FFFFFF;
  622. .el-icon-arrow-right {
  623. color: #FFFFFF;
  624. }
  625. }
  626. ::v-deep .el-descriptions__body{
  627. background: transparent;
  628. }
  629. ::v-deep .el-table tr{
  630. background: transparent;
  631. }
  632. ::v-deep .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell {
  633. background: #185DA6;
  634. }
  635. ::v-deep .el-table_1_column_1 {
  636. border-radius: 8px 0 0 8px;
  637. }
  638. ::v-deep .el-table_1_column_2 {
  639. border-radius: 0 8px 8px 0;
  640. font-weight: bold;
  641. }
  642. ::v-deep .el-descriptions-item__label {
  643. font-family: PingFang-SC-Bold, PingFang-SC;
  644. font-weight: bold;
  645. color: #333333;
  646. }
  647. }
  648. .span-index{
  649. width: 20px;
  650. height: 20px;
  651. line-height: 20px;
  652. text-align: center;
  653. display: inline-block;
  654. border-radius: 50%;
  655. background: #185DA6;
  656. color: #fff;
  657. margin-right: 10px;
  658. margin-bottom: 4px;
  659. font-size: 12px;
  660. }
  661. ::v-deep .el-table .el-table__row td {
  662. color: #fff;
  663. }
  664. ::v-deep .el-tag{
  665. height: auto;
  666. line-height: 22px;
  667. }
  668. // ================= 2024-07-27 新样式 ↓ ===============
  669. .font-size12{
  670. font-size: 12px;
  671. }
  672. .list-box{
  673. width: 100%;
  674. padding: 10px 0;
  675. .title-color{
  676. color: rgba(27,100,176,1);
  677. font-weight: bold;
  678. }
  679. .list-score-tips-box{
  680. width: 100%;
  681. display: flex;
  682. .list-left-score{
  683. width: 70px;
  684. text-align: center;
  685. font-size: 20px;
  686. font-weight: 700;
  687. position: relative;
  688. display: flex;
  689. flex-direction: column;
  690. align-items: center;
  691. justify-content: center;
  692. padding: 10px 0;
  693. &.hover-1{
  694. background: rgb(254, 240, 240);
  695. color: rgb(238, 14, 14);
  696. border-right: 3px solid rgb(238, 14, 14);
  697. }
  698. &.hover-2{
  699. background: rgb(236, 245, 255);
  700. color: rgb(52, 140, 235);
  701. border-right: 3px solid rgb(52, 140, 235);
  702. }
  703. &>div{
  704. font-size: 20px;
  705. }
  706. }
  707. .list-right-tips{
  708. flex: 1;
  709. font-size: 12px;
  710. padding-left: 10px;
  711. .notice-box{
  712. margin-top: 8px;
  713. }
  714. }
  715. }
  716. .list-basis-box{
  717. .list-basis-title{
  718. padding: 10px 0 10px 10px;
  719. position: relative;
  720. &>span{
  721. font-size: 12px;
  722. color: rgba(27,100,176,1);
  723. font-weight: bold;
  724. }
  725. .typeImg {
  726. width: 34px;
  727. height: 34px;
  728. position: absolute;
  729. top: 0;
  730. right: 12px;
  731. z-index: 999;
  732. }
  733. }
  734. .list-basis-text {
  735. height: auto;
  736. .list-basis-text-t{
  737. height: 0;
  738. overflow: hidden;
  739. position: relative;
  740. &.show{
  741. height: auto;
  742. padding: 10px 0 10px 10px;
  743. }
  744. }
  745. }
  746. .list-basis-bottom-box{
  747. margin-top: 14px;
  748. width: 100%;
  749. display: flex;
  750. align-items: center;
  751. justify-content: space-between;
  752. padding: 0 10px;
  753. .list-basis-bottom-tips{
  754. flex: 1;
  755. display: flex;
  756. gap: 10px;
  757. }
  758. .list-basis-bottom-btn{
  759. flex: 1;
  760. display: flex;
  761. justify-content: flex-end;
  762. gap: 10px;
  763. // width: auto;
  764. }
  765. }
  766. }
  767. }
  768. </style>