ad4c63c3ac70fa5d1ecc69c9b9a5f0ba801c6cdd.svn-base 27 KB

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