wenjuan-list.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view class="wenjian-list">
  3. <image src="../../static/img/bg@2x.png" style="position: fixed;z-index: -1;width: 750rpx;top: 0;left: 0;" mode="widthFix"></image>
  4. <view class="wenjuan-item u-flex-col u-row-center" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  5. <text>{{item.quesName}}</text>
  6. <text>目的和内容:{{item.quesMessage}}</text>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. page: 1,
  15. list: [],
  16. total: 0
  17. }
  18. },
  19. onLoad() {
  20. this.getlist()
  21. },
  22. methods: {
  23. getlist() {
  24. this.$http.quesMessage({
  25. pageNo: this.page,
  26. pageSize: 10
  27. }).then(res => {
  28. this.total = res.data.result.total
  29. this.list = this.list.concat(res.data.result.records)
  30. })
  31. },
  32. toinfo(item) {
  33. uni.navigateTo({
  34. url: "./wenjuan-info?id=" + item.id
  35. })
  36. }
  37. }
  38. }
  39. </script>
  40. <style lang="scss">
  41. .wenjian-list {
  42. .wenjuan-item {
  43. width: 690rpx;
  44. padding: 28rpx 24rpx;
  45. background: rgba(255, 255, 255, 0.6);
  46. border-radius: 20rpx;
  47. border: 2rpx solid #FFFFFF;
  48. backdrop-filter: blur(4px);
  49. margin: 20rpx auto;
  50. text:first-child {
  51. font-size: 34rpx;
  52. font-family: PingFangSC-Regular, PingFang SC;
  53. font-weight: 400;
  54. color: #167FFF;
  55. margin-bottom: 24rpx;
  56. }
  57. text:last-child {
  58. font-size: 20rpx;
  59. font-family: PingFangSC-Regular, PingFang SC;
  60. font-weight: 400;
  61. color: #167FFF;
  62. }
  63. }
  64. }
  65. </style>