index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  1. <template>
  2. <div class="app-container">
  3. <el-row>
  4. <el-col :span="24">
  5. <div class="cell">
  6. <div class="cell-title">
  7. <div class="title-left">
  8. <div class="title">投诉管理</div>
  9. </div>
  10. </div>
  11. <div class="cell-body">
  12. <div class="controls">
  13. <el-form :inline="true" :model="formInline" class="demo-form-inline">
  14. <el-form-item label="状态">
  15. <el-select v-model="formInline.status" clearable placeholder="请选择">
  16. <el-option v-for="item in formInline.options" :key="item.id" :label="item.label" :value="item.id">
  17. </el-option>
  18. </el-select>
  19. </el-form-item>
  20. <el-form-item label="投诉时间">
  21. <el-date-picker v-model="formInline.search_datatime" type="daterange" align="right" start-placeholder="开始日期"
  22. end-placeholder="结束日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd">
  23. </el-date-picker>
  24. </el-form-item>
  25. <el-form-item label="">
  26. <el-input v-model="formInline.keyword" style="width: 200px;" prefix-icon="el-icon-search" clearable
  27. placeholder="请输入关键字段"></el-input>
  28. </el-form-item>
  29. <el-form-item>
  30. <el-button type="primary" class="btn-search" @click="btn_search">查询</el-button>
  31. </el-form-item>
  32. </el-form>
  33. <el-button type="primary" icon="el-icon-download" class="export" @click="exportExcel">导出投诉</el-button>
  34. </div>
  35. <el-table ref="multipleTable" :data="tableData" height="558" style="width: 100%" :cell-style="cell_style" v-loading="loading"
  36. :header-cell-style="header_cell_style">
  37. <el-table-column fixed="left" label="状态" align="center">
  38. <template slot-scope="scope">
  39. <span v-if="scope.row.status == 1" style="color: #F9273F;">待处理</span>
  40. <span v-else-if="scope.row.status == 2" style="color: #ccc;">处理中</span>
  41. <span v-else-if="scope.row.status == 3" style="color: #56AA2E;">处理完成</span>
  42. <span v-else style="color: #ccc;">未知状态</span>
  43. </template>
  44. </el-table-column>
  45. <el-table-column label="投诉单号" align="center" width="180">
  46. <template slot-scope="scope">
  47. <span>{{ scope.row.id }}</span>
  48. </template>
  49. </el-table-column>
  50. <el-table-column label="民宿" align="center" width="280">
  51. <template slot-scope="scope">
  52. <span>{{ scope.row.hotelName }}</span>
  53. </template>
  54. </el-table-column>
  55. <el-table-column label="民宿电话" align="center" width="120">
  56. <template slot-scope="scope">
  57. <span>{{ scope.row.hotelPhone }}</span>
  58. </template>
  59. </el-table-column>
  60. <el-table-column label="投诉人电话" align="center" width="120">
  61. <template slot-scope="scope">
  62. <span>{{ scope.row.complainPhone }}</span>
  63. </template>
  64. </el-table-column>
  65. <el-table-column label="订单号" align="center" width="180">
  66. <template slot-scope="scope">
  67. <span>{{ scope.row.order_num }}</span>
  68. </template>
  69. </el-table-column>
  70. <el-table-column label="标题" align="center" width="180">
  71. <template slot-scope="scope">
  72. <span>{{ scope.row.title }}</span>
  73. </template>
  74. </el-table-column>
  75. <el-table-column label="问题描述" align="center" width="280">
  76. <template slot-scope="scope">
  77. <span>{{ scope.row.content }}</span>
  78. </template>
  79. </el-table-column>
  80. <el-table-column label="投诉时间" align="center" width="168">
  81. <template slot-scope="scope">
  82. <span>{{ scope.row.createDate | truncateDate }}</span>
  83. </template>
  84. </el-table-column>
  85. <el-table-column label="备注" align="center" width="280">
  86. <template slot-scope="scope">
  87. <span>{{ scope.row.remark }}</span>
  88. </template>
  89. </el-table-column>
  90. <el-table-column fixed="right" label="操作" width="120">
  91. <template slot-scope="scope">
  92. <el-button @click="handleClickRemarks(scope.row)" type="text" size="small">受理</el-button>
  93. <el-button @click="handleRemarks(scope.row)" type="text" size="small">备注</el-button>
  94. </template>
  95. </el-table-column>
  96. </el-table>
  97. <div class="pagination-table">
  98. <el-pagination @current-change="currentPageChange" :current-page.sync="pagination.currentPage" :page-size="pagination.pageSize"
  99. layout="prev, pager, next, jumper" :total="pagination.total">
  100. </el-pagination>
  101. </div>
  102. </div>
  103. </div>
  104. </el-col>
  105. </el-row>
  106. <!-- 投诉详情 -->
  107. <el-dialog title="投诉详情" custom-class="acceptance-class" :visible.sync="dialogComplaintVisible" :close-on-click-modal="false"
  108. :close-on-press-escape="false" @close="dialogComplaintVisible = false">
  109. <p v-if="complaint.status == 1"><label class="lbl-cls">投诉状态:</label><span style="color: #F9273F;">待处理</span></p>
  110. <p v-else-if="complaint.status == 2"><label class="lbl-cls">投诉状态:</label><span style="color: #56AA2E;">处理中</span></p>
  111. <p v-else-if="complaint.status == 3"><label class="lbl-cls">投诉状态:</label><span style="color: #56AA2E;">处理完成</span></p>
  112. <p v-else><label class="lbl-cls">投诉状态:</label><span style="color: #ccc;">未知状态</span></p>
  113. <p><label class="lbl-cls">投诉单号:</label> {{ complaint.id }}</p>
  114. <p><label class="lbl-cls">民宿:</label> {{ complaint.hotelName }}</p>
  115. <p><label class="lbl-cls">民宿电话:</label> {{ complaint.hotelPhone }}</p>
  116. <p><label class="lbl-cls">投诉人电话:</label> {{ complaint.complainPhone }}</p>
  117. <p><label class="lbl-cls">订单号:</label> {{ complaint.order_num }}</p>
  118. <div>
  119. <h3 style="padding-top: 20px;">投诉信息</h3>
  120. <p><label class="lbl-cls">标题:</label> {{ complaint.title }}</p>
  121. <p><label class="lbl-cls">问题描述:</label> {{ complaint.content }}</p>
  122. <div class="show-imgs">
  123. <div><label class="lbl-cls">图片:</label></div>
  124. <div class="imgs">
  125. <viewer :images="complaint.fileInfos">
  126. <div style="display: flex;">
  127. <div v-for="(image, index) in complaint.fileInfos" :key="index">
  128. <img :src="image.url" v-if="!image.url.endsWith('.mp4')" style="margin: 0 2px; border-radius: 5px; cursor: pointer;" alt=""
  129. height="80px" width="80px" />
  130. </div>
  131. </div>
  132. </viewer>
  133. </div>
  134. </div>
  135. <p><label class="lbl-cls">投诉时间:</label> {{ complaint.createDate | truncateDate }}</p>
  136. <p><label class="lbl-cls">备注:</label><el-input type="textarea" style="margin-left: 100px; margin-top: -20px; width: calc(100% - 100px);"
  137. :rows="2" placeholder="暂无备注信息" v-model="complaint.remark">
  138. </el-input>
  139. </p>
  140. <p style="display: flex; justify-content: flex-end;">
  141. <el-button class="cancel-btn" @click="dialogComplaintVisible = false">取 消</el-button>
  142. <el-button v-if="complaint.status != 3" type="primary" class="confirm-btn" @click="handleClickAcceptance">确定受理</el-button>
  143. <el-button v-else type="primary" class="confirm-btn-disabled" @click="handleClickAcceptance" disabled>确定受理</el-button>
  144. </p>
  145. </div>
  146. </el-dialog>
  147. <el-dialog title="添加备注" custom-class="add-remarks-class" :visible.sync="dialogRemarksFormVisible" :close-on-click-modal="false">
  148. <el-form :model="formRemarks">
  149. <el-form-item>
  150. <el-input type="textarea" placeholder="请输入备注" v-model="formRemarks.remark" :autosize="{minRows: 4, maxRows: 6}" maxlength="100"
  151. show-word-limit></el-input>
  152. </el-form-item>
  153. </el-form>
  154. <div slot="footer" class="dialog-footer">
  155. <el-button class="cancel-btn" @click="dialogRemarksFormVisible = false">取 消</el-button>
  156. <el-button type="primary" class="confirm-btn" @click="handleRemarksClick">确 定</el-button>
  157. </div>
  158. </el-dialog>
  159. </div>
  160. </template>
  161. <script>
  162. import {
  163. getTableData,
  164. getXiang,
  165. downloadExcel,
  166. Complainacceptance,
  167. ComplainupdateRemarkById
  168. } from '@/api/complaintMgr'
  169. import {
  170. isEmpty
  171. } from '@/js/common';
  172. export default {
  173. data() {
  174. return {
  175. currentUserLevel: this.$store.state.user.level, // 当前用户的权限
  176. dialogImageUrl: '',
  177. formLabelWidth: '120px',
  178. // 表格单元格样式
  179. cell_style: {
  180. color: '#1A202B',
  181. 'font-size': '14px',
  182. 'font-family': 'Microsoft YaHei-3970(82674968)'
  183. },
  184. // 表格头部样式
  185. header_cell_style: {
  186. background: '#E6ECFE',
  187. color: '#1A202B',
  188. 'font-size': '16px',
  189. 'font-family': 'Microsoft YaHei-3970(82674968)'
  190. },
  191. // 查询数据
  192. formInline: {
  193. options: [{
  194. id: 1,
  195. label: '待处理'
  196. }, {
  197. id: 2,
  198. label: '处理中'
  199. }, {
  200. id: 3,
  201. label: '处理完成'
  202. }],
  203. status: '',
  204. search_datatime: '',
  205. keyword: ''
  206. },
  207. tableData: [],
  208. cond_data: {},
  209. // 分页参数
  210. pagination: {
  211. currentPage: 1,
  212. pageSize: 9,
  213. total: 0
  214. },
  215. loading: true,
  216. complaint: {
  217. id: '',
  218. order_num: '',
  219. status: '',
  220. bookingId: '',
  221. hotelName: '',
  222. hotelPhone: '',
  223. complainPhone: '',
  224. title: '',
  225. content: '',
  226. fileInfos: [],
  227. createDate: '',
  228. remark: ''
  229. },
  230. dialogComplaintVisible: false,
  231. dialogRemarksFormVisible: false, // 添加备注
  232. formRemarks: {
  233. id: '',
  234. remark: ''
  235. }
  236. }
  237. },
  238. filters: {
  239. truncateDate(value) {
  240. return value.substring(0, value.length - 2);
  241. }
  242. },
  243. created() {
  244. // 检测权限
  245. if (this.currentUserLevel !== 2) {
  246. this.$router.replace({
  247. path: '/data'
  248. })
  249. return
  250. }
  251. // 获取消费记录,表格数据
  252. this.get_table_data('list')
  253. },
  254. mounted() {
  255. document.getElementsByClassName("el-pagination__jump")[0].childNodes[0].nodeValue = "跳至";
  256. },
  257. methods: {
  258. // 添加备注
  259. handleRemarksClick() {
  260. if (isEmpty(this.formRemarks.remark)) {
  261. this.$message.error('请输入【备注】内容')
  262. return
  263. }
  264. var query = {
  265. id: this.formRemarks.id,
  266. remark: this.formRemarks.remark
  267. }
  268. ComplainupdateRemarkById(query).then((res) => {
  269. // console.log(res.data);
  270. if (res.code === 200) {
  271. this.get_table_data('search')
  272. this.dialogRemarksFormVisible = false;
  273. this.$message.warning('备注完成!')
  274. } else {
  275. this.$message.warning('备注失败!')
  276. }
  277. }).catch((err) => {
  278. this.$message.error(err.message)
  279. });
  280. },
  281. /**
  282. * 显示添加备注对话框
  283. */
  284. handleRemarks(row) {
  285. // console.log(row);
  286. this.formRemarks.id = row.id;
  287. this.formRemarks.remark = row.remark;
  288. this.dialogRemarksFormVisible = true;
  289. },
  290. /**
  291. * 受理
  292. * @param {Object} row
  293. */
  294. handleClickAcceptance() {
  295. // console.log(this.complaint);
  296. var query = {
  297. id: this.complaint.id,
  298. remark: this.complaint.remark
  299. }
  300. Complainacceptance(query).then((res) => {
  301. // console.log(res.data);
  302. if (res.code === 200) {
  303. this.get_table_data('search')
  304. this.dialogComplaintVisible = false
  305. this.$message.warning('受理完成!')
  306. } else {
  307. this.$message.warning('受理失败!')
  308. }
  309. }).catch((err) => {
  310. this.$message.error(err.message)
  311. });
  312. },
  313. // 点击受理,弹出投诉详情对话框
  314. handleClickRemarks(row) {
  315. // console.log(row);
  316. this.$set(this.complaint, 'id', row.id);
  317. this.$set(this.complaint, 'order_num', row.order_num);
  318. this.$set(this.complaint, 'status', row.status);
  319. this.$set(this.complaint, 'bookingId', row.bookingId);
  320. this.$set(this.complaint, 'hotelName', row.hotelName);
  321. this.$set(this.complaint, 'hotelPhone', row.hotelPhone);
  322. this.$set(this.complaint, 'complainPhone', row.complainPhone);
  323. this.$set(this.complaint, 'title', row.title);
  324. this.$set(this.complaint, 'content', row.content);
  325. this.$set(this.complaint, 'createDate', row.createDate);
  326. this.$set(this.complaint, 'remark', row.remark);
  327. getXiang(row).then((res) => {
  328. // console.log(res.data);
  329. if (res.code === 200) {
  330. this.$set(this.complaint, 'fileInfos', res.data.fileInfos);
  331. } else {
  332. this.complaint = []
  333. this.$message.warning('没有符合条件的数据!')
  334. }
  335. }).catch((err) => {
  336. this.$message.error(err.message)
  337. });
  338. this.dialogComplaintVisible = true
  339. },
  340. /**
  341. * 获取消费记录,表格数据
  342. */
  343. get_table_data(param) {
  344. this.loading = true
  345. this.get_condtion();
  346. let data = this.cond_data;
  347. if (param == 'search') {
  348. data.page = 1
  349. this.pagination.currentPage = 1
  350. }
  351. var that = this
  352. // console.log(data);
  353. getTableData(data).then((res) => {
  354. // console.log(res.data);
  355. if (res.code === 200) {
  356. var d = res.data
  357. that.pagination.total = d.total
  358. that.tableData = []
  359. for (var i = 0; i < d.pageList.length; i++) {
  360. that.tableData.push(d.pageList[i])
  361. }
  362. } else {
  363. that.tableData = []
  364. that.$message.warning('没有符合条件的数据!')
  365. }
  366. }).catch((err) => {
  367. that.$message.error(err.message)
  368. });
  369. that.loading = false;
  370. },
  371. /**
  372. * 查询条件
  373. */
  374. get_condtion() {
  375. let data = {
  376. page: this.pagination.currentPage,
  377. rows: this.pagination.pageSize
  378. }
  379. if (this.formInline.status !== '') {
  380. data.status = this.formInline.status
  381. }
  382. if (this.formInline.search_datatime !== '') {
  383. data.search_datatime = this.formInline.search_datatime
  384. }
  385. if (this.formInline.keyword !== '') {
  386. data.keyword = this.formInline.keyword
  387. }
  388. this.cond_data = data;
  389. },
  390. /**
  391. * 导出为Excel
  392. */
  393. exportExcel() {
  394. var that = this
  395. downloadExcel(this.cond_data).then((res) => {
  396. // console.log(res);
  397. if (res.code === 200) {
  398. that.$message.success(res.message)
  399. let xls = res.downurl
  400. window.open(xls)
  401. } else {
  402. that.tableData = []
  403. that.$message.warning(res.message)
  404. }
  405. }).catch((err) => {
  406. that.$message.error(err.message)
  407. });
  408. },
  409. /**
  410. * 搜索
  411. */
  412. btn_search() {
  413. this.get_table_data('search')
  414. },
  415. /**
  416. * currentPage 改变时会触发
  417. * @param {Object} val
  418. */
  419. currentPageChange(val) {
  420. this.pagination.currentPage = val
  421. this.get_table_data('pages')
  422. }
  423. }
  424. }
  425. </script>
  426. <style lang="scss" scoped>
  427. .app-container {
  428. background-color: #EFF2F7;
  429. padding: 10px;
  430. .el-row {
  431. .el-col {
  432. padding: 10px;
  433. .cell {
  434. padding: 30px;
  435. border-radius: 10px;
  436. background-color: #FFFFFF;
  437. box-shadow: 0px 3px 21px 0px rgba(60, 108, 254, 0.16);
  438. .cell-title {
  439. display: flex;
  440. justify-content: space-between;
  441. align-items: center;
  442. margin-bottom: 30px;
  443. padding-bottom: 30px;
  444. border-bottom: 1px solid #CCCCCC;
  445. .title-left {
  446. display: flex;
  447. align-items: center;
  448. .title {
  449. font-size: 22px;
  450. font-family: Microsoft YaHei-3970(82674968);
  451. font-weight: bold;
  452. color: #1A202B;
  453. }
  454. .title-detail {
  455. margin-left: 50px;
  456. font-size: 18px;
  457. font-family: Microsoft YaHei-3970(82674968);
  458. color: #1A202B;
  459. }
  460. }
  461. .title-right {
  462. display: flex;
  463. justify-content: space-between;
  464. align-items: center;
  465. .el-button {
  466. width: 110px;
  467. height: 46px;
  468. background: #2B4CFE;
  469. font-size: 18px;
  470. color: #FFFFFF;
  471. font-family: Microsoft YaHei-3970(82674968);
  472. border-radius: 5px;
  473. }
  474. .el-button--warning {
  475. background: #F88A64;
  476. }
  477. }
  478. }
  479. .cell-body {
  480. .controls {
  481. display: flex;
  482. justify-content: space-between;
  483. align-items: center;
  484. .demo-form-inline {
  485. display: inline-flex;
  486. flex-wrap: wrap;
  487. align-items: center;
  488. justify-content: flex-start;
  489. .btn-search {
  490. background: rgba(9, 101, 98, 1);
  491. font-size: 14px;
  492. color: #FFFFFF;
  493. font-family: Microsoft YaHei-3970(82674968);
  494. border-radius: 5px;
  495. border: none;
  496. }
  497. }
  498. .export {
  499. background: rgba(9, 101, 98, 1);
  500. font-size: 14px;
  501. color: #FFFFFF;
  502. font-family: Microsoft YaHei-3970(82674968);
  503. border-radius: 5px;
  504. margin-bottom: 22px;
  505. border: none;
  506. }
  507. }
  508. .pagination-table {
  509. display: flex;
  510. justify-content: flex-end;
  511. align-items: center;
  512. height: 30px;
  513. margin-top: 20px;
  514. .txt-notice {
  515. span {
  516. font-size: 28px;
  517. font-weight: 500;
  518. font-family: '微软雅黑';
  519. }
  520. }
  521. ::v-deep .el-pagination {
  522. display: flex;
  523. justify-content: flex-end;
  524. align-items: center;
  525. }
  526. ::v-deep .el-pagination ul {
  527. display: flex;
  528. }
  529. ::v-deep .el-pagination button,
  530. ::v-deep .el-pagination li {
  531. display: flex;
  532. justify-content: center;
  533. align-items: center;
  534. width: 50px;
  535. height: 36px;
  536. border: 1px solid #626262;
  537. border-radius: 3px;
  538. font-size: 14px;
  539. margin: 0 5px;
  540. }
  541. ::v-deep .el-pagination span {
  542. margin-left: 10px;
  543. }
  544. ::v-deep .el-pagination .el-pagination__jump {
  545. font-size: 16px;
  546. }
  547. ::v-deep .el-pagination .el-pagination__editor {
  548. width: 50px;
  549. height: 36px;
  550. margin: 0 5px;
  551. }
  552. ::v-deep .el-pagination .el-input__inner {
  553. width: 50px;
  554. height: 36px;
  555. border: 1px solid #626262;
  556. margin: -4px 0 0 0;
  557. }
  558. }
  559. }
  560. }
  561. }
  562. }
  563. ::v-deep .el-dialog {
  564. margin: 0 !important;
  565. width: 650px;
  566. height: 560px;
  567. background: #FFFFFF;
  568. box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.29);
  569. border-radius: 6px;
  570. position: absolute;
  571. top: 50%;
  572. left: 50%;
  573. transform: translate(-50%, -50%);
  574. .el-dialog__header {
  575. display: flex;
  576. align-items: center;
  577. width: 100%;
  578. height: 58px;
  579. padding: 30px;
  580. border-radius: 6px 6px 0px 0px;
  581. font-weight: bold;
  582. border-bottom: 1px solid rgba(230, 230, 230, 1);
  583. }
  584. .el-dialog__body {
  585. padding-bottom: 0;
  586. .el-form-item__label,
  587. .el-form-item__content {
  588. font-size: 16px;
  589. font-family: Microsoft YaHei-3970(82674968);
  590. color: #53575A;
  591. }
  592. .el-input__inner {
  593. width: 180px;
  594. }
  595. }
  596. // 删除对话框的样式
  597. .del-account-body {
  598. display: flex;
  599. flex-direction: column;
  600. justify-content: center;
  601. align-items: center;
  602. height: 180px;
  603. img {
  604. width: 72px;
  605. }
  606. .del-account-body-txt {
  607. height: 58px;
  608. line-height: 58px;
  609. font-size: 18px;
  610. font-family: Microsoft YaHei-3970(82674968);
  611. color: #333333;
  612. }
  613. }
  614. .el-dialog__footer {
  615. padding-bottom: 0 !important;
  616. text-align: center;
  617. .el-button.el-button--default {
  618. width: 75px;
  619. height: 40px;
  620. border: 1px solid #2B4CFE;
  621. border-radius: 6px;
  622. font-size: 16px;
  623. font-family: Microsoft YaHei-3970(82674968);
  624. color: #2B4CFE;
  625. }
  626. .el-button.el-button--primary {
  627. width: 75px;
  628. height: 40px;
  629. background: #2B4CFE;
  630. border-radius: 6px;
  631. font-size: 16px;
  632. font-family: Microsoft YaHei-3970(82674968);
  633. color: #FFFFFF;
  634. margin-left: 60px;
  635. }
  636. }
  637. }
  638. >>>.el-table__fixed-body-wrapper .el-table__body {
  639. padding-bottom: 17px !important; // 滚动条高度
  640. }
  641. >>>.el-table__fixed,
  642. >>>.el-table__fixed-right {
  643. height: calc(100% - 14px) !important;
  644. }
  645. }
  646. </style>
  647. <style>
  648. .acceptance-class {
  649. height: 680px !important;
  650. }
  651. .add-remarks-class {
  652. height: 300px !important;
  653. }
  654. .el-date-editor--daterange.el-input__inner {
  655. width: 280px !important;
  656. }
  657. .show-imgs {
  658. display: flex;
  659. height: 90px;
  660. }
  661. .imgs {
  662. display: flex;
  663. margin-left: 20px;
  664. }
  665. .lbl-cls {
  666. display: inline-block;
  667. width: 100px;
  668. text-align: right;
  669. padding-right: 10px;
  670. color: #bbb;
  671. }
  672. .cancel-btn {
  673. color: rgba(9, 101, 98, 1) !important;
  674. border: 1px solid rgba(9, 101, 98, 1) !important;
  675. }
  676. .confirm-btn {
  677. border: none !important;
  678. background: rgba(9, 101, 98, 1) !important;
  679. color: #fff !important;
  680. border-radius: 5px !important;
  681. margin-left: 28px !important;
  682. }
  683. .confirm-btn-disabled {
  684. border: none !important;
  685. background: rgba(9, 101, 98, 1) !important;
  686. color: #9c9c9c !important;
  687. border-radius: 5px !important;
  688. margin-left: 28px !important;
  689. }
  690. </style>