25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

170 satır
3.3 KiB

  1. <template>
  2. <view v-if="ready" class="box" style="padding-top: 0; ">
  3. <view class="succeedcontent">
  4. <view class="succeedtopic">
  5. <view class="succeedscore">
  6. </view>
  7. </view>
  8. <p class="texts">提交成功</p>
  9. <p class="backList" @click="action('backList')" >返回列表</p>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. /*
  15. * 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架(http://www.learun.cn)
  16. * Copyright (c) 2013-2020 上海力软信息技术有限公司
  17. * 创建人:超级管理员
  18. * 日 期:2020-10-20 09:37
  19. * 描 述:班级工作记事
  20. */
  21. /**
  22. * 本段代码由移动端代码生成器输出,移动端须 2.2.0 版本及以上可以使用
  23. * 请在移动端 /pages.json 中的 pages 字段中添加一条记录:
  24. * { "path": "pages/partyevaluatzp/single", "style": { "navigationBarTitleText": "表单详情页" } }
  25. *
  26. * (navigationBarTitleText 字段为本页面的标题文本,可以修改)
  27. * (必须自行操作该步骤,力软代码生成器不会自动帮您修改 /pages.json 文件)
  28. */
  29. import get from 'lodash/get'
  30. import set from 'lodash/set'
  31. import moment from 'moment'
  32. import customPageMixins from '@/common/custompage.js'
  33. export default {
  34. mixins: [customPageMixins],
  35. data() {
  36. return {
  37. // 页面相关参数
  38. ready: false,
  39. }
  40. },
  41. async onLoad() {
  42. await this.init()
  43. },
  44. methods: {
  45. // 页面初始化
  46. async init() {
  47. this.ready = true
  48. },
  49. // 点击 「返回列表」、 按钮
  50. async action(type) {
  51. switch (type) {
  52. case 'backList':
  53. this.EMIT('partyevaluatzp-list-change')
  54. this.NAV_BACK(4)
  55. break
  56. default: break
  57. }
  58. },
  59. }
  60. }
  61. </script>
  62. <style lang="less">
  63. uni-page-body{
  64. height: 100%;
  65. }
  66. .box {
  67. height: 100%;
  68. width: 100%;
  69. background: url(../../common/images/content.png);
  70. background-repeat: no-repeat;
  71. background-size: 100% 100%;
  72. /* position: relative; */
  73. }
  74. .succeedcontent {
  75. position: relative;
  76. background-color: #FFFFFF;
  77. height: 70%;
  78. top: 20%;
  79. width: 93%;
  80. margin: 0 auto;
  81. border-radius: 20rpx;
  82. }
  83. .succeedtopic {
  84. height: 500rpx;
  85. }
  86. .succeedscore {
  87. width: 350rpx;
  88. height: 350rpx;
  89. background: url(../../common/images/succeed.png);
  90. background-repeat: no-repeat;
  91. background-size: 100% 100%;
  92. position: relative;
  93. top: 58%;
  94. left: 50%;
  95. transform: translate(-50%, -50%);
  96. }
  97. .texts {
  98. height: 60rpx;
  99. /* background-color: red; */
  100. text-align: center;
  101. }
  102. .succeedlookButton {
  103. width: 80%;
  104. float: none;
  105. position: absolute;
  106. bottom: 0%;
  107. left: 50%;
  108. transform: translate(-50%, -50%);
  109. }
  110. .succeedlookButton p {
  111. background-color: #e1bb53;
  112. margin: 0 auto;
  113. color: #FFFFFF;
  114. border-radius: 50rpx;
  115. font-size: 36rpx;
  116. color: #FFFFFF;
  117. width: 80%;
  118. height: 72rpx;
  119. text-align: center;
  120. line-height: 72rpx;
  121. margin-bottom: 20rpx;
  122. }
  123. .backList{
  124. width: 80%;
  125. float: none;
  126. position: absolute;
  127. bottom: 15%;
  128. left: 50%;
  129. transform: translate(-50%,-50%);
  130. background-color: #e1bb53;
  131. margin: 0 auto;
  132. color: #FFFFFF;
  133. border-radius: 50rpx;
  134. font-size: 36rpx;
  135. color: #FFFFFF;
  136. width: 80%;
  137. height: 72rpx;
  138. text-align: center;
  139. line-height: 72rpx;
  140. margin-bottom: 20rpx;
  141. }
  142. </style>