manager.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <view class="share-result-container">
  3. <view class="studentWrapper" @click="toManageOrder" >
  4. <view class="studentList" >
  5. <view class="studentLeft">
  6. <text>退款中的订单</text>
  7. </view>
  8. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  9. </view>
  10. </view>
  11. <view class="studentWrapper" @click="toNotStartComplaintList">
  12. <view class="studentList" >
  13. <view class="studentLeft">
  14. <text>未处理的投诉</text>
  15. </view>
  16. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  17. </view>
  18. </view>
  19. <view class="studentWrapper" @click="toNotEndComplaintList">
  20. <view class="studentList" >
  21. <view class="studentLeft">
  22. <text>处理中的投诉</text>
  23. </view>
  24. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  25. </view>
  26. </view>
  27. <view class="studentWrapper" @click="toNotStartSuggestList">
  28. <view class="studentList" >
  29. <view class="studentLeft">
  30. <text>未处理的建议</text>
  31. </view>
  32. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  33. </view>
  34. </view>
  35. <view class="studentWrapper" @click="toNotEndSuggestList">
  36. <view class="studentList" >
  37. <view class="studentLeft">
  38. <text>处理中的建议</text>
  39. </view>
  40. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  41. </view>
  42. </view>
  43. <view class="studentWrapper" @click="toCheckQualification">
  44. <view class="studentList" >
  45. <view class="studentLeft">
  46. <text >认证审核</text>
  47. </view>
  48. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  49. </view>
  50. </view>
  51. <view class="studentWrapper" @click="toCheckCourse">
  52. <view class="studentList" >
  53. <view class="studentLeft">
  54. <text >课程审核</text>
  55. </view>
  56. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  57. </view>
  58. </view>
  59. <view class="studentWrapper" @click="toCheckNeed">
  60. <view class="studentList" >
  61. <view class="studentLeft">
  62. <text >需求审核</text>
  63. </view>
  64. <uni-icons type="right" size="15" color="#fff" ></uni-icons>
  65. </view>
  66. </view>
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. data() {
  72. return {
  73. };
  74. },
  75. methods: {
  76. toManageOrder() {
  77. uni.navigateTo({
  78. url: '/subpkg/manager/order/order_detail'
  79. })
  80. },
  81. toCheckNeed() {
  82. uni.navigateTo({
  83. url: '/subpkg/manager/checkneed/need_detail'
  84. })
  85. },
  86. toCheckCourse() {
  87. uni.navigateTo({
  88. url: '/subpkg/manager/checkcourse/course_detail'
  89. })
  90. },
  91. toCheckQualification() {
  92. uni.navigateTo({
  93. url: '/subpkg/manager/checkqualification/qualification_detail'
  94. })
  95. },
  96. toHandleComplaint() {
  97. uni.navigateTo({
  98. url: '/subpkg/manager/complaint/manager_complaint'
  99. })
  100. },
  101. toNotStartSuggestList() {
  102. uni.navigateTo({
  103. url: '/subpkg/manager/suggestion/suggestion_not_start'
  104. })
  105. },
  106. toNotEndSuggestList() {
  107. uni.navigateTo({
  108. url: '/subpkg/manager/suggestion/suggestion_not_end'
  109. })
  110. },
  111. toNotStartComplaintList() {
  112. uni.navigateTo({
  113. url: '/subpkg/manager/complaint/complaint_not_start'
  114. })
  115. },
  116. toNotEndComplaintList() {
  117. uni.navigateTo({
  118. url: '/subpkg/manager/complaint/complaint_not_end'
  119. })
  120. },
  121. }
  122. }
  123. </script>
  124. <!-- 设置页面背景 -->
  125. <style lang="scss">
  126. page{
  127. height: 100%;
  128. // background-color: #FFF;
  129. }
  130. </style>
  131. <style lang="scss" scoped>
  132. // page{
  133. // height: 100%;
  134. // background-color: #E2F0D9;
  135. // padding: 20rpx;
  136. // }
  137. .share-result-container{
  138. //height: 100%;
  139. //background-color: #FFF2CC;
  140. margin-top: 20rpx;
  141. }
  142. .studentWrapper{
  143. //height: 100%;
  144. //background-color: #E2F0D9;
  145. padding-left: 40rpx;
  146. padding-right: 40rpx;
  147. }
  148. .studentList{
  149. display: flex;
  150. align-items: center;
  151. justify-content: space-between;
  152. padding: 25rpx;
  153. border-radius: 50rpx;
  154. margin-bottom: 20rpx;
  155. background-color: #35b882;
  156. color: white;
  157. }
  158. /* 左侧部分 */
  159. .studentLeft{
  160. //margin-left: 100rpx;
  161. // font-weight: bold;
  162. font-size: 35rpx;
  163. }
  164. </style>