35c4089143d5d04e44fe6a5e92e95be0aae60399.svn-base 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702
  1. <template>
  2. <!-- 修改弹框 -->
  3. <el-dialog
  4. width="60%"
  5. class="outerDialog custom_dialog"
  6. title="修改督查问题"
  7. :modal = true
  8. @close="closeModal"
  9. :append-to-body = true
  10. :visible.sync="changeSupervisionVisible">
  11. <div class="scroll_wrapper">
  12. <div
  13. style="width:49%;overflow-y:auto;max-height:58vh;float:left;border:1px solid #d5d5ff;margin-right:5px;">
  14. <p style="font-weight:bolder;background-color:#d5d5ff;padding:3px;">基本信息</p>
  15. <el-form ref="changeSupFrom" :rules="rules1" :model="changeSupervision" label-width="120px">
  16. <el-form-item label="督查对象名称" prop="newVillName">
  17. <el-input v-model="changeSupervision.newVillName" clearable :readonly="true"></el-input>
  18. </el-form-item>
  19. <el-form-item label="问题类别" prop="inspPblmsName">
  20. <el-select v-model="t1" value-key="inspPblmsName" placeholder="请选择" @change="problemListChange">
  21. <el-option v-for="(item,index) in problemList" :key="index" :label="item.inspPblmsName" :value="item">
  22. </el-option>
  23. </el-select>
  24. </el-form-item>
  25. <el-form-item label="检查项目" prop="checkPoint" style="text-align:left">
  26. <el-select v-model="t2" placeholder="请选择" value-key="checkPointName" @change="currentCheckPointListChange">
  27. <el-option v-for="(item,index) in currentCheckPointList" :key="index" :label="item.checkPointName" :value="item">
  28. </el-option>
  29. </el-select>
  30. </el-form-item>
  31. <el-form-item label="问题描述" prop="pblmDesc" style="text-align:left">
  32. <el-select v-model="t3" placeholder="请选择" value-key="pblmDesc"
  33. @change="currentProblemDescListChange" style="max-width: 500px">
  34. <el-option v-for="(item,index) in currentProblemDescList" :key="index"
  35. :label="item.pblmDesc" :value="item" :title="item.pblmDesc"
  36. style="max-width: 500px">
  37. </el-option>
  38. </el-select>
  39. </el-form-item>
  40. <el-form-item label="详细描述" prop="inspPblmDesc">
  41. <el-input type="textarea" :rows="2" v-model="changeSupervision.inspPblmDesc" clearable></el-input>
  42. </el-form-item>
  43. <el-form-item label="上报人" prop="persName">
  44. <el-input
  45. resize="none"
  46. type="input"
  47. :rows="3"
  48. readonly
  49. placeholder="请输入"
  50. v-model.trim="changeSupervision.persName"
  51. ></el-input>
  52. </el-form-item>
  53. <el-form-item label="上报时间" prop="collTime">
  54. <el-date-picker v-model="changeSupervision.collTime" readonly type="date"></el-date-picker>
  55. </el-form-item>
  56. </el-form>
  57. </div>
  58. <div
  59. style="width: 49%;float: left;border: 1px solid rgb(213, 213, 255);margin-right: 5px;overflow-y: auto;max-height: 58vh;">
  60. <p style="font-weight:bolder;background-color:#d5d5ff;padding:3px;">多媒体信息</p>
  61. <el-tabs style="margin:0px 5px">
  62. <el-tab-pane :label="picturetabName">
  63. <el-row style="text-align:right;">
  64. <el-button
  65. :v-if="!addPicPanel?addPicPanel:addPicPanel"
  66. size="mini"
  67. type="text"
  68. :icon="!addPicPanel?'el-icon-circle-plus-outline':'el-icon-circle-close-outline'"
  69. @click="addPic"
  70. >{{!addPicPanel?"添加":"取消"}}</el-button>
  71. </el-row>
  72. <!-- 该上传组件之前用v-if="addPicPanel 控制显示隐藏,发现在点击编辑问题时,如果不上传图片,之间点击确认时会报错 add by lch -->
  73. <el-row v-show="addPicPanel"> <!-- v-if="addPicPanel" -->
  74. <upload
  75. ref="uploadFile"
  76. :url="`/pdcApi/file/insert?bizId=`"
  77. @uploadOver="removeNewSupervision"
  78. ></upload>
  79. </el-row>
  80. <el-row>
  81. <div style="overflow-y:auto;overflow-x:hidden;max-height:30vh;padding:10px;">
  82. <div class="upload-container" id="imgView">
  83. <div
  84. v-for="(item, index) in pictureArray"
  85. :key="index"
  86. class="image-preview image-app-preview"
  87. >
  88. <div class="image-preview-wrapper">
  89. <img :src="`${hostUrl}/${item.filePath}`">
  90. <div class="image-preview-action">
  91. <i @click="removeFile(item.id)" class="el-icon-delete"></i>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. </el-row>
  98. </el-tab-pane>
  99. <el-tab-pane :label="audiotabName">
  100. <el-table border :data="audioArray" style="width: 100%;margin: 0 auto;">
  101. <el-table-column header-align="center" align="center" label="音频">
  102. <template slot-scope="scope">
  103. <elaudio
  104. style="margin-left:15%;width:100px;height:30px;"
  105. :theUrl="`${hostUrl}/${scope.row.filePath}`"
  106. ></elaudio>
  107. </template>
  108. </el-table-column>
  109. <el-table-column header-align="center" align="center" label="操作">
  110. <template slot-scope="scope">
  111. <el-button
  112. size="mini"
  113. @click="removeFile(scope.row.id,scope.$index)"
  114. type="danger"
  115. >删除</el-button>
  116. </template>
  117. </el-table-column>
  118. </el-table>
  119. </el-tab-pane>
  120. <el-tab-pane :label="videotabName">
  121. <el-table border :data="videoArray" style="width: 100%;margin: 0 auto;">
  122. <el-table-column header-align="center" align="center" label="视频">
  123. <template slot-scope="scope">
  124. <video-player
  125. class="vjs-custom-skin"
  126. ref="videoPlayer"
  127. :options="scope.row"
  128. :playsinline="true"
  129. ></video-player>
  130. </template>
  131. </el-table-column>
  132. <el-table-column header-align="center" align="center" label="操作">
  133. <template slot-scope="scope">
  134. <el-button
  135. size="mini"
  136. @click="removeFile(scope.row.id,scope.$index)"
  137. type="danger"
  138. >删除</el-button>
  139. </template>
  140. </el-table-column>
  141. </el-table>
  142. </el-tab-pane>
  143. <el-tab-pane :label="filetabName">
  144. <el-table border :data="fileArray" style="width: 100%;margin: 0 auto;">
  145. <el-table-column header-align="center" align="center" label="文档">
  146. <template slot-scope="scope">
  147. <p>
  148. <a :href="`${hostUrl}/${scope.row.filePath}`" target="_blank" rel="noopener noreferrer">
  149. {{scope.row.fileName}}
  150. </a>
  151. </p>
  152. </template>
  153. </el-table-column>
  154. <el-table-column header-align="center" align="center" label="操作">
  155. <template slot-scope="scope">
  156. <el-button
  157. size="mini"
  158. @click="removeFile(scope.row.id,scope.$index)"
  159. type="danger"
  160. >删除</el-button>
  161. </template>
  162. </el-table-column>
  163. </el-table>
  164. </el-tab-pane>
  165. </el-tabs>
  166. </div>
  167. </div>
  168. <span slot="footer">
  169. <el-button type="primary" @click="changeSupervisionInfo" :loding="changeSupervisionLoading">保存</el-button>
  170. <el-button @click="changeSupervisionVisiblefalse">取消</el-button>
  171. </span>
  172. </el-dialog>
  173. </template>
  174. <script>
  175. import {showDetailsXq,updatelist,deleteFileById} from "@api/duChaAPI.js";
  176. import request from "@util/gw_ajax_request.js";
  177. import {hostUrl} from '@util/global_variable'
  178. import Viewer from 'viewerjs';
  179. import 'viewerjs/dist/viewer.css';
  180. export default {
  181. props: ['editId'],
  182. data(){
  183. return{
  184. changeSupervisionVisible: true,
  185. changeSupervisionLoading: false,
  186. changeSupervision: {},
  187. rules1: {
  188. inspPblmName: [
  189. {
  190. required: true,
  191. message: "请输入问题名称",
  192. trigger: "blur"
  193. },
  194. {
  195. min: 1,
  196. max: 999,
  197. message: "不超过100字符",
  198. trigger: "blur"
  199. }
  200. ],
  201. inspPblmDesc: [
  202. {
  203. required: true,
  204. message: "请输入问题描述",
  205. trigger: "blur"
  206. }
  207. ],
  208. recPers: [
  209. {
  210. required: true,
  211. message: "请输入记录人",
  212. trigger: "blur"
  213. },
  214. {
  215. min: 1,
  216. max: 999,
  217. message: "不超过100字符",
  218. trigger: "blur"
  219. }
  220. ],
  221. objType: [
  222. {
  223. required: true,
  224. message: "请选择督查对象类型",
  225. trigger: "change"
  226. }
  227. ],
  228. objId: [
  229. {
  230. required: true,
  231. message: "请选择督查对象类型",
  232. trigger: "change"
  233. }
  234. ],
  235. inspPblmType: [
  236. {
  237. required: true,
  238. message: "请选择督查问题类型",
  239. trigger: "change"
  240. }
  241. ],
  242. dataStat: [
  243. {
  244. required: true,
  245. message: "请选择数据状态",
  246. trigger: "change"
  247. }
  248. ],
  249. collTime: [
  250. {
  251. required: true,
  252. message: "请选择采集时间",
  253. trigger: "change"
  254. }
  255. ],
  256. ifCasePblm: [
  257. {
  258. required: true,
  259. message: "请选择是否典型",
  260. trigger: "change"
  261. }
  262. ],
  263. pblmStat: [
  264. {
  265. required: true,
  266. message: "请选择问题类型",
  267. trigger: "change"
  268. }
  269. ],
  270. inspPblmCate: [
  271. {
  272. required: true,
  273. message: "请选择问题程度",
  274. trigger: "change"
  275. },
  276. {
  277. trigger: "change"
  278. }
  279. ]
  280. },
  281. supervisionState: [
  282. {
  283. value: "0",
  284. label: "一般"
  285. },
  286. {
  287. value: "1",
  288. label: "较重"
  289. },
  290. {
  291. value: "2",
  292. label: "严重"
  293. },
  294. {
  295. value: "3",
  296. label: "特别严重"
  297. }
  298. ],
  299. supervision: [
  300. {
  301. value: "1",
  302. label: "是"
  303. },
  304. {
  305. value: "0",
  306. label: "否"
  307. }
  308. ],
  309. addPicPanel: false,
  310. gwComFiles: [],
  311. picturetabName: "",
  312. audiotabName: "",
  313. videotabName: "",
  314. filetabName: "",
  315. pictureArray: [],
  316. audioArray: [],
  317. videoArray: [],
  318. fileArray:[],
  319. updateIdXiuGai: "",
  320. pblmId: "",
  321. t1: {},
  322. t2: {},
  323. t3: {},
  324. problemList: [],
  325. currentCheckPointList: [],
  326. currentProblemDescList: [],
  327. xiangqingmiaoshu: '',
  328. wenTiLeiBie:"",
  329. jianChaXiangMu:"",
  330. }
  331. },
  332. components:{
  333. upload: resolve => {
  334. require(["@widget/uploadFile.vue"], resolve);
  335. },
  336. },
  337. computed:{
  338. hostUrl(){
  339. return hostUrl
  340. },
  341. persId() {
  342. return localStorage.getItem("userid") ? localStorage.getItem("userid") : "1098101939614724096";
  343. }
  344. },
  345. mounted(){
  346. this.getproblemSmallType();
  347. },
  348. methods:{
  349. // 修改弹窗显示
  350. changeSup(id) {
  351. this.pictureArray = [];
  352. this.audioArray = [];
  353. this.videoArray = [];
  354. this.fileArray = [];
  355. this.updateIdXiuGai = id;
  356. let _this = this
  357. showDetailsXq(this.updateIdXiuGai).then(res => {
  358. // if(this.usersId==)
  359. this.changeSupervision = res.data;
  360. this.t1['inspPblmsName'] = this.changeSupervision.inspPblmsName
  361. this.problemList.forEach(ele=>{
  362. if(ele.inspPblmsName == _this.t1.inspPblmsName){
  363. _this.problemListChange(ele)
  364. }
  365. })
  366. this.t2['checkPointName'] = this.changeSupervision.checkPoint
  367. this.currentCheckPointList.forEach(ele=>{
  368. if(ele.checkPointName == _this.t2.checkPointName){
  369. _this.currentCheckPointListChange(ele)
  370. }
  371. })
  372. this.t3['pblmDesc'] = this.changeSupervision.pblmDesc
  373. res.data.gwComFiles.forEach(item => {
  374. if (
  375. item.fileExt == "mp3" ||
  376. item.fileExt == "MP3" ||
  377. item.fileExt == "m4a"
  378. ) {
  379. this.audioArray.push(item);
  380. } else if (
  381. item.fileExt == "jpg" ||
  382. item.fileExt == "JPG" ||
  383. item.fileExt == "png" ||
  384. item.fileExt == "PNG" ||
  385. item.fileExt == "JPEG" ||
  386. item.fileExt == "jpeg"
  387. ) {
  388. this.pictureArray.push(item);
  389. } else if (item.fileExt == "mp4" || item.fileExt == "MP4") {
  390. this.videoArray.push({
  391. id: item.id,
  392. bizId: item.bizId,
  393. width: "130",
  394. height: "130",
  395. autoplay: false,
  396. muted: true,
  397. language: "en",
  398. playbackRates: [0.7, 1.0, 1.5, 2.0],
  399. sources: [
  400. {
  401. type: "video/mp4",
  402. src: this.hostUrl + item.filePath
  403. }
  404. ]
  405. });
  406. }else{
  407. this.fileArray.push(item);
  408. }
  409. });
  410. _this.$nextTick(function(){
  411. var ViewerDom = document.getElementById('imgView');
  412. var viewer = new Viewer(ViewerDom, {})
  413. });
  414. this.picturetabName = "图片资料(" + this.pictureArray.length + ")";
  415. this.audiotabName = "音频资料(" + this.audioArray.length + ")";
  416. this.videotabName = "视频资料(" + this.videoArray.length + ")";
  417. this.filetabName = "其它资料(" + this.fileArray.length + ")";
  418. });
  419. },
  420. // 提交修改信息
  421. changeSupervisionInfo() {
  422. console.log(this)
  423. var _self = this;
  424. this.$refs.changeSupFrom.validate(valid => {
  425. if (valid) {
  426. this.$nextTick(()=>{
  427. // setTimeout(()=>{
  428. _self.changeSupervisionLoading = true;
  429. _self.changeSupervision.inspPblmsName = _self.xiangqingmiaoshu
  430. _self.changeSupervision.checkPoint = _self.jianChaXiangMu
  431. _self.changeSupervision.inspPblmName = _self.wenTiLeiBie
  432. _self.changeSupervision.inspPlbmType = _self.t2.sort2;
  433. _self.changeSupervision.inspPblmCode = _self.t3.sn;
  434. _self.changeSupervision.pblmsTypeId = _self.t3.guid;
  435. let data = _self.changeSupervision;
  436. updatelist(data).then(res => {
  437. _self.pblmId = res.data.pblmId;
  438. _self.gwComFiles = res.data.gwComFiles;
  439. if (res.success) {
  440. _self.changeSupervisionLoading = false;
  441. _self.successInfo();
  442. _self.addPicPanel = false;
  443. } else {
  444. _self.failInfo();
  445. _self.$emit('closeEditDialog')
  446. }
  447. });
  448. // },500)
  449. if (_self.$refs.uploadFile.submitUpload(_self.changeSupervision.pblmId)) {
  450. _self.removeNewSupervision();
  451. }
  452. })
  453. }
  454. });
  455. },
  456. removeNewSupervision(arg) {
  457. if (arg) {
  458. var args = this.gwComFiles.concat(arg);
  459. }
  460. this.changeSup(this.editId)
  461. this.gwComFiles = [];
  462. this.$emit('closeEditDialog','success')
  463. },
  464. changeSupervisionVisiblefalse() {
  465. this.$emit('closeEditDialog')
  466. this.$refs.uploadFile.init();
  467. this.addPicPanel = false;
  468. },
  469. addPic() {
  470. this.addPicPanel = !this.addPicPanel;
  471. },
  472. // 删除图片文件
  473. removeFile(id, index) {
  474. // this.updateIdXiuGai = this.updateIdXiuGai;
  475. var _self = this;
  476. this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
  477. confirmButtonText: "确定",
  478. cancelButtonText: "返回",
  479. type: "warning"
  480. }).then(
  481. res => {
  482. if (res === "confirm") {
  483. deleteFileById(id, this.persId).then(res => {
  484. if (res.success) {
  485. this.changeSupervision.gwComFiles.forEach(item => {
  486. if (
  487. item.fileExt == "mp3" ||
  488. item.fileExt == "MP3" ||
  489. item.fileExt == "m4a"
  490. ) {
  491. this.audiotabName.splice(index, 1);
  492. } else if (
  493. item.fileExt == "jpg" ||
  494. item.fileExt == "JPG" ||
  495. item.fileExt == "png" ||
  496. item.fileExt == "PNG" ||
  497. item.fileExt == "JPEG" ||
  498. item.fileExt == "jpeg"
  499. ) {
  500. this.pictureArray.splice(index, 1);
  501. } else if (item.fileExt == "mp4" || item.fileExt == "MP4") {
  502. this.videoArray.splice(index, 1);
  503. }
  504. });
  505. _self.changeSup(this.updateIdXiuGai);
  506. } else {
  507. this.failInfo();
  508. }
  509. });
  510. }
  511. },
  512. res => {
  513. console.log("返回");
  514. }
  515. )
  516. },
  517. // 操作成功反馈
  518. successInfo() {
  519. this.$message({
  520. type: "success",
  521. message: "操作成功!"
  522. });
  523. this.$emit('closeEditDialog')
  524. },
  525. // 操作失败反馈
  526. failInfo(val) {
  527. this.$message.error(val);
  528. },
  529. // 文件上传
  530. submitUpload() {
  531. this.$refs.upload.submit();
  532. },
  533. closeModal(){
  534. this.$emit('closeEditDialog')
  535. },
  536. getproblemSmallType() {
  537. let result = [];
  538. request.get('/dc/insp/pblms/getPblmType', {
  539. params: {
  540. type: 71,
  541. pguid: `00000000000000000000000000000000`
  542. }
  543. }).then(res => {
  544. if (res.success) {
  545. res.data.forEach((ele) => {
  546. let haveinspPblmsName = false;
  547. result.forEach((inspPblm) => {
  548. if (inspPblm['inspPblmsName'] == ele.inspPblmsName) {
  549. //
  550. let havechekPoint = false;
  551. inspPblm['checkPoints'].forEach((chekPoint) => {
  552. if (chekPoint['checkPointName'] == ele.checkPoint) {
  553. //
  554. chekPoint['pblmDescs'].push({
  555. pblmDesc: ele.pblmDesc,
  556. sn: ele.sn,
  557. guid: ele.guid,
  558. });
  559. havechekPoint = true;
  560. }
  561. });
  562. if (!havechekPoint) {
  563. let newCheckPoint = {};
  564. newCheckPoint['checkPointName'] = ele.checkPoint;
  565. newCheckPoint['sort2'] = ele.sort2;
  566. newCheckPoint['pblmDescs'] = [{
  567. pblmDesc: ele.pblmDesc,
  568. sn: ele.sn,
  569. guid: ele.guid,
  570. }]
  571. inspPblm['checkPoints'].push(newCheckPoint);
  572. }
  573. haveinspPblmsName = true;
  574. }
  575. });
  576. if (!haveinspPblmsName) {
  577. let haveinspPblmsObj = {};
  578. haveinspPblmsObj['inspPblmsName'] = ele.inspPblmsName;
  579. haveinspPblmsObj['sort1'] = ele.sort1;
  580. haveinspPblmsObj['checkPoints'] = [{
  581. checkPointName: ele.checkPoint,
  582. sort2: ele.sort2,
  583. pblmDescs: [{
  584. pblmDesc: ele.pblmDesc,
  585. sn: ele.sn,
  586. guid: ele.guid,
  587. }]
  588. }];
  589. result.push(haveinspPblmsObj);
  590. }
  591. })
  592. this.problemList = result;
  593. this.changeSup(this.editId)
  594. }
  595. })
  596. },
  597. problemListChange: function (item) {
  598. this.t1 = item
  599. this.wenTiLeiBie = item.inspPblmsName;
  600. this.currentCheckPointList = item.checkPoints;
  601. },
  602. currentCheckPointListChange: function (item) {
  603. this.jianChaXiangMu = item.checkPointName;
  604. this.currentProblemDescList = item.pblmDescs;
  605. },
  606. currentProblemDescListChange: function (item) {
  607. this.xiangqingmiaoshu = item.pblmDesc;
  608. console.log(item);
  609. },
  610. },
  611. watch:{
  612. editId(val){
  613. this.changeSup(val)
  614. },
  615. 't3': {
  616. handler: function (val, oldVal) {
  617. },
  618. deep: true
  619. },
  620. }
  621. }
  622. </script>
  623. <style scoped lang="scss">
  624. .scroll_wrapper{
  625. overflow: hidden;
  626. }
  627. .scroll_wrapper .el-form{
  628. padding-top: 5px;
  629. padding-right: 5px;
  630. }
  631. .upload-container {
  632. width: 100%;
  633. position: relative;
  634. .image-uploader {
  635. width: 35%;
  636. float: left;
  637. }
  638. .image-preview {
  639. width: 200px;
  640. height: 200px;
  641. position: relative;
  642. border: 1px dashed #d9d9d9;
  643. float: left;
  644. // margin-left: 50px;
  645. .image-preview-wrapper {
  646. position: relative;
  647. width: 100%;
  648. height: 100%;
  649. img {
  650. width: 100%;
  651. height: 100%;
  652. }
  653. }
  654. .image-preview-action {
  655. position: absolute;
  656. width: 100%;
  657. height: 30px;
  658. left: 0;
  659. bottom: 0;
  660. color: #fff;
  661. opacity: 0;
  662. font-size: 20px;
  663. background-color: rgba(0, 0, 0, 0.5);
  664. transition: opacity 0.3s;
  665. cursor: pointer;
  666. text-align: center;
  667. line-height: 30px;
  668. .el-icon-delete {
  669. font-size: 25px;
  670. }
  671. }
  672. &:hover {
  673. .image-preview-action {
  674. opacity: 1;
  675. }
  676. }
  677. }
  678. .image-app-preview {
  679. margin-bottom: 10px;
  680. width: 40vh;
  681. height: 180px;
  682. position: relative;
  683. border: 1px dashed #d9d9d9;
  684. float: left;
  685. // margin-left: 50px;
  686. .app-fake-conver {
  687. height: 44px;
  688. position: absolute;
  689. width: 100%; // background: rgba(0, 0, 0, .1);
  690. text-align: center;
  691. line-height: 64px;
  692. color: #fff;
  693. }
  694. }
  695. }
  696. </style>