createList.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. <template>
  2. <view class="qbox adffc">
  3. <view class="list" v-if="list.length">
  4. <up-list @scrolltolower="scrolltolower" style="height: 100%">
  5. <up-list-item class="list-item" v-for="(item, index) in list" :key="index">
  6. <view @click.prevent="showDialog(item)">
  7. <image class="expand" :src="imgBase + 'questionnaire_icon_down.png'"></image>
  8. <view class="title">{{ item.title || '' }}</view>
  9. <view class="name">团队名称:{{ item.teamName || '' }}</view>
  10. <view class="progress adfacjb">
  11. <view class="progress-left adfac">
  12. <view class="progress-left-text">作答进度:</view>
  13. <view class="progress-left-box">
  14. <view class="progress-left-box-current" :style="{ width: (item.finishNum / item.userNum) * 100 + '%' }"></view>
  15. </view>
  16. </view>
  17. <view class="progress-right">
  18. <span>{{ item.finishNum }}/</span>
  19. {{ item.userNum }}
  20. </view>
  21. </view>
  22. <view class="bottom adfacjb">
  23. <view class="bottom-left">截止时间:{{ item.endTime }}</view>
  24. <view class="bottom-right" v-if="item.status === 0 && item.type == 1" @click.stop="handleAnswer(item)">立即作答</view>
  25. <view class="bottom-right" v-else-if="item.status === 1 && !item.fileUrl" @click.stop="createReport(item)">生成报告</view>
  26. </view>
  27. </view>
  28. </up-list-item>
  29. </up-list>
  30. </view>
  31. <view class="empty" v-else>
  32. <page-empty></page-empty>
  33. </view>
  34. <view class="dialog adffc" v-if="show">
  35. <view class="dbox">
  36. <view class="dbox-top adfacjb">
  37. <view class="dbox-top-title">{{ dto.title || '' }}</view>
  38. <image class="dbox-top-expand" :src="imgBase + 'questionnaire_icon_down.png'" @click="show = false"></image>
  39. </view>
  40. <view class="dbox-name">团队名称:{{ dto.teamName || '' }}</view>
  41. <view class="dbox-progress adfacjb">
  42. <view class="dbox-progress-left adfac">
  43. <view class="dbox-progress-left-text">作答进度:</view>
  44. <view class="dbox-progress-left-box">
  45. <view class="dbox-progress-left-box-current" :style="{ width: (dto.finishNum / dto.userNum) * 100 + '%' }"></view>
  46. </view>
  47. </view>
  48. <view class="dbox-progress-right">
  49. <span>{{ dto.finishNum }}/</span>
  50. {{ dto.userNum }}
  51. </view>
  52. </view>
  53. <view class="dbox-menu">
  54. <view class="dbox-menu-pre adffcac" v-for="(item, index) in menuListCopy" :key="index" @click="handleMenuClick(item, index)">
  55. <template v-if="item.text === '分享问卷'">
  56. <button class="share-btn" open-type="share">
  57. <image :src="item.img"></image>
  58. <text>{{ item.text }}</text>
  59. </button>
  60. </template>
  61. <template v-else>
  62. <image :src="item.img"></image>
  63. <text>{{ item.text }}</text>
  64. </template>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. <view class="dialog adffc" v-if="teamInfoShow">
  70. <view class="dialog-box">
  71. <view class="dialog-box-title">团队信息</view>
  72. <image class="dialog-box-close" :src="imgBase + 'remind_close.png'" @click="teamInfoShow = false"></image>
  73. <view class="dialog-box-teaminfo">
  74. <cus-team-info-fill ref="teamRef" confirmText="保存" @handleConfirm="handleConfirm"></cus-team-info-fill>
  75. </view>
  76. </view>
  77. </view>
  78. <div class="alert adffcacjc" v-if="alertShow">
  79. <div class="alert-box">
  80. <div class="alert-box-title">温馨提示</div>
  81. <image :src="imgBase + 'remind_close.png'" class="alert-box-close" @click="alertShow = false"></image>
  82. <div class="alert-box-text">
  83. 该问卷尚未生成报告
  84. <br />
  85. 请确认团队人员是否全部作答
  86. <br />
  87. 完成后点击生成报告
  88. </div>
  89. <div class="zt_btn" @click="alertShow = false">我知道了</div>
  90. </div>
  91. </div>
  92. <cus-team-user
  93. :deluser="true"
  94. :show="teamUserShow"
  95. :list="teamUserList"
  96. @close="teamUserShow = false"
  97. @addUser="addUser"
  98. @handleConfirm="userConfirm"
  99. @deleteUser="deleteUser"
  100. ></cus-team-user>
  101. </view>
  102. </template>
  103. <script>
  104. import PageEmpty from '@/components/pageEmpty/index.vue'
  105. import CusTeamUser from '@/components/CusTeamUser/index.vue'
  106. import CusTeamInfoFill from '@/components/CusTeamInfoFill/index.vue'
  107. export default {
  108. components:{ PageEmpty, CusTeamUser, CusTeamInfoFill },
  109. props:{
  110. list:{
  111. typeof:Array,
  112. default:[]
  113. }
  114. },
  115. data(){
  116. return {
  117. show:false,
  118. teamInfoShow:false,
  119. teamUserShow:false,
  120. alertShow:false,
  121. dto:null,
  122. menuList:[
  123. {
  124. img:this.$imgBase+'questionnaire_edit.png',
  125. text:'编辑问卷'
  126. },
  127. {
  128. img:this.$imgBase+'questionnaire_share.png',
  129. text:'分享问卷'
  130. },
  131. {
  132. img:this.$imgBase+'questionnaire_info.png',
  133. text:'团队信息'
  134. },
  135. {
  136. img:this.$imgBase+'questionnaire_copy.png',
  137. text:'复制链接'
  138. },
  139. {
  140. img:this.$imgBase+'questionnaire_users.png',
  141. text:'团队人员'
  142. },
  143. {
  144. img:this.$imgBase+'questionnaire_report.png',
  145. text:'生成报告'
  146. }
  147. ],
  148. menuListCopy:[],
  149. teamUserList:[],
  150. originTeamUserList:[],
  151. teamScaleData:[],
  152. teamLevelData:[],
  153. categoryData:[],
  154. delMemberIds:[],
  155. }
  156. },
  157. methods:{
  158. scrolltolower(){
  159. this.$emit('scrolltolower')
  160. },
  161. showDialog(item){
  162. this.dto = item;
  163. if(this.dto.type==1) this.menuListCopy = this.menuList.filter((_, index) => index !== 4);
  164. else this.menuListCopy = JSON.parse(JSON.stringify(this.menuList))
  165. this.show = true;
  166. this.$emit('showDialogFn',item);
  167. },
  168. async getTeamScaleData(){
  169. return new Promise((resolve,reject)=>{
  170. this.$api.get('/getListByType/team_scale').then(({data:res})=>{
  171. if(res.code!==0) return this.$showToast(res.msg)
  172. this.teamScaleData = res.data.map(d=>({name:d.dictLabel,id:d.dictValue}))
  173. resolve()
  174. })
  175. })
  176. },
  177. async getTeamHierarchyData(){
  178. return new Promise((resolve,reject)=>{
  179. this.$api.get('/getListByType/team_hierarchy').then(({data:res})=>{
  180. if(res.code!==0) return this.$showToast(res.msg)
  181. this.teamLevelData = res.data.map(d=>({name:d.dictLabel,id:d.dictValue}))
  182. resolve()
  183. })
  184. })
  185. },
  186. async getUserCategoryData(){
  187. return new Promise((resolve,reject)=>{
  188. this.$api.get('/getListByType/UserCategory').then(({data:res})=>{
  189. if(res.code!==0) return this.$showToast(res.msg)
  190. this.categoryData = res.data.map(d=>({name:d.dictLabel,id:d.dictValue}))
  191. resolve()
  192. })
  193. })
  194. },
  195. async handleMenuClick(item){
  196. if(item.text==='编辑问卷'){
  197. uni.navigateTo({
  198. url:`/pagesHome/questionnaireEdit?teamQuestionnaireId=${this.dto.teamQuestionnaireId}&type=${this.dto.type}&questionnaireName=${this.dto.title}&isEdit=true`
  199. })
  200. this.show = false;
  201. }else if(item.text==='分享问卷'){
  202. }else if(item.text==='团队信息'){
  203. this.teamInfoShow = true;
  204. await this.getTeamScaleData()
  205. await this.getTeamHierarchyData()
  206. this.$api.get(`/core/user/team/${this.dto.teamId}`).then(({data:res})=>{
  207. if(res.code!==0) return this.$showToast(res.msg)
  208. this.$refs.teamRef.setTeamInfo(res.data)
  209. this.$refs.teamRef.teamInfo.functionIds = res.data.functions.map(f=>f.id);
  210. this.$refs.teamRef.teamInfo.orgIds = res.data.organizations.map(o=>o.id);
  211. this.$refs.teamRef.areaText = res.data.provinceName+res.data.cityName;
  212. this.$refs.teamRef.industryText = res.data.industryName;
  213. this.$refs.teamRef.functionTypeText = res.data.functions.map(f=>f.functionName).join('、');
  214. this.$refs.teamRef.architectureTypeText = res.data.organizations.map(f=>f.orgName).join('、');
  215. this.$refs.teamRef.teamScaleText = this.teamScaleData.find(d=>d.id==res.data.scale).name;
  216. this.$refs.teamRef.teamLevelText = this.teamLevelData.find(d=>d.id==res.data.hierarchy).name;
  217. })
  218. }
  219. else if(item.text==='复制链接') {
  220. let shareUserId = JSON.parse(uni.getStorageSync('userInfo')).id;
  221. let res = await this.$api.post('/wx/genInviteLink',{
  222. 'path': '',
  223. 'query': `shareTQId=${this.dto.teamQuestionnaireId}&shareUserId=${shareUserId}`,
  224. 'env_version': 'trial'//默认"release",正式版"release",体验版"trial",开发版"develop"
  225. });
  226. if(res.data.code!==0) return this.$showToast(res.data.msg)
  227. uni.setClipboardData({
  228. data:res.data.data.openlink,
  229. success: () => {
  230. this.$showToast('复制成功')
  231. },
  232. fail: () => {
  233. this.$showToast('复制失败')
  234. }
  235. })
  236. }
  237. else if(item.text==='团队人员'){
  238. await this.getUserCategoryData()
  239. this.$api.get(`/core/member/listByQueTeamId/${this.dto.teamQuestionnaireId}`).then(({data:res})=>{
  240. if(res.code!==0) return this.$showToast(res.msg)
  241. this.teamUserList = res.data;
  242. this.originTeamUserList = res.data;
  243. this.teamUserList.forEach(l=>{
  244. l.categoryName = this.categoryData.find(c=>c.id==l.category)?.name;
  245. })
  246. this.teamUserShow = true
  247. })
  248. }
  249. else if(item.text==='生成报告'){
  250. if(this.dto.status==0) return this.$showToast('问卷未完成,全部团队人员作答后才能生成报告')
  251. this.createReportConfirm(this.dto.teamQuestionnaireId)
  252. }
  253. },
  254. handleConfirm(data){
  255. data.coachId = JSON.parse(uni.getStorageSync('userInfo')).id;
  256. this.$api.put('/core/user/team',data).then(({data:res})=>{
  257. if(res.code!==0) return this.$showToast(res.msg)
  258. this.$showToast('保存成功')
  259. this.teamInfoShow = false;
  260. })
  261. },
  262. handleAnswer(item){
  263. uni.navigateTo({
  264. url:'/pagesPublish/questionnaireFill?teamQuestionnaireId='+item.teamQuestionnaireId+'&teamId='+item.teamId+'&type='+item.type
  265. })
  266. },
  267. createReport(item){
  268. this.dto = item;
  269. this.createReportConfirm(item.teamQuestionnaireId)
  270. },
  271. createReportConfirm(teamQuestionnaireId){
  272. this.$api.get(`/core/team/questionnaire/generateReportCheck/${teamQuestionnaireId}`).then(({data:res})=>{
  273. if(res.code===0&&res.data===0){
  274. this.createReportFn(teamQuestionnaireId);
  275. }else if(res.code===0&&res.data>0){
  276. uni.showModal({
  277. title:'生成报告',
  278. content:`该问卷已生成${res.data??0}份报告,是否再次生成新报告?`,
  279. confirmColor:'#199C9C',
  280. success: (res) => {
  281. if(res.confirm){
  282. this.createReportFn(teamQuestionnaireId);
  283. }
  284. }
  285. })
  286. }else if(res.code!==0){
  287. uni.showModal({
  288. title:'生成报告',
  289. content:res.msg,
  290. showCancel:false,
  291. confirmColor:'#199C9C'
  292. })
  293. }
  294. this.show = false;
  295. })
  296. },
  297. createReportFn(teamQuestionnaireId){
  298. this.$api.get(`/core/team/questionnaire/genReport/${teamQuestionnaireId}`).then(({data:res})=>{
  299. this.show = false;
  300. uni.navigateTo({
  301. url:'/pagesHome/reportResult?result='+res.code+'&info='+encodeURIComponent(JSON.stringify(this.dto))
  302. })
  303. })
  304. },
  305. sendReport(item){
  306. },
  307. addUser(){
  308. uni.navigateTo({
  309. url:'/pagesMy/teamUser?type=select',
  310. events:{
  311. selectUserConfirm: data => {
  312. data.forEach((d,i)=>(this.$set(data[i],'status',0)));
  313. let newUser = this.filterUsers(this.teamUserList,data)
  314. this.teamUserList = [...this.teamUserList,...newUser];
  315. }
  316. }
  317. })
  318. },
  319. filterUsers(originArr,selectArr){
  320. const aValuesToExclude = new Set(originArr.map(item => item.id));
  321. return selectArr.filter(item => {
  322. return !aValuesToExclude.has(item.id);
  323. });
  324. },
  325. userConfirm(){
  326. if(this.teamUserList.length===0) return this.$showToast('至少保留一位团队人员');
  327. this.$api.get('/core/team/questionnaire/'+this.dto.teamQuestionnaireId).then(({data:res})=>{
  328. if(res.code!==0) return this.$showToast(res.msg)
  329. let dto = res.data;
  330. dto.coachId = JSON.parse(uni.getStorageSync('userInfo')).id;
  331. dto.delMemberIds = [...new Set(this.delMemberIds)];
  332. dto.memberList = this.teamUserList;
  333. dto.type = 2;
  334. delete dto.memberInfos;
  335. this.$api.put('/core/team/questionnaire/updateMembers',dto).then(({data:resu})=>{
  336. if(resu.code!==0) return this.$showToast(resu.msg)
  337. this.$showToast('操作成功')
  338. this.teamUserShow = false;
  339. // this.show = false;
  340. })
  341. })
  342. },
  343. deleteUser(data){
  344. let u = this.originTeamUserList.find(u=>u.id===data.item.id);
  345. if(u) this.delMemberIds=[...this.delMemberIds,u.id]
  346. this.teamUserList.splice(data.index,1);
  347. }
  348. }
  349. }
  350. </script>
  351. <style scoped lang="scss">
  352. .share-btn {
  353. background-color: transparent;
  354. border: none;
  355. padding: 0;
  356. margin: 0;
  357. line-height: 1;
  358. display: flex;
  359. flex-direction: column;
  360. justify-content: center;
  361. align-items: center;
  362. &::after {
  363. border: none;
  364. }
  365. }
  366. .qbox {
  367. width: 100%;
  368. height: 100%;
  369. flex: 1;
  370. .list {
  371. flex: 1;
  372. margin-top: 20rpx;
  373. overflow: hidden;
  374. &-item {
  375. width: 100%;
  376. background: #ffffff;
  377. border-radius: 24rpx;
  378. margin-top: 20rpx;
  379. padding: 36rpx 24rpx 19rpx;
  380. box-sizing: border-box;
  381. position: relative;
  382. display: block;
  383. .expand {
  384. width: 32rpx;
  385. height: 32rpx;
  386. position: absolute;
  387. top: 36rpx;
  388. right: 32rpx;
  389. }
  390. .title {
  391. width: calc(100% - 128rpx);
  392. font-family: PingFang-SC, PingFang-SC;
  393. font-weight: bold;
  394. font-size: 32rpx;
  395. color: #002846;
  396. line-height: 32rpx;
  397. }
  398. .name {
  399. font-family: PingFangSC, PingFang SC;
  400. font-weight: 400;
  401. font-size: 24rpx;
  402. color: #667e90;
  403. line-height: 24rpx;
  404. margin-top: 35rpx;
  405. }
  406. .progress {
  407. margin-top: 36rpx;
  408. &-left {
  409. width: calc(100% - 95rpx);
  410. &-text {
  411. font-family: PingFangSC, PingFang SC;
  412. font-weight: 400;
  413. font-size: 24rpx;
  414. color: #667e90;
  415. line-height: 24rpx;
  416. }
  417. &-box {
  418. flex: 1;
  419. position: relative;
  420. height: 12rpx;
  421. background: #f0f2f8;
  422. border-radius: 6rpx;
  423. &-current {
  424. height: 12rpx;
  425. background: #7cc5c5;
  426. border-radius: 6rpx;
  427. position: absolute;
  428. top: 0;
  429. left: 0;
  430. }
  431. }
  432. }
  433. &-right {
  434. font-size: 24rpx;
  435. line-height: 24rpx;
  436. color: #95a5b1;
  437. span {
  438. font-size: 24rpx;
  439. line-height: 24rpx;
  440. color: #002846;
  441. }
  442. }
  443. }
  444. .bottom {
  445. margin-top: 30rpx;
  446. border-top: 1rpx solid #efefef;
  447. padding-top: 20rpx;
  448. &-left {
  449. font-family: PingFangSC, PingFang SC;
  450. font-weight: 400;
  451. font-size: 24rpx;
  452. color: #667e90;
  453. line-height: 24rpx;
  454. }
  455. &-right {
  456. border-radius: 32rpx;
  457. background: linear-gradient(90deg, #33a7a7 0%, #4db2b2 100%);
  458. padding: 19rpx 22rpx;
  459. font-family: PingFangSC, PingFang SC;
  460. font-weight: 400;
  461. font-size: 26rpx;
  462. color: #ffffff;
  463. line-height: 26rpx;
  464. letter-spacing: 2rpx;
  465. }
  466. }
  467. }
  468. }
  469. .empty {
  470. flex: 1;
  471. }
  472. .dialog {
  473. position: fixed;
  474. left: 0;
  475. right: 0;
  476. top: 0;
  477. bottom: 0;
  478. background: rgba(0, 0, 0, 0.4);
  479. z-index: 1001;
  480. justify-content: flex-end;
  481. .dbox {
  482. width: 100%;
  483. height: 738rpx;
  484. background: #ffffff;
  485. box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0, 0, 0, 0.07);
  486. border-radius: 24rpx 24rpx 0rpx 0rpx;
  487. padding: 48rpx 30rpx 0;
  488. box-sizing: border-box;
  489. &-top {
  490. &-title {
  491. width: calc(100% - 60rpx);
  492. font-family: PingFang-SC, PingFang-SC;
  493. font-weight: bold;
  494. font-size: 32rpx;
  495. color: #002846;
  496. line-height: 40rpx;
  497. }
  498. &-expand {
  499. width: 32rpx;
  500. height: 32rpx;
  501. transform: rotate(180deg);
  502. }
  503. }
  504. &-name {
  505. font-family: PingFangSC, PingFang SC;
  506. font-weight: 400;
  507. font-size: 24rpx;
  508. color: #667e90;
  509. line-height: 24rpx;
  510. margin-top: 24rpx;
  511. }
  512. &-progress {
  513. margin-top: 36rpx;
  514. &-left {
  515. width: calc(100% - 95rpx);
  516. &-text {
  517. font-family: PingFangSC, PingFang SC;
  518. font-weight: 400;
  519. font-size: 24rpx;
  520. color: #667e90;
  521. line-height: 24rpx;
  522. }
  523. &-box {
  524. flex: 1;
  525. position: relative;
  526. height: 12rpx;
  527. background: #f0f2f8;
  528. border-radius: 6rpx;
  529. &-current {
  530. height: 12rpx;
  531. background: #7cc5c5;
  532. border-radius: 6rpx;
  533. position: absolute;
  534. top: 0;
  535. left: 0;
  536. }
  537. }
  538. }
  539. &-right {
  540. font-size: 24rpx;
  541. line-height: 24rpx;
  542. color: #95a5b1;
  543. span {
  544. font-size: 24rpx;
  545. line-height: 24rpx;
  546. color: #002846;
  547. }
  548. }
  549. }
  550. &-menu {
  551. margin-top: 43rpx;
  552. overflow: hidden;
  553. margin-left: -30rpx;
  554. &-pre {
  555. width: calc(25% - 30rpx);
  556. background: #f7f8fa;
  557. border-radius: 24rpx;
  558. padding: 30rpx 20rpx;
  559. margin-top: 24rpx;
  560. margin-left: 30rpx;
  561. box-sizing: border-box;
  562. float: left;
  563. image {
  564. width: 42rpx;
  565. height: 42rpx;
  566. }
  567. text {
  568. font-family: PingFangSC, PingFang SC;
  569. font-weight: 400;
  570. font-size: 24rpx;
  571. color: #002846;
  572. line-height: 24rpx;
  573. text-align: center;
  574. margin-top: 24rpx;
  575. }
  576. }
  577. }
  578. }
  579. &-box {
  580. width: 100%;
  581. height: 1200rpx;
  582. background: #f7f7f7;
  583. padding-top: 38rpx;
  584. border-radius: 24rpx 24rpx 0rpx 0rpx;
  585. box-sizing: border-box;
  586. position: relative;
  587. overflow-y: auto;
  588. &-title {
  589. font-family: PingFang-SC, PingFang-SC;
  590. font-weight: bold;
  591. font-size: 32rpx;
  592. color: #002846;
  593. line-height: 32rpx;
  594. text-align: center;
  595. }
  596. &-close {
  597. width: 48rpx;
  598. height: 48rpx;
  599. position: absolute;
  600. top: 30rpx;
  601. right: 30rpx;
  602. }
  603. &-teaminfo {
  604. margin-top: 40rpx;
  605. }
  606. }
  607. }
  608. .alert {
  609. position: fixed;
  610. left: 0;
  611. right: 0;
  612. top: 0;
  613. bottom: 0;
  614. z-index: 1002;
  615. background: rgba(0, 0, 0, 0.4);
  616. &-box {
  617. width: calc(100% - 100rpx);
  618. padding: 54rpx 99rpx 48rpx;
  619. box-sizing: border-box;
  620. position: relative;
  621. background: url('https://gitee.com/hw_0302/chuang-heng-wechat-images/raw/master/alert_bg.png') no-repeat;
  622. background-size: 100% 100%;
  623. &-title {
  624. font-family: PingFang-SC, PingFang-SC;
  625. font-weight: bold;
  626. font-size: 36rpx;
  627. color: #002846;
  628. line-height: 56rpx;
  629. text-align: center;
  630. }
  631. &-close {
  632. width: 48rpx;
  633. height: 48rpx;
  634. position: absolute;
  635. top: 40rpx;
  636. right: 30rpx;
  637. }
  638. &-text {
  639. font-family: PingFangSC, PingFang SC;
  640. font-weight: 400;
  641. font-size: 30rpx;
  642. color: #002846;
  643. line-height: 48rpx;
  644. text-align: center;
  645. margin-top: 32rpx;
  646. }
  647. .zt_btn {
  648. margin-top: 66rpx;
  649. }
  650. }
  651. }
  652. }
  653. </style>