constructionLog.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. <template>
  2. <view style="overflow: hidden;">
  3. <cu-custom bgColor="bg-blue" :isBack="true">
  4. <block slot="backText">施工日志</block>
  5. <block slot="content"></block>
  6. <block slot="right">
  7. <view class=" flex justify-center">
  8. <!-- <button class="margin-top-ssm cu-btn round bg-blue text-blue"><text class="cuIcon-add"></text></button> -->
  9. </view>
  10. </block>
  11. </cu-custom>
  12. <!-- 项目合同信息 -->
  13. <!-- <view style="padding: 22rpx 0;background-color: #F7F7F7;">
  14. <cu-project :projectList="projectList" style="height: 236rpx;background-color: #C6E6FF;"></cu-project>
  15. </view> -->
  16. <view style="padding: 0rpx 0rpx 22rpx;background-color: #F7F7F7;">
  17. <view class="cu-item shadowType" style="height: 100%;background-color: #FFFFFF;border-radius: 0 0 20rpx 20rpx;border-top: 2rpx solid#0A8CD5;" >
  18. <calendar @selected-change="datechange" ref="calendarData" :showBack="true" :dotList="dotList" :dotStyle="dotStyle"></calendar>
  19. </view>
  20. </view>
  21. <!-- 日志 -->
  22. <view class="journal_b">
  23. <view class="journal_1">
  24. <view :class="chooseTime=='' ? 'journal_ts':'journal_time'">
  25. {{chooseTime=='' ? '请选择时间':chooseTime}}
  26. ({{personLength}}人)
  27. </view>
  28. <view>
  29. <button @click="navTo()" v-if="type==0 && chooseTime!=''" class="journal-btn" >立即填报</button>
  30. <button @click="navTo()" v-if="type==1 && chooseTime!=''" class="journal-btn" >编辑</button>
  31. <text v-if="type==2 && chooseTime!=''" class="text-gray">未开始</text>
  32. <text v-if="type==4" class="text-gray"></text><!-- 别人的日志只能看不能操作 -->
  33. </view>
  34. </view>
  35. </view>
  36. <view>
  37. <view style="overflow-x: scroll;width: 100%;margin: 20rpx 0 0 16rpx ;display: flex;">
  38. <view class="name-box" style="flex-shrink: 0;"
  39. :class="index == curPersonIndex ? 'name-sele' : '' "
  40. v-for="(person,index) in personList" :key="index"
  41. @click="selectPerson(index)">{{person.username}}</view>
  42. </view>
  43. </view>
  44. <view v-if="type==0 || type==2 || type ==null || chooseTime==''" class="padding bg-white text-center">
  45. <view class="padding">
  46. <image class="menuImageNoTask" src="../../static/task/noTask.png"></image>
  47. </view>
  48. <view class="padding">暂时没有提交日志~</view>
  49. </view>
  50. <view v-else style="padding: 22rpx 22rpx 80rpx;">
  51. <view class="margin-bottom-sm">
  52. <text class="margin-right-sm">天气:
  53. <text class="margin-right-sm2">{{logData.weather}}</text>
  54. </text>
  55. </view>
  56. <template v-if="isZJ">
  57. <view class="margin-bottom-sm">
  58. <text class="margin-right-sm">最低气温:
  59. <text class="margin-right-sm2">{{logData.minimumTemperature}}</text>
  60. </text>
  61. </view>
  62. <view class="margin-bottom-sm">
  63. <text class="margin-right-sm">最高气温:
  64. <text class="margin-right-sm2">{{logData.highestTemperature}}</text>
  65. </text>
  66. </view>
  67. <view class="margin-bottom-sm">
  68. <text class="margin-right-sm">检测,记录日期:
  69. <text class="margin-right-sm2">{{logData.jzWorkDate}}</text>
  70. </text>
  71. </view>
  72. <view class="margin-bottom-sm">
  73. <text class="margin-right-sm">编号:
  74. <text class="margin-right-sm2">{{logData.jzNumber}}</text>
  75. </text>
  76. </view>
  77. <view class="margin-bottom-sm">
  78. <text class="margin-right-sm">单位工程:
  79. <text class="margin-right-sm2">{{logData.unitProject}}</text>
  80. </text>
  81. </view>
  82. <view class="margin-bottom-sm">
  83. <text class="margin-right-sm">分项工程:
  84. <text class="margin-right-sm2">{{logData.processName}}</text>
  85. </text>
  86. </view>
  87. <view class="margin-bottom-sm">
  88. <text class="margin-right-sm">分部工程:
  89. <text class="margin-right-sm2">{{logData.subproject}}</text>
  90. </text>
  91. </view>
  92. <view class="margin-bottom-sm">
  93. <text class="margin-right-sm">桩号、部位:
  94. <text class="margin-right-sm2">{{logData.buildParts}}</text>
  95. </text>
  96. </view>
  97. <view class="margin-bottom-sm">
  98. <text class="margin-right-sm">关联工序:</text>
  99. <view v-for="item in logData.proList" :key="item.id" class="text-gray" style="margin-bottom: 10rpx;">
  100. {{item.pathName || item.name}}
  101. </view>
  102. </view>
  103. <view class="margin-bottom-sm">
  104. <text class="margin-right-sm">重要记事:
  105. <text class="margin-right-sm2">{{logData.importantEvents}}</text>
  106. </text>
  107. </view>
  108. <view class="margin-bottom-sm">
  109. <text class="margin-right-sm">质量检查:
  110. <text class="margin-right-sm2">{{logData.qualityInspection}}</text>
  111. </text>
  112. </view>
  113. <view class="margin-bottom-sm">
  114. <text class="margin-right-sm">施工技术交底:
  115. <text class="margin-right-sm2">{{logData.zjBuild}}</text>
  116. </text>
  117. </view>
  118. <view class="margin-bottom-sm">
  119. <text class="margin-right-sm">安全技术交底:
  120. <text class="margin-right-sm2">{{logData.security}}</text>
  121. </text>
  122. </view>
  123. </template>
  124. <template v-else-if="isCQ">
  125. <view class="margin-bottom-sm">
  126. <text class="margin-right-sm">平均气温:
  127. <text class="margin-right-sm2">{{logData.averageTemperature}}</text>
  128. </text>
  129. </view>
  130. <view class="margin-bottom-sm">
  131. <text class="margin-right-sm">关联工序:</text>
  132. <view v-for="item in logData.proList" :key="item.id" class="text-gray" style="margin-bottom: 10rpx;">
  133. {{item.pathName || item.name}}
  134. </view>
  135. </view>
  136. <view class="margin-bottom-sm">
  137. <text class="margin-right-sm">编号:
  138. <text class="margin-right-sm2">{{logData.jzNumber}}</text>
  139. </text>
  140. </view>
  141. <view class="margin-bottom-sm">
  142. <text class="margin-right-sm">工程桩号:
  143. <text class="margin-right-sm2">{{logData.buildParts}}</text>
  144. </text>
  145. </view>
  146. <view class="margin-bottom-sm">
  147. <text class="margin-right-sm">工程部位:
  148. <text class="margin-right-sm2">{{logData.unitProject}}</text>
  149. </text>
  150. </view>
  151. <view class="margin-bottom-sm">
  152. <text class="margin-right-sm">
  153. <text class="margin-right-sm2">{{logData.problem}}</text>
  154. </text>
  155. </view>
  156. <view v-for="(people,index) in logData.constructionPeopleList" :key="index">
  157. <view class="margin-bottom-sm">
  158. <text class="margin-right-sm">工种:
  159. <text class="margin-right-sm2">{{people.federationOfTradeUnions}}</text>
  160. </text>
  161. </view>
  162. <view class="margin-bottom-sm">
  163. <text class="margin-right-sm">作业部位:
  164. <text class="margin-right-sm2">{{people.workSite}}</text>
  165. </text>
  166. </view>
  167. <view class="margin-bottom-sm">
  168. <text class="margin-right-sm">数量:
  169. <text class="margin-right-sm2">{{people.number}}</text>
  170. </text>
  171. </view>
  172. <view class="margin-bottom-sm">
  173. <text class="margin-right-sm">作业部位:
  174. <text class="margin-right-sm2">{{people.workSiteTwo}}</text>
  175. </text>
  176. </view>
  177. <view class="margin-bottom-sm">
  178. <text class="margin-right-sm">数量:
  179. <text class="margin-right-sm2">{{people.numberTwo}}</text>
  180. </text>
  181. </view>
  182. <view class="margin-bottom-sm">
  183. <text class="margin-right-sm">总数:
  184. <text class="margin-right-sm2">{{people.sum}}</text>
  185. </text>
  186. </view>
  187. </view>
  188. <view class="margin-bottom-sm">
  189. <text class="margin-right-sm">总计:
  190. <text class="margin-right-sm2">{{logData.total}}</text>
  191. </text>
  192. </view>
  193. <view v-for="(device,index) in logData.constructionEquipmentList" :key="index">
  194. <view class="margin-bottom-sm">
  195. <text class="margin-right-sm">主要设备:
  196. <text class="margin-right-sm2">{{device.primaryDeviceName}}</text>
  197. </text>
  198. </view>
  199. <view class="margin-bottom-sm">
  200. <text class="margin-right-sm">型号:
  201. <text class="margin-right-sm2">{{device.model}}</text>
  202. </text>
  203. </view>
  204. <view class="margin-bottom-sm">
  205. <text class="margin-right-sm">在场数量:
  206. <text class="margin-right-sm2">{{device.numberOfPeoplePresent}}</text>
  207. </text>
  208. </view>
  209. <view class="margin-bottom-sm">
  210. <text class="margin-right-sm">工作数量:
  211. <text class="margin-right-sm2">{{device.numberOfJobs}}</text>
  212. </text>
  213. </view>
  214. <view class="margin-bottom-sm">
  215. <text class="margin-right-sm">停置数量:
  216. <text class="margin-right-sm2">{{device.numberOfStops}}</text>
  217. </text>
  218. </view>
  219. <view class="margin-bottom-sm">
  220. <text class="margin-right-sm">停止原因:
  221. <text class="margin-right-sm2">{{device.stopReason}}</text>
  222. </text>
  223. </view>
  224. <view class="margin-bottom-sm">
  225. <text class="margin-right-sm">备注:
  226. <text class="margin-right-sm2">{{device.remark}}</text>
  227. </text>
  228. </view>
  229. </view>
  230. <view class="margin-bottom-sm">
  231. <text class="margin-right-sm">质量安全:
  232. <text class="margin-right-sm2">{{logData.quality}}</text>
  233. </text>
  234. </view>
  235. <view class="margin-bottom-sm">
  236. <text class="margin-right-sm">材料进场与试验情况:
  237. <text class="margin-right-sm2">{{logData.entrance}}</text>
  238. </text>
  239. </view>
  240. </template>
  241. <template v-else>
  242. <view class="margin-bottom-sm">
  243. <text class="margin-right-sm">平均气温:
  244. <text class="margin-right-sm2">{{logData.averageTemperature}}</text>
  245. </text>
  246. </view>
  247. <view class="margin-bottom-sm">
  248. <text class="margin-right-sm">分项工程:
  249. <text class="margin-right-sm2">{{logData.processName}}</text>
  250. </text>
  251. </view>
  252. <view class="margin-bottom-sm">
  253. <text class="margin-right-sm">施工部位:
  254. <text class="margin-right-sm2">{{logData.buildParts}}</text>
  255. </text>
  256. </view>
  257. <view class="margin-bottom-sm">
  258. <text class="margin-right-sm">关联工序:</text>
  259. <view v-for="item in logData.proList" :key="item.id" class="text-gray" style="margin-bottom: 10rpx;">
  260. {{item.pathName || item.name}}
  261. </view>
  262. </view>
  263. <view class="margin-bottom-sm">
  264. <text class="margin-right-sm">施工内容:
  265. <text class="margin-right-sm2">{{logData.buildContent}}</text>
  266. </text>
  267. </view>
  268. <view class="margin-bottom-sm">
  269. <text class="margin-right-sm">人员设备情况/劳务工种及人数:
  270. <text class="margin-right-sm2">{{logData.peopleAndFacility}}</text>
  271. </text>
  272. </view>
  273. <view class="margin-bottom-sm">
  274. <text class="margin-right-sm">工班长:
  275. <text class="margin-right-sm2">{{logData.monitor}}</text>
  276. </text>
  277. </view>
  278. <view class="margin-bottom-sm">
  279. <text class="margin-right-sm">设计施工图内容:
  280. <text class="margin-right-sm2">{{logData.designContent}}</text>
  281. </text>
  282. </view>
  283. <view class="margin-bottom-sm">
  284. <text class="margin-right-sm">技术及安全交底:
  285. <text class="margin-right-sm2">{{logData.technologySecurity}}</text>
  286. </text>
  287. </view>
  288. <view class="margin-bottom-sm">
  289. <text class="margin-right-sm">测量及试验情况:
  290. <text class="margin-right-sm2">{{logData.measurement}}</text>
  291. </text>
  292. </view>
  293. <view class="margin-bottom-sm">
  294. <text class="margin-right-sm">检查及验收情况:
  295. <text class="margin-right-sm2">{{logData.acceptance}}</text>
  296. </text>
  297. </view>
  298. <view class="margin-bottom-sm">
  299. <text class="margin-right-sm">质量及安全施工情况:
  300. <text class="margin-right-sm2">{{logData.quality}}</text>
  301. </text>
  302. </view>
  303. <view class="margin-bottom-sm">
  304. <text class="margin-right-sm">材料构件设备进场情况:
  305. <text class="margin-right-sm2">{{logData.entrance}}</text>
  306. </text>
  307. </view>
  308. <view class="margin-bottom-sm">
  309. <text class="margin-right-sm">存在问题及其他:
  310. <text class="margin-right-sm2">{{logData.problem}}</text>
  311. </text>
  312. </view>
  313. </template>
  314. </view>
  315. </view>
  316. </template>
  317. <script>
  318. export default {
  319. data() {
  320. return {
  321. userInfo:"",
  322. projectList:'',
  323. index:0,
  324. content:"",
  325. dotList:[],
  326. dotStyle:{color: 'black'},
  327. type:null,
  328. chooseTime:"",
  329. logData:"",
  330. chooseData:"",
  331. personList:[],
  332. curPersonIndex:0,
  333. isZJ:0,
  334. isCQ:false,
  335. }
  336. },
  337. computed:{
  338. personLength: function () {
  339. var num = 0;
  340. for (let i = 0; i < this.personList.length; i++) {
  341. if(this.personList[i].id){
  342. num ++;
  343. }
  344. }
  345. return num;
  346. }
  347. },
  348. onShow() {
  349. var that = this;
  350. that.onLoadData();
  351. that.chooseTime='';
  352. /* 监听今天 */
  353. uni.$on("clickToday", res => {
  354. that.findDiaryByToday();
  355. });
  356. },
  357. methods: {
  358. datechange(e){
  359. var nowDate =new Date().toISOString().slice(0, 10);
  360. this.chooseTime = e.fullDate;
  361. if(nowDate<e.fullDate || !e.info){//超出今天或者在项目开始前都算 未开始
  362. this.type=2;
  363. this.personList = [];
  364. return;
  365. }
  366. //未填写过不查询
  367. if(!(e.info && e.info.id)){
  368. this.type = 0;
  369. this.personList = [];
  370. return;
  371. }
  372. ///working/getDataByDate
  373. this.curPersonIndex = [0];
  374. this.http.request('/app/working/getDataByDate', { recorderId:'',contractId:this.projectList.contractId,date:e.fullDate}).then((res)=>{
  375. //如果没人填写过
  376. if(!res.datas || res.datas.length < 1){
  377. this.type = 0;
  378. this.personList = [];
  379. return;
  380. }
  381. //console.log(res)
  382. //根据数据获取当前是否 已经填写了
  383. let myIndex = -1;
  384. res.datas.forEach((item,index)=>{
  385. if(item.recorderId == this.userInfo.id){
  386. myIndex = index;
  387. return;
  388. }
  389. })
  390. if(myIndex > -1){
  391. this.type = 1;
  392. //把自己放到第一位
  393. let myData = res.datas.splice(myIndex,1);
  394. res.datas.unshift(myData[0]);
  395. }else{
  396. this.type = 0;
  397. res.datas.unshift({
  398. username:this.userInfo.userName,
  399. recorderId:this.userInfo.id,
  400. id:''
  401. });
  402. }
  403. this.personList = res.datas;
  404. this.chooseData = res.datas[0];
  405. this.logData = res.datas[0];
  406. })
  407. },
  408. // datechange(e) {
  409. // console.log(e);
  410. // //debugger
  411. // if(e.isToday){//判断是否为今天
  412. // if(e.info){
  413. // if(e.info.id){//判断是否有施工日志
  414. // this.type=1;
  415. // this.logData=e.info;
  416. // }else{
  417. // this.type=0
  418. // }
  419. // }else{
  420. // this.type=2
  421. // }
  422. // }else{
  423. // var nowDate =new Date().toISOString().slice(0, 10);
  424. // if(nowDate<e.fullDate){//判断是否为超前时间
  425. // this.type=2
  426. // }else{
  427. // if(e.info){//判断是否在合同段的计划时间内
  428. // if(e.info.id){//判断是否有施工日志
  429. // this.type=1;
  430. // this.logData=e.info;
  431. // }else{
  432. // this.type=0
  433. // }
  434. // }else{
  435. // this.type=2
  436. // }
  437. // }
  438. // }
  439. // this.chooseTime =e.fullDate;
  440. // this.chooseData =e.info;
  441. // },
  442. navTo(){
  443. uni.navigateTo({
  444. url:"update/update?time="+this.chooseTime+"&type="+this.type+"&id="+this.chooseData.id
  445. })
  446. },
  447. /* 刷新方法 */
  448. onLoadData(){
  449. var userInfo = uni.getStorageSync("userInfo")
  450. if(userInfo){
  451. this.userInfo = userInfo;
  452. }
  453. var project = uni.getStorageSync("porject"+"_"+uni.getStorageSync("userInfo").id);
  454. if(project){
  455. this.projectList =project;//获取选中的当前项目
  456. }else{
  457. this.findProject();
  458. }
  459. this.findDiaryDate();
  460. this.getIsZJ();
  461. if(project.id == 'fa7d50a0c01a4a568f123bff0d91' || project.id == 'a140fd60f08941e8851d90e86960'){
  462. this.isCQ = true;
  463. }
  464. },
  465. /* 查询项目 */
  466. findProject(){
  467. var that =this;
  468. that.http.request('/app/login', { userId:this.userInfo.id }).then((result)=>{
  469. if(result.datas.length!=0){
  470. that.projectList=result.datas[0];
  471. //默认选中第一条
  472. uni.setStorageSync("porject"+"_"+uni.getStorageSync("userInfo").id,that.projectList);
  473. }
  474. })
  475. },
  476. /* 获取施工日志*/
  477. findDiaryDate(){
  478. var that =this;
  479. that.http.request('/app/working/list', { recorderId:that.userInfo.id,contractId:that.projectList.contractId }).then((result)=>{
  480. that.dotList = result;
  481. if(!that.$refs.calendarData || !that.$refs.calendarData.selectedItem){
  482. //如果当前没有选择的日期获取今天的
  483. let today =that.intervalTime.getTime();
  484. this.chooseTime = today
  485. //如果不在日期范围内不请求
  486. let dateListSort = JSON.parse(JSON.stringify(result));
  487. dateListSort.sort(function(a, b) {
  488. return b.date < a.date ? -1 : 1
  489. })
  490. //console.log(dateListSort)
  491. if(today>dateListSort[0].date || today<dateListSort[dateListSort.length-1].date){
  492. return
  493. }
  494. that.findDiaryByToday();
  495. }
  496. if(that.$refs.calendarData && that.$refs.calendarData.selectedItem){
  497. //如果有获取当前的
  498. var selectedItem = that.$refs.calendarData.selectedItem
  499. var time = selectedItem.fullDate;
  500. //console.log(that.dotList)
  501. that.dotList.forEach(item=>{
  502. if(item.date == time){
  503. that.datechange(Object.assign(selectedItem,{'info':item}));
  504. return;
  505. }
  506. })
  507. }
  508. })
  509. },
  510. /* 根据当前时间获取施工日志数据*/
  511. findDiaryByToday(){
  512. var that =this;
  513. var time =that.intervalTime.getTime();
  514. //console.log(time)
  515. this.http.request('/app/working/getDataByDate', { recorderId:'',contractId:this.projectList.contractId,date:time}).then((res)=>{
  516. //如果没人填写过
  517. if(!res.datas || res.datas.length < 1){
  518. this.chooseTime = time;
  519. this.type = 0;
  520. this.personList = [];
  521. return;
  522. }
  523. //console.log(res)
  524. this.chooseTime = time;
  525. //根据数据获取当前是否 已经填写了
  526. let myIndex = -1;
  527. res.datas.forEach((item,index)=>{
  528. if(item.recorderId == this.userInfo.id){
  529. myIndex = index;
  530. return;
  531. }
  532. })
  533. if(myIndex > -1){
  534. this.type = 1;
  535. //把自己放到第一位
  536. let myData = res.datas.splice(myIndex,1);
  537. res.datas.unshift(myData[0]);
  538. }else{
  539. this.type = 0;
  540. res.datas.unshift({
  541. username:this.userInfo.userName,
  542. recorderId:this.userInfo.id,
  543. id:''
  544. });
  545. }
  546. this.personList = res.datas;
  547. this.chooseData = res.datas[0];
  548. this.logData = res.datas[0];
  549. })
  550. },
  551. selectPerson(index){
  552. this.curPersonIndex = index;
  553. //是否有填写日志
  554. if(this.personList[index].id){
  555. //只能看别人
  556. if(this.personList[index].recorderId == this.userInfo.id){
  557. this.type = 1;
  558. }else{
  559. this.type = 4;
  560. }
  561. this.chooseData = this.personList[index];
  562. this.logData = this.personList[index];
  563. }else{
  564. this.type = 0;
  565. }
  566. },
  567. getIsZJ(){
  568. this.http.request('/app/working/checkProjectIsZj', {
  569. projectId:this.projectList.id
  570. }).then((result)=>{
  571. if(result.result == '1'){
  572. this.isZJ = 1;
  573. }else{
  574. this.isZJ = 0;
  575. }
  576. })
  577. }
  578. }
  579. }
  580. </script>
  581. <style>
  582. page{background-color: #fff;}
  583. .solid-bottom-type{
  584. border-bottom: 0.5px solid #eee;
  585. }
  586. .solid-top-type{
  587. border-top: 2px solid #0A8CD5;
  588. }
  589. .shadowType {
  590. -moz-box-shadow: 0px 1px 4px #D0D0D0;
  591. -webkit-box-shadow: 0px 1px 4px #D0D0D0;
  592. box-shadow: 0px 1px 4px #D0D0D0;
  593. }
  594. .journal_b{background-color: #F7F7F7;}
  595. .journal_1{background-color: #FFFFFF;border-bottom: 1rpx solid #E3E1E1;border-radius: 20rpx 20rpx 0 0;height: 100rpx;display: flex;align-items: center;justify-content: space-between;padding: 0 22rpx;box-shadow: 1px -1px 2px #D0D0D0}
  596. .journal_ts{font-size: 30rpx;}
  597. .journal_time{font-size: 30rpx;color: #101010;font-weight: bold;}
  598. .journal-btn{width: 100%;height: 60rpx;line-height: 60rpx;font-size: 26rpx;color: #0A8CD5;border-radius: 100rpx;border: 2rpx solid #0A8CD5;background-color: #fff;}
  599. .journal-btn::after{
  600. border: none;
  601. }
  602. .margin-bottom-sm{margin-bottom: 22rpx;}
  603. .margin-right-sm{margin-right: 16rpx;font-size: 30rpx;color: #101010;}
  604. .margin-right-sm2{font-size: 30rpx;color: #8a8a8a;}
  605. .name-box{
  606. /* width: 140rpx;
  607. height: 50rpx;
  608. border-radius: 50rpx;
  609. line-height: 50rpx;
  610. text-align: center; */
  611. background-color: #F7F7F7;
  612. margin-right: 20rpx;
  613. padding: 10rpx 26rpx;
  614. border-radius: 50rpx;
  615. }
  616. .name-sele{
  617. background-color: #E2F3FD;
  618. }
  619. </style>