123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <template>
- <view class="content">
- <scroll-view scroll-y class="scroll-box" @scrolltolower="handleLoadMore" :refresher-enabled="true"
- :refresher-triggered="triggered" :refresher-threshold="100" refresher-background="white" @refresherrefresh="onRefresh"
- @refresherrestore="onRestore">
- <u-cell-group>
- <u-cell-item :arrow="false" :title-style="{width: '100%'}">
- <view slot="title" style="display: flex;justify-content: center;">
- <u-avatar :src="studentInfo.studentImg" size="140"></u-avatar>
- </view>
- </u-cell-item>
- <u-cell-item title="学生姓名" :value="studentInfo.studentName" :arrow="false"></u-cell-item>
- <u-cell-item title="家长姓名" :value="studentInfo.fatherName" :arrow="false"></u-cell-item>
- <u-cell-item title="学生性别" :value="studentInfo.sex" :arrow="false"></u-cell-item>
- <u-cell-item title="学生年龄" :value="studentInfo.age" :arrow="false"></u-cell-item>
- <u-cell-item title="手机号码" :value="studentInfo.phone" :arrow="false"></u-cell-item>
- <u-cell-item title="沟通记录" :arrow="false" :title-style="{fontSize: '16px',fontWeight: 'bold'}"></u-cell-item>
- <template v-if="tableList.length">
- <u-cell-item :title="item.coachName" :value="item.time" :label="item.content" :arrow="false" v-for="(item, index1) in tableList"
- :key="index1" :title-style="{fontSize: '14px',fontWeight: 'bold'}"></u-cell-item>
- </template>
- </u-cell-group>
- </scroll-view>
- <view class="handle-fix-box">
- <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="goToRecordForm()">填写沟通记录</u-button>
- </view>
- <u-top-tips ref="uTips"></u-top-tips>
- </view>
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex'
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- export default {
- computed: {
- ...mapGetters([
- 'mainColor',
- 'customStyle',
- ])
- },
- data() {
- return {
- id: '',
- studentInfo: {
- studentImg: '',
- studentName: '',
- fatherName: '',
- sex: '',
- age: '',
- phone: '',
- },
- triggered: false,
- isOver: false,
- pageIndex: 1,
- tableList: []
- }
- },
- onLoad(options) {
- this.id = options.id
- this.initialize()
- },
- onShow() {
- this.isOver = false
- this.pageIndex = 1
- this.tableList = []
- this.getTableList()
- },
- methods: {
- initialize() {
- NET.request(API.getStudentInfo, {
- id: this.id
- }, 'POST').then(res => {
- this.studentInfo = res.data
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- // 下拉刷新
- onRefresh() {
- this.triggered = true
- this.isOver = false
- this.pageIndex = 1
- this.tableList = []
- this.getTableList()
- },
- // 重置下拉刷新状态
- onRestore() {
- this.triggered = 'restore'
- this.triggered = false
- },
- // 懒加载
- handleLoadMore() {
- if (!this.isOver) {
- this.pageIndex++
- this.getTableList()
- }
- },
- // 获取列表数据
- getTableList() {
- NET.request(API.findResourceRecordList, {
- id: this.id,
- // page: this.pageIndex,
- // size: 10,
- }, 'POST').then(res => {
- // this.triggered = false
- this.tableList = this.tableList.concat(res.data)
- // this.isOver = res.data.row.length != 10
- }).catch(error => {
- this.triggered = false
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- // 跳转沟通记录
- goToRecordForm() {
- uni.navigateTo({
- url: '/pagesMain/recordForm?id=' + this.id
- });
- }
- },
- }
- </script>
- <style>
- page {
- width: 100%;
- height: 100%;
- position: relative;
- }
- </style>
- <style lang="scss" scoped>
- @import "@/static/css/themes.scss";
- .content {
- width: 100%;
- float: left;
- padding: 0 0 60px 0;
- box-sizing: border-box;
- .scroll-box {
- width: 100%;
- height: calc(100vh - 60px);
- }
- }
- </style>
|