status.vue 660 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. <image :src="picUrlss+'promote_sta.png'" class="img"></image>
  4. <view class="sta">审核中</view>
  5. <view class="tip">您的申请信息已提交,预计1-3个工作日内审核完成</view>
  6. <navigator url="/pages/user/user" open-type="switchTab" hover-class="none" class="btn">我知道了</navigator>
  7. </view>
  8. </template>
  9. <script>
  10. // promote/apply/apply.js
  11. // promote/team/team.js
  12. const app = getApp();
  13. const req = require("../../utils/request.js");
  14. export default {
  15. data() {
  16. return {
  17. picUrlss: req.public.picUrls,
  18. };
  19. },
  20. onShow() {
  21. },
  22. methods: {
  23. }
  24. };
  25. </script>
  26. <style>
  27. @import "./status.css";
  28. </style>