historyDetailsInfrastructure.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. <template>
  2. <view>
  3. <view class="uni-media-list">
  4. <view class="uni-media-list-body">
  5. <view v-for="(value, key) in dataJson.zEngineeringNodeBo.zEngineeringInfoBoList" :key="key"
  6. v-if="isEdit(value)">
  7. <view class="uni-media-list-text-top">
  8. <view class="tit-text">施工时间:</view>{{value.updateTime}}
  9. </view>
  10. <span
  11. style="color: blue;font-size: 14px; display: flex;justify-content:flex-end;margin: 30rpx 10px;"
  12. @click="change(key)">切换</span>
  13. <view class="uni-media-list-text-top" style="border-bottom: 1px solid #f8f8f8;">
  14. <view class="tit-text">
  15. 材 质
  16. </view>
  17. <block v-if="value.zEngineeringMaterialBo[0].isNew==false">
  18. <view class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('cz',key)">
  19. <span
  20. style="color: black;">{{value.zEngineeringMaterialBo[0].materialQuality==''?'请选择材质':value.zEngineeringMaterialBo[0].materialQualityName}}</span>
  21. </view>
  22. </block>
  23. <view v-else>
  24. <input class="uni-input" type="text" maxlength="50"
  25. @change="setInfoBo(key,$event.target.value,'cz')"
  26. v-model="value.zEngineeringMaterialBo[0].materialQualityName" placeholder="请输入材质"
  27. style="margin-left: 10px;text-align: right;border: 1px solid #00aaff; border-radius: 20rpx; padding-right: 15rpx;"></input>
  28. </view>
  29. </view>
  30. <view class="uni-media-list-text-top" style="border-bottom: 1px solid #f8f8f8;">
  31. <view class="tit-text">
  32. 规 格
  33. </view>
  34. <block v-if="value.zEngineeringMaterialBo[0].isNew==false">
  35. <view class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('gg',key)">
  36. <span
  37. style="color: black;">{{value.zEngineeringMaterialBo[0].specifications==''?'请选择规格':value.zEngineeringMaterialBo[0].specificationsName}}</span>
  38. </view>
  39. </block>
  40. <view v-else>
  41. <input class="uni-input" type="text" maxlength="50"
  42. @change="setInfoBo(key,$event.target.value,'gg')"
  43. v-model="value.zEngineeringMaterialBo[0].specificationsName" placeholder="请输入规格"
  44. style="margin-left: 10px;text-align: right;border: 1px solid #00aaff; border-radius: 20rpx;padding-right: 15rpx;"></input>
  45. </view>
  46. </view>
  47. <view class="uni-media-list-text-top" style="border-bottom: 1px solid #f8f8f8;">
  48. <text class="tit-text">米 数</text>
  49. <view style="display: flex; justify-content: right; width: 70%;">
  50. <input class="uni-input" type="number"
  51. :value="getIntegerPart(value.zEngineeringMaterialBo[0].number,0)"
  52. @change="setInfoBoNumber(key,$event.target.value,0)" maxlength="6"
  53. style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  54. <text style="font-weight:bold;margin-left: 10px;margin-right: 10px;">.</text>
  55. <input class="uni-input" type="number"
  56. :value="getIntegerPart(value.zEngineeringMaterialBo[0].number,1)"
  57. @change="setInfoBoNumber(key,$event.target.value,1)" maxlength="1"
  58. style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  59. </view>
  60. </view>
  61. <view class="" style="display: flex; flex-wrap: wrap;margin-top: 10px; margin-left: 10px;">
  62. <image :src="loadImgSrc('updateimg.png')" mode=""
  63. style="width: 200rpx; height: 150rpx; margin: 0 12rpx;; " @click="choose(key)">
  64. </image>
  65. <view v-for="(item,index) in value.zEngiineeringPhotoBoList" :key="index"
  66. style="position: relative;">
  67. <view
  68. v-if="item.substring(item.length - 3) == 'png' || item.substring(item.length - 3) == 'jpg'||item.substring(item.length-4)=='jpeg' ">
  69. <image :src="item" mode="" style="width: 100rpx; height: 100rpx; margin: 0 12rpx;"
  70. @click="showPhoto(index,value.zEngiineeringPhotoBoList)">
  71. </image>
  72. </view>
  73. <view v-else>
  74. <video :src="item" style="width: 100rpx; height: 100rpx; margin: 0 12rpx;"></video>
  75. </view>
  76. <view @click="remove(index,key)"
  77. style="position: absolute; top: 0; right: 14rpx; border-radius: 50%;">
  78. <image :src="loadImgSrc('icon_close.png')" style=" width: 15px; height: 15px;">
  79. </image>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. <SelectPicker :list="selectList" @change="changeSelect" v-if="open" @close="close" titleKey="name"
  87. subtitleKey="id">
  88. </SelectPicker>
  89. <SelectPicker :list="dictOptions" @change="changeSelectDict" v-if="openDict" @close="closeDict"
  90. titleKey="dictLabel" subtitleKey="dictValue" v-model="name"></SelectPicker>
  91. <view class="action-btn" v-if="hideButton==false">
  92. <button @click="submit" class="btn cu-btn block bg-blue lg round">确认</button>
  93. </view>
  94. </view>
  95. </template>
  96. <script>
  97. import SelectPicker from '../../components/selectPicker/select_picker.vue'
  98. import {
  99. getDicts
  100. } from "@/api/system/dict/data";
  101. import {
  102. getToken
  103. } from '../../utils/auth';
  104. import user from '@/store/modules/user'
  105. import {
  106. getHistoryInfrastructureDetails,
  107. getEnginMaterialQualityList,
  108. PutInfrastructure,
  109. getEnginSpecificationsList,
  110. } from '@/api/common'
  111. export default {
  112. components: {
  113. SelectPicker,
  114. },
  115. data() {
  116. return {
  117. selectZbfList: [],
  118. dictOptions: [],
  119. openDict: false,
  120. dataIndex: 0, //数据用第几条
  121. imageIndex: 0,
  122. headers: {
  123. Authorization: "Bearer " + getToken()
  124. },
  125. nodeId: '',
  126. type: '',
  127. title: '',
  128. dataJson: '',
  129. enginClassification: '',
  130. enginType: '',
  131. enginClassValue: '',
  132. selectList: [],
  133. open: false,
  134. chooseType: '',
  135. hideButton: false,
  136. roomId: '',
  137. newPhone: [],
  138. isNew: false, //是否新增
  139. specificationNewValue: '', //规格新增内容
  140. materialNewValue: '', //材质新增内容
  141. }
  142. },
  143. onLoad(options) {
  144. if ('params' in options) {
  145. this.getFSDJLevel();
  146. let e = JSON.parse(decodeURIComponent(options.params));
  147. this.nodeId = e.id;
  148. this.type = e.type;
  149. getHistoryInfrastructureDetails(this.nodeId, this.type).then(response => {
  150. if (response.data.zEngineeringNodeBo != null) {
  151. this.hideButton = false;
  152. this.dataJson = response.data;
  153. this.title = response.data.zEngineeringNodeBo.type;
  154. this.enginType = response.data.enginType;
  155. this.enginClassification = response.data.enginClassification;
  156. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList.forEach((val, index) => {
  157. if (val.createBy == this.$user.state.name) {
  158. this.selectList.forEach((item, index2) => {
  159. if (val.zEngineeringMaterialBo[0].materialQuality == item.id) {
  160. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[
  161. index]
  162. .zEngineeringMaterialBo[0].isNew = false
  163. } else {
  164. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[
  165. index]
  166. .zEngineeringMaterialBo[0].isNew = true
  167. }
  168. })
  169. }
  170. })
  171. } else {
  172. this.hideButton = true;
  173. this.$modal.msg("暂无历史信息")
  174. }
  175. });
  176. }
  177. },
  178. methods: {
  179. //关闭弹窗
  180. closeDict(e) {
  181. this.openDict = false
  182. },
  183. remove(index, key) {
  184. uni.showModal({
  185. title: '提示',
  186. content: '是否删除该图片或视频?',
  187. success: (res) => {
  188. if (res.confirm) {
  189. this.dataJson.zEngineeringNodeBo
  190. .zEngineeringInfoBoList[key]
  191. .zEngiineeringPhotoBoList.splice(index, 1)
  192. }
  193. }
  194. })
  195. },
  196. choose(index1, index) {
  197. this.dataIndex = index1;
  198. let _this = this;
  199. uni.showActionSheet({
  200. title: '上传',
  201. itemList: ['图片', '视频'],
  202. success: (res) => {
  203. if (res.tapIndex == 0) {
  204. this.chooseimage()
  205. } else {
  206. this.choosevideo()
  207. }
  208. }
  209. })
  210. },
  211. chooseimage() {
  212. let _this = this;
  213. uni.chooseImage({
  214. sizeType: ['album', 'camera'],
  215. success(resp) {
  216. resp.tempFiles.forEach((item, index) => {
  217. const task = uni.uploadFile({
  218. url: _this.$HTTP + `/obs`,
  219. filePath: item.path,
  220. name: 'file',
  221. formData: {},
  222. header: _this.headers,
  223. success: res => {
  224. let data = JSON.parse(res.data);
  225. if (![200].includes(data.code)) {
  226. _this.$modal.msg(data.msg)
  227. } else {
  228. if (_this.progress === 100) {
  229. _this.dataJson.zEngineeringNodeBo
  230. .zEngineeringInfoBoList[_this.dataIndex]
  231. .zEngiineeringPhotoBoList.push(data.data.url);
  232. _this.$modal.msg('上传成功!')
  233. _this.photo = false;
  234. }
  235. }
  236. },
  237. fail: e => {
  238. _this.$modal.msg('上传失败!')
  239. },
  240. complete: res => {
  241. uni.hideLoading();
  242. _this.uploading = false;
  243. }
  244. });
  245. task.onProgressUpdate(res => {
  246. _this.progress = res.progress;
  247. uni.showLoading({
  248. title: '上传中'
  249. })
  250. if (_this.progress != 100) {
  251. _this.loading = false
  252. } else {
  253. _this.loading = true
  254. }
  255. });
  256. })
  257. },
  258. })
  259. },
  260. bindTextAreaBlur(e, index) {
  261. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[index].remark = e;
  262. },
  263. choosevideo() {
  264. let _this = this;
  265. uni.chooseVideo({
  266. sourceType: ['album', 'camera'],
  267. maxDuration: 30,
  268. success(resp) {
  269. const task = uni.uploadFile({
  270. url: _this.$HTTP + `/obs`,
  271. filePath: resp.tempFilePath,
  272. name: 'file',
  273. formData: {},
  274. header: _this.headers,
  275. success: res => {
  276. let data = JSON.parse(res.data);
  277. if (![200].includes(res.statusCode)) {
  278. this.uploadError(index, data);
  279. } else {
  280. //上传成功
  281. if (_this.progress === 100) {
  282. _this.dataJson.zEngineeringNodeBo
  283. .zEngineeringInfoBoList[_this.dataIndex]
  284. .zEngiineeringPhotoBoList.push(data.data.url);
  285. _this.$modal.msg('上传成功!')
  286. _this.photo = false;
  287. }
  288. }
  289. },
  290. fail: e => {
  291. _this.$modal.msg('上传失败!')
  292. this.uploadError(index, e);
  293. },
  294. complete: res => {
  295. uni.hideLoading();
  296. _this.uploading = false;
  297. }
  298. });
  299. task.onProgressUpdate(res => {
  300. _this.progress = res.progress;
  301. uni.showLoading({
  302. title: '上传中'
  303. })
  304. if (_this.progress != 100) {
  305. _this.loading = false
  306. } else {
  307. _this.loading = true
  308. }
  309. });
  310. },
  311. })
  312. },
  313. showPhoto(index, arr) {
  314. let newArr = [];
  315. arr.forEach((item, index) => {
  316. if (item.substring(item.length - 3) == 'png' || item.substring(item.length - 3) == 'jpg' ||
  317. item.substring(item.length - 4) == 'jpeg') {
  318. newArr.push(item)
  319. }
  320. });
  321. uni.previewImage({
  322. current: index,
  323. urls: newArr,
  324. })
  325. },
  326. //关闭弹窗
  327. close(e) {
  328. this.open = false
  329. },
  330. // 截取小数点前的字符串
  331. getIntegerPart(numStr, i) {
  332. return numStr.toString().split('.')[i] == undefined ? '0' : numStr.toString().split('.')[i];
  333. },
  334. setInfoBo(key, str, type) {
  335. if (type == 'cz') {
  336. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0].materialQuality = str;
  337. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0].materialQualityName = str;
  338. }else{
  339. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0].specifications = str;
  340. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0].specificationsName = str;
  341. }
  342. },
  343. setInfoBoNumber(key, number, i) {
  344. let Ynumber = this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0]
  345. .number;
  346. let resAry = Ynumber.toString().split('.');
  347. resAry[i] = number
  348. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0].number = resAry
  349. .join('.');
  350. },
  351. changeSelectDict(item, index) {
  352. this.openDict = false;
  353. if (this.chooseType == 'door') {
  354. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex].zEngineeringMaterialBo[0]
  355. .visitType = item.dictValue;
  356. }
  357. },
  358. pickerShow(e, index) {
  359. this.dataIndex = index;
  360. this.chooseType = e;
  361. if (e == 'cz') {
  362. this.open = true;
  363. // if (this.type == '阀管') {
  364. // getEnginMaterialQualityList("民用工程", this.enginType, this.enginClassification, this.title, "灶具管厂家")
  365. // .then(response => {
  366. // this.selectList = response.data;
  367. // });
  368. // } else {
  369. this.getFSDJLevel();
  370. // }
  371. }
  372. if (e == 'gg') {
  373. this.open = true;
  374. //根据材质ID 获取规格数据
  375. getEnginSpecificationsList(this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex]
  376. .zEngineeringMaterialBo[0]
  377. .materialQuality).then(res => {
  378. this.selectList = res.data
  379. })
  380. }
  381. },
  382. isEmpty(str) {
  383. return (!str || 0 === str.length);
  384. },
  385. changeSelect(item, index) {
  386. this.open = false;
  387. if (this.chooseType == 'cz') {
  388. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex].zEngineeringMaterialBo[0]
  389. .materialQuality = item.id;
  390. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex].zEngineeringMaterialBo[0]
  391. .materialQualityName = item.name;
  392. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex].zEngineeringMaterialBo[0]
  393. .specifications = '';
  394. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex].zEngineeringMaterialBo[0]
  395. .specificationsName = '';
  396. } else if (this.chooseType == 'gg') {
  397. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex].zEngineeringMaterialBo[0]
  398. .specifications = item.id;
  399. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[this.dataIndex].zEngineeringMaterialBo[0]
  400. .specificationsName = item.name;
  401. }
  402. },
  403. getFSDJLevel() {
  404. getEnginMaterialQualityList("基建工程").then(
  405. response => {
  406. this.selectList = response.data;
  407. this.$forceUpdate();
  408. });
  409. },
  410. isEdit(item) {
  411. var isShow = item.createBy == this.$user.state.name;
  412. return isShow;
  413. },
  414. change(index) {
  415. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[index].zEngineeringMaterialBo[0].materialQuality =
  416. '';
  417. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[index].zEngineeringMaterialBo[0]
  418. .materialQualityName = '';
  419. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[index].zEngineeringMaterialBo[0].specifications =
  420. '';
  421. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[index].zEngineeringMaterialBo[0]
  422. .specificationsName = '';
  423. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[index].zEngineeringMaterialBo[0].isNew = !this
  424. .dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[index].zEngineeringMaterialBo[0].isNew;
  425. this.$forceUpdate();
  426. },
  427. submit() {
  428. let isSubmit = true;
  429. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList.forEach((res) => {
  430. if (res.createBy == this.$user.state.name) {
  431. if (res.zEngineeringMaterialBo[0].materialQuality == '') {
  432. this.$modal.msg("请选择材质或输入材质");
  433. isSubmit = false;
  434. }
  435. if (res.zEngineeringMaterialBo[0].specifications == '') {
  436. this.$modal.msg("请选择规格或输入规格");
  437. isSubmit = false;
  438. }
  439. if (res.zEngineeringMaterialBo[0].number == '') {
  440. this.$modal.msg("请输入米数");
  441. isSubmit = false;
  442. }
  443. if (this.getIntegerPart(res.zEngineeringMaterialBo[0].number, 0) == '') {
  444. this.$modal.msg("请输入米数");
  445. isSubmit = false;
  446. }
  447. }
  448. if (res.zEngiineeringPhotoBoList.length == 0) {
  449. this.$modal.msg("请上传照片");
  450. isSubmit = false;
  451. }
  452. })
  453. if (!isSubmit) {
  454. return
  455. }
  456. PutInfrastructure(this.dataJson).then(
  457. response => {
  458. if (response.code == '200') {
  459. uni.hideLoading()
  460. uni.showToast({
  461. title: response.msg,
  462. icon: 'none',
  463. duration: 2000
  464. });
  465. setTimeout(function() {
  466. uni.navigateBack();
  467. }, 1000)
  468. }
  469. });
  470. }
  471. }
  472. }
  473. </script>
  474. <style lang="scss">
  475. .uni-media-list-body {
  476. background: #fff;
  477. border: 1px solid #eee;
  478. border-radius: 40rpx;
  479. margin: 20rpx;
  480. padding: 10rpx 0 40rpx;
  481. box-shadow: 0 0 5px #eee;
  482. }
  483. .uni-media-list-text-top {
  484. display: flex;
  485. align-items: center;
  486. justify-content: space-between;
  487. padding: 10px;
  488. position: relative;
  489. }
  490. .to-right-icon {
  491. width: 15px;
  492. height: 15px;
  493. position: absolute;
  494. top: 50%;
  495. transform: translateY(-50%);
  496. }
  497. .share {
  498. width: 100%;
  499. height: 100%;
  500. }
  501. .tit-text {
  502. color: #4f535a;
  503. margin-right: 20rpx;
  504. }
  505. .normal-text {}
  506. .cz-style {
  507. background: #e8f4f9;
  508. margin: 20rpx;
  509. padding: 10rpx;
  510. border-radius: 20rpx;
  511. border: 1px solid #d4e3f0;
  512. }
  513. .uni-media-list-text-top {
  514. font-size: 14px;
  515. color: #696969;
  516. padding: 20rpx 20rpx;
  517. border-bottom: 1px solid #eee;
  518. display: flex;
  519. align-items: center;
  520. }
  521. .share-box {
  522. width: 100%;
  523. height: 100%;
  524. position: fixed;
  525. top: 0rpx;
  526. left: 0rpx;
  527. bottom: 0rpx;
  528. right: 0rpx;
  529. background-color: rgba(0, 0, 0, 0.4);
  530. transition: .3s;
  531. z-index: 999;
  532. }
  533. // 进入分享动画
  534. .share-show {
  535. transition: all 0.3s ease;
  536. transform: translateY(0%) !important;
  537. border-radius: 20px 20px 0px 0px;
  538. }
  539. .scroll-Y {
  540. height: 58vh;
  541. }
  542. // 离开分享动画
  543. .share-item {
  544. position: fixed;
  545. left: 0;
  546. bottom: 0;
  547. width: 100%;
  548. height: 70%;
  549. background-color: #FFFFFF;
  550. transition: all 0.3s ease;
  551. transform: translateY(100%);
  552. z-index: 1999;
  553. .share-to {
  554. // width: 100%;
  555. height: 30px;
  556. display: flex;
  557. justify-content: center;
  558. margin: 30rpx 0 !important;
  559. align-items: center;
  560. }
  561. .content {
  562. width: 100%;
  563. height: auto;
  564. display: flex;
  565. flex-wrap: wrap;
  566. .block {
  567. width: 100%;
  568. display: flex;
  569. flex-direction: column;
  570. justify-content: center;
  571. align-items: left;
  572. height: auto;
  573. image {
  574. width: 80rpx;
  575. height: 80rpx;
  576. }
  577. text {
  578. margin-top: 16rpx;
  579. font-size: 28rpx;
  580. color: #606266;
  581. }
  582. }
  583. }
  584. .cancel {
  585. width: 100%;
  586. height: 3rem;
  587. display: flex;
  588. justify-content: center;
  589. align-items: center;
  590. border-top: 1rpx solid #E4E7ED;
  591. }
  592. }
  593. .uni-media-list-text-top {
  594. display: flex;
  595. align-items: center;
  596. justify-content: space-between;
  597. padding: 10px;
  598. position: relative;
  599. }
  600. .uni-list {
  601. border: 1xp solid #eee;
  602. }
  603. .to-right-icon {
  604. width: 15px;
  605. height: 15px;
  606. position: absolute;
  607. top: 50%;
  608. transform: translateY(-50%);
  609. }
  610. .text {
  611. font-size: 16px;
  612. color: #333;
  613. }
  614. </style>