vipEvaluateList.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709
  1. <!-- -->
  2. <template>
  3. <div>
  4. <save-form
  5. :inline="true"
  6. save-key="commentManager-vipEvaluateList"
  7. class="searchForm"
  8. :model="searchForm"
  9. @submit="search"
  10. @reset="onReSet"
  11. ref="searchForm"
  12. >
  13. <!-- 状态 指导老师 活动方案-->
  14. <el-form-item>
  15. <el-input
  16. v-model.trim="searchForm.search"
  17. @keyup.enter.native="
  18. (e) => {
  19. e.target.blur();
  20. $refs.searchForm.save();
  21. search();
  22. }
  23. "
  24. clearable
  25. placeholder="请输入课程组名称 ID"
  26. ></el-input>
  27. </el-form-item>
  28. <el-form-item>
  29. <el-select
  30. placeholder="请选择分部"
  31. v-model="searchForm.organId"
  32. clearable
  33. >
  34. <el-option
  35. v-for="(item, index) in selects.branchs"
  36. :label="item.name"
  37. :value="item.id"
  38. :key="index"
  39. ></el-option>
  40. </el-select>
  41. </el-form-item>
  42. <el-form-item>
  43. <!-- <el-select
  44. placeholder="指导老师"
  45. v-model="searchForm.teacherId"
  46. clearable
  47. filterable
  48. >
  49. <el-option
  50. v-for="(item, index) in teacherList"
  51. :label="item.realName"
  52. :value="item.id"
  53. :key="index"
  54. ></el-option>
  55. </el-select> -->
  56. <remote-search
  57. :commit="'setTeachers'"
  58. aria-placeholder="请选择指导老师"
  59. v-model="searchForm.teacherId"
  60. />
  61. </el-form-item>
  62. <el-form-item>
  63. <el-select
  64. v-model.trim="searchForm.eduTeacherId"
  65. filterable
  66. clearable
  67. placeholder="乐团主管"
  68. >
  69. <el-option
  70. v-for="(item, index) in selects.roles.EDUCATION"
  71. :key="index"
  72. :value="item.userId"
  73. :label="item.userName"
  74. >
  75. <span style="float: left">{{ item.userName }}</span>
  76. <span style="float: right; color: #8492a6; font-size: 13px">{{
  77. item.userId
  78. }}</span>
  79. </el-option>
  80. </el-select>
  81. </el-form-item>
  82. <el-form-item>
  83. <el-select
  84. placeholder="老师评价"
  85. v-model="searchForm.hasReview"
  86. clearable
  87. >
  88. <el-option label="评价" value="1"></el-option>
  89. <el-option label="未评价" value="0"></el-option>
  90. </el-select>
  91. </el-form-item>
  92. <el-form-item>
  93. <el-select
  94. placeholder="布置训练"
  95. v-model="searchForm.assignHomework"
  96. clearable
  97. >
  98. <el-option label="是" value="1"></el-option>
  99. <el-option label="否" value="0"></el-option>
  100. </el-select>
  101. </el-form-item>
  102. <el-form-item>
  103. <el-date-picker
  104. :clearable="false"
  105. v-model="searchForm.month"
  106. type="daterange"
  107. value-format="yyyy-MM-dd"
  108. format="yyyy-MM-dd"
  109. :picker-options="{
  110. firstDayOfWeek: 1,
  111. }"
  112. range-separator="-"
  113. start-placeholder="开始日期"
  114. end-placeholder="结束日期"
  115. >
  116. ></el-date-picker
  117. >
  118. </el-form-item>
  119. <br />
  120. <el-form-item>
  121. <el-button native-type="submit" type="danger">搜索</el-button>
  122. <el-button native-type="reset" type="primary">重置</el-button>
  123. <el-button
  124. type="primary"
  125. v-if="tableData.length > 0"
  126. v-permission="'export/courseReviews'"
  127. @click="netWorkExport"
  128. >导出</el-button
  129. >
  130. </el-form-item>
  131. </save-form>
  132. <div class="tableWrap">
  133. <el-table
  134. style="width: 100%"
  135. :header-cell-style="{ background: '#EDEEF0', color: '#444' }"
  136. :data="tableData"
  137. >
  138. <el-table-column align="center" prop="organName" label="分部名称">
  139. <template slot-scope="scope">
  140. <copy-text>
  141. {{ scope.row.organName }}
  142. </copy-text>
  143. </template>
  144. </el-table-column>
  145. <el-table-column align="center" prop="id" label="课程编号">
  146. <template slot-scope="scope">
  147. <copy-text>
  148. {{ scope.row.id }}
  149. </copy-text>
  150. </template>
  151. </el-table-column>
  152. <el-table-column align="center" prop="courseName" label="课程名称">
  153. <template slot-scope="scope">
  154. <copy-text>
  155. {{ scope.row.courseName }}
  156. </copy-text>
  157. </template>
  158. </el-table-column>
  159. <el-table-column align="center" prop="courseName" label="上课日期">
  160. <template slot-scope="scope">
  161. <div>
  162. {{ scope.row.classDate | formatTimer }}
  163. </div>
  164. </template>
  165. </el-table-column>
  166. <el-table-column
  167. align="center"
  168. prop="subjectName"
  169. label="声部"
  170. ></el-table-column>
  171. <el-table-column align="center" prop="teacherName" label="指导老师">
  172. <template slot-scope="scope">
  173. <copy-text>{{ scope.row.teacherName }}</copy-text>
  174. </template>
  175. </el-table-column>
  176. <el-table-column align="center" prop="eduTeacherName" label="乐团主管">
  177. <template slot-scope="scope">
  178. <copy-text>{{ scope.row.eduTeacherName }}</copy-text>
  179. </template>
  180. </el-table-column>
  181. <el-table-column align="center" label="老师评价">
  182. <template slot-scope="scope">
  183. <div>{{ scope.row.reviewId > 0 ? "评价" : "未评价" }}</div>
  184. </template>
  185. </el-table-column>
  186. <el-table-column align="center" label="布置训练">
  187. <template slot-scope="scope">
  188. <div>{{ scope.row.assignHomework ? "是" : "否" }}</div>
  189. </template>
  190. </el-table-column>
  191. <!-- <el-table-column align="center"
  192. label="是否到课">
  193. <template slot-scope="scope">
  194. <div>{{scope.row.attendanceId>0?'到课':'未到'}}</div>
  195. </template>
  196. </el-table-column> -->
  197. <el-table-column align="center" label="操作">
  198. <!-- v-permission="'evaluateList/look'" -->
  199. <template slot-scope="scope">
  200. <div>
  201. <el-button
  202. type="text"
  203. v-if="scope.row.reviewId"
  204. @click="lookDetail(scope.row)"
  205. >查看</el-button
  206. >
  207. </div>
  208. </template>
  209. </el-table-column>
  210. </el-table>
  211. <pagination
  212. save-key="commentManager-vipEvaluateList"
  213. sync
  214. :total.sync="rules.total"
  215. :page.sync="rules.page"
  216. :limit.sync="rules.limit"
  217. :page-sizes="rules.page_size"
  218. @pagination="getList"
  219. />
  220. </div>
  221. <el-dialog title="vip评价详情" :visible.sync="netWorkVisible" width="800px">
  222. <div class="wrap">
  223. <div class="commitLeft">
  224. <div class="leftCell" v-if="teacherClassHeadInfo">
  225. <p>课程班名称</p>
  226. <p>{{ teacherClassHeadInfo.classGroupName }}</p>
  227. </div>
  228. <div class="leftCell" v-if="teacherClassHeadInfo">
  229. <p>上课时间</p>
  230. <p>
  231. {{
  232. teacherClassHeadInfo.classDate +
  233. " " +
  234. teacherClassHeadInfo.startClassTime +
  235. "-" +
  236. teacherClassHeadInfo.endClassTime
  237. }}
  238. </p>
  239. </div>
  240. <div class="leftCell" v-if="teacherClassHeadInfo">
  241. <p>乐器</p>
  242. <p>{{ teacherClassHeadInfo.subjectNames }}</p>
  243. </div>
  244. <div class="leftCell" v-if="teacherClassHeadInfo">
  245. <p>指导老师</p>
  246. <p>{{ teacherClassHeadInfo.bishopTeacher }}</p>
  247. </div>
  248. <div class="leftCell" v-if="teacherClassHeadInfo">
  249. <p>学员</p>
  250. <p>{{ teacherClassHeadInfo.studentNames }}</p>
  251. </div>
  252. <div class="leftCell" v-if="courseScheduleReview">
  253. <p>回访日期</p>
  254. <p>{{ courseScheduleReview.createTime.substring(0, 10) }}</p>
  255. </div>
  256. <!-- <div class="leftCell"
  257. v-if="courseScheduleReview">
  258. <p>是否双向沟通</p>
  259. <p>{{courseScheduleReview.hasLiaison?'是':'否'}}</p>
  260. </div> -->
  261. <div class="leftCell" v-if="courseScheduleReview">
  262. <p>是否提交训练</p>
  263. <p>{{ courseScheduleReview.handHomework ? "是" : "否" }}</p>
  264. </div>
  265. <div class="leftCell" v-if="courseScheduleReview">
  266. <p>乐团主管</p>
  267. <p>{{ courseScheduleReview.eduTeacherName }}</p>
  268. </div>
  269. <div class="leftCell">
  270. <p>课程评价</p>
  271. <div class="chioseWrap">
  272. <el-tag
  273. :type="mychiose == '好' ? 'danger' : 'info'"
  274. @click="courseScheduleReview.courseReview = '好'"
  275. >好</el-tag
  276. >
  277. <el-tag
  278. :type="mychiose == '中' ? 'danger' : 'info'"
  279. @click="courseScheduleReview.courseReview = '中'"
  280. >中</el-tag
  281. >
  282. <el-tag
  283. :type="mychiose == '差' ? 'danger' : 'info'"
  284. @click="courseScheduleReview.courseReview = '差'"
  285. >差</el-tag
  286. >
  287. </div>
  288. </div>
  289. </div>
  290. <div class="commitRight">
  291. <div v-if="courseScheduleComplaints">
  292. <div v-for="(item, index) in courseScheduleComplaints" :key="index">
  293. <div class="rightCell">
  294. <p>{{ item.username }}</p>
  295. <div class="chioseWrap">
  296. <el-rate
  297. v-model="item.score"
  298. disabled
  299. text-color="#ff9900"
  300. ></el-rate>
  301. </div>
  302. </div>
  303. <el-input
  304. type="textarea"
  305. v-model="item.reason"
  306. disabled
  307. ></el-input>
  308. </div>
  309. </div>
  310. <div v-if="courseScheduleReview">
  311. <div class="rightCell" v-if="courseScheduleReview">
  312. <p>教材内容</p>
  313. </div>
  314. <el-input
  315. type="textarea"
  316. disabled
  317. v-model="teachingMaterial"
  318. ></el-input>
  319. <div class="leftCell" v-if="courseScheduleReview">
  320. <p>曲目</p>
  321. <p>{{ courseScheduleReview.song }}</p>
  322. </div>
  323. <div class="rightCell" v-if="courseScheduleReview">
  324. <p>发音</p>
  325. <div class="chioseWrap">
  326. <el-rate
  327. v-model="courseScheduleReview.pronunciation"
  328. disabled
  329. text-color="#ff9900"
  330. ></el-rate>
  331. </div>
  332. </div>
  333. <div class="rightCell" v-if="courseScheduleReview">
  334. <p>节奏</p>
  335. <div class="chioseWrap">
  336. <el-rate
  337. v-model="courseScheduleReview.tempo"
  338. disabled
  339. text-color="#ff9900"
  340. ></el-rate>
  341. </div>
  342. </div>
  343. <div class="rightCell" v-if="courseScheduleReview">
  344. <p>乐理</p>
  345. <div class="chioseWrap">
  346. <el-rate
  347. v-model="courseScheduleReview.musicTheory"
  348. disabled
  349. text-color="#ff9900"
  350. ></el-rate>
  351. </div>
  352. </div>
  353. <div class="rightCell">
  354. <p>评价备注</p>
  355. </div>
  356. <el-input
  357. type="textarea"
  358. disabled
  359. v-model="courseScheduleReview.memo"
  360. v-if="courseScheduleReview"
  361. ></el-input>
  362. </div>
  363. </div>
  364. </div>
  365. <div slot="footer" class="dialog-footer">
  366. <el-button @click="netWorkVisible = false">取 消</el-button>
  367. <el-button type="primary" @click="submitNetwork">确定</el-button>
  368. </div>
  369. </el-dialog>
  370. </div>
  371. </template>
  372. <script>
  373. import { getToken, getTenantId } from "@/utils/auth";
  374. import qs from "qs";
  375. import axios from "axios";
  376. import pagination from "@/components/Pagination/index";
  377. import { practiceGroupType } from "@/utils/searchArray";
  378. import {
  379. getReviewInfo,
  380. updateReviewInfo,
  381. getVipGroup,
  382. } from "@/api/buildTeam";
  383. export default {
  384. components: { pagination },
  385. data() {
  386. return {
  387. netWorkVisible: false,
  388. searchForm: {
  389. organId: null,
  390. teacherId: null,
  391. eduTeacherId: null,
  392. isFree: null,
  393. studentReview: null,
  394. hasHandHomework: null,
  395. hasReview: null,
  396. courseReview: null,
  397. hasArrived: null,
  398. homeWorkReplied: null,
  399. assignHomework: null,
  400. month: [],
  401. practiceGroupType: null,
  402. },
  403. practiceGroupType: practiceGroupType,
  404. organList: [],
  405. teacherList: [],
  406. educationList: [],
  407. tableData: [],
  408. rules: {
  409. // 分页规则
  410. limit: 10, // 限制显示条数
  411. page: 1, // 当前页
  412. total: 0, // 总条数
  413. page_size: [10, 20, 40, 50], // 选择限制显示条数
  414. },
  415. value: null,
  416. teacherClassHeadInfo: null,
  417. courseScheduleReview: null,
  418. courseScheduleComplaints: null,
  419. activeId: null,
  420. };
  421. },
  422. //生命周期 - 创建完成(可以访问当前this实例)
  423. created() {},
  424. //生命周期 - 挂载完成(可以访问DOM元素)
  425. async mounted() {
  426. this.$store.dispatch("setBranchs");
  427. await this.$store.dispatch("setOrganRole");
  428. this.init();
  429. },
  430. activated() {
  431. this.init();
  432. },
  433. methods: {
  434. init() {
  435. // 获取默认月份
  436. if (this.searchForm.month.length <= 0) {
  437. var now = new Date();
  438. var startDate = new Date(
  439. Date.UTC(now.getFullYear(), now.getMonth(), now.getDate())
  440. )
  441. .toISOString()
  442. .slice(0, 10);
  443. // + " 00:00:00" + " 23:59:59"
  444. var endDate = new Date(
  445. Date.UTC(now.getFullYear(), now.getMonth(), now.getDate())
  446. )
  447. .toISOString()
  448. .slice(0, 10);
  449. this.searchForm.month = [];
  450. this.searchForm.month.push(startDate);
  451. this.searchForm.month.push(endDate);
  452. console.log(this.searchForm.month);
  453. }
  454. this.getList();
  455. },
  456. getList() {
  457. let obj = {};
  458. obj.organId = this.searchForm.organId || null;
  459. obj.teacherId = this.searchForm.teacherId || null;
  460. obj.eduTeacherId = this.searchForm.eduTeacherId || null;
  461. obj.isFree = this.searchForm.isFree || null;
  462. obj.studentReview = this.searchForm.studentReview || null;
  463. obj.hasHandHomework = this.searchForm.hasHandHomework || null;
  464. obj.hasReview = this.searchForm.hasReview || null;
  465. obj.courseReview = this.searchForm.courseReview || null;
  466. obj.hasArrived = this.searchForm.hasArrived || null;
  467. obj.homeWorkReplied = this.searchForm.homeWorkReplied || null;
  468. obj.assignHomework = this.searchForm.assignHomework || null;
  469. obj.search = this.searchForm.search;
  470. obj.practiceGroupType = this.searchForm.practiceGroupType || null;
  471. if (this.searchForm.month && this.searchForm.month.length > 0) {
  472. obj.startTime = this.searchForm.month[0];
  473. obj.endTime = this.searchForm.month[1];
  474. } else {
  475. this.$message.error("请选择时间范围");
  476. return;
  477. }
  478. obj.page = this.rules.page;
  479. obj.rows = this.rules.limit;
  480. getVipGroup(obj).then((res) => {
  481. if (res.code == 200) {
  482. this.tableData = res.data.rows;
  483. this.rules.total = res.data.total;
  484. }
  485. });
  486. },
  487. lookDetail(row) {
  488. this.activeId = row.reviewId;
  489. getReviewInfo({ id: this.activeId }).then((res) => {
  490. if (res.code == 200) {
  491. this.teacherClassHeadInfo = res.data.teacherClassHeadInfo;
  492. this.courseScheduleReview = res.data.courseScheduleReview;
  493. this.courseScheduleComplaints = res.data.courseScheduleComplaints;
  494. // 教务评价详情
  495. // eduCourseReviewGetReviewInfo({id}).then(res=>{
  496. // if(res.code == 200){
  497. // }
  498. // })
  499. this.netWorkVisible = true;
  500. }
  501. });
  502. },
  503. submitNetwork() {
  504. if (!this.courseScheduleReview.courseReview) {
  505. this.$message.error("请评价课程");
  506. return;
  507. }
  508. updateReviewInfo({
  509. id: this.activeId,
  510. courseReview: this.courseScheduleReview.courseReview,
  511. }).then((res) => {
  512. if (res.code == 200) {
  513. this.$message.success("评价成功");
  514. this.netWorkVisible = false;
  515. this.getList();
  516. }
  517. });
  518. },
  519. search() {
  520. this.rules.page = 1;
  521. this.getList();
  522. },
  523. onReSet() {
  524. this.rules.page = 1;
  525. this.searchForm = {
  526. organId: null,
  527. teacherId: null,
  528. educationalTeacherId: null,
  529. isFree: null,
  530. studentReview: null,
  531. hasHandHomework: null,
  532. hasReview: null,
  533. courseReview: null,
  534. month: null,
  535. hasArrived: null,
  536. homeWorkReplied: null,
  537. assignHomework: null,
  538. practiceGroupType: null,
  539. };
  540. var now = new Date();
  541. var startDate = new Date(
  542. Date.UTC(now.getFullYear(), now.getMonth(), now.getDate())
  543. )
  544. .toISOString()
  545. .slice(0, 10);
  546. // + " 00:00:00" + " 23:59:59"
  547. var endDate = new Date(
  548. Date.UTC(now.getFullYear(), now.getMonth(), now.getDate())
  549. )
  550. .toISOString()
  551. .slice(0, 10);
  552. this.searchForm.month = [];
  553. this.searchForm.month.push(startDate);
  554. this.searchForm.month.push(endDate);
  555. this.getList();
  556. },
  557. netWorkExport() {
  558. let url = "/api-web/export/courseReviews";
  559. let obj = {};
  560. this.searchForm.organId ? (obj.organId = this.searchForm.organId) : null;
  561. this.searchForm.teacherId
  562. ? (obj.teacherId = this.searchForm.teacherId)
  563. : null;
  564. this.searchForm.eduTeacherId
  565. ? (obj.eduTeacherId = this.searchForm.eduTeacherId)
  566. : null;
  567. this.searchForm.isFree ? (obj.isFree = this.searchForm.isFree) : null;
  568. this.searchForm.studentReview
  569. ? (obj.studentReview = this.searchForm.studentReview)
  570. : null;
  571. this.searchForm.hasHandHomework
  572. ? (obj.hasHandHomework = this.searchForm.hasHandHomework)
  573. : null;
  574. this.searchForm.hasReview
  575. ? (obj.hasReview = this.searchForm.hasReview)
  576. : null;
  577. this.searchForm.courseReview
  578. ? (obj.courseReview = this.searchForm.courseReview)
  579. : null;
  580. this.searchForm.search ? (obj.search = this.searchForm.search) : null;
  581. this.searchForm.hasArrived
  582. ? (obj.hasArrived = this.searchForm.hasArrived)
  583. : null;
  584. this.searchForm.homeWorkReplied
  585. ? (obj.homeWorkReplied = this.searchForm.homeWorkReplied)
  586. : null;
  587. this.searchForm.assignHomework
  588. ? (obj.assignHomework = this.searchForm.assignHomework)
  589. : null;
  590. if (this.searchForm.month && this.searchForm.month.length > 0) {
  591. obj.startTime = this.searchForm.month[0];
  592. obj.endTime = this.searchForm.month[1];
  593. } else {
  594. this.$message.error("请选择时间范围");
  595. return;
  596. }
  597. this.searchForm.practiceGroupType
  598. ? (obj.practiceGroupType = this.searchForm.practiceGroupType)
  599. : null;
  600. const options = {
  601. method: "POST",
  602. headers: {
  603. Authorization: getToken(),
  604. tenantId: getTenantId()
  605. },
  606. data: qs.stringify(obj),
  607. url,
  608. responseType: "blob",
  609. };
  610. this.$confirm("您确定导出评价列表", "提示", {
  611. confirmButtonText: "确定",
  612. cancelButtonText: "取消",
  613. type: "warning",
  614. })
  615. .then(() => {
  616. axios(options).then((res) => {
  617. let blob = new Blob([res.data], {
  618. // type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
  619. type: "application/vnd.ms-excel;charset=utf-8",
  620. //word文档为application/msword,pdf文档为application/pdf,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8
  621. });
  622. let objectUrl = URL.createObjectURL(blob);
  623. let link = document.createElement("a");
  624. let nowTime = new Date();
  625. let ymd =
  626. nowTime.getFullYear() +
  627. "" +
  628. (nowTime.getMonth() + 1) +
  629. "" +
  630. nowTime.getDate() +
  631. "" +
  632. nowTime.getHours() +
  633. "" +
  634. nowTime.getMinutes();
  635. let fname = +ymd + "网管评价.xls"; //下载文件的名字
  636. link.href = objectUrl;
  637. link.setAttribute("download", fname);
  638. document.body.appendChild(link);
  639. link.click();
  640. });
  641. })
  642. .catch(() => {});
  643. },
  644. },
  645. filters: {
  646. studentReviewFilter(val) {
  647. let arr = ["未评价", "1星", "2星", "3星", "4星", "5星"];
  648. return arr[val];
  649. },
  650. },
  651. computed: {
  652. teachingMaterial() {
  653. if (
  654. this.courseScheduleReview &&
  655. this.courseScheduleReview.teachingMaterial
  656. ) {
  657. return this.courseScheduleReview.teachingMaterial;
  658. } else {
  659. return "";
  660. }
  661. },
  662. mychiose() {
  663. if (this.courseScheduleReview && this.courseScheduleReview.courseReview) {
  664. return this.courseScheduleReview.courseReview;
  665. } else {
  666. return "";
  667. }
  668. },
  669. },
  670. };
  671. </script>
  672. <style lang='scss' scoped>
  673. .wrap {
  674. display: flex;
  675. flex-direction: row;
  676. justify-content: space-between;
  677. .leftCell {
  678. width: 300px;
  679. display: flex;
  680. flex-direction: row;
  681. justify-content: space-between;
  682. align-items: center;
  683. line-height: 50px;
  684. // border-bottom: 1px solid #ccc;
  685. }
  686. .rightCell {
  687. width: 300px;
  688. display: flex;
  689. flex-direction: row;
  690. justify-content: flex-start;
  691. align-items: center;
  692. line-height: 50px;
  693. p {
  694. margin-right: 30px;
  695. }
  696. }
  697. }
  698. ::v-deep .el-tag {
  699. cursor: pointer;
  700. }
  701. </style>