|
|
|
|
@ -47,7 +47,7 @@
|
|
|
|
|
<u-button type="primary" @click="submit" >提交</u-button>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<u-calendar v-model="showCalendar" :mode="'date'" @change="changeDate"></u-calendar>
|
|
|
|
|
<u-calendar v-model="showCalendar" :mode="'date'" @change="changeDate" :max-date="maxDate"></u-calendar>
|
|
|
|
|
|
|
|
|
|
<u-popup id="popup" v-model="showList" mode="center" width="90%" height="60%">
|
|
|
|
|
<scroll-view id="list" scroll-y="true" :style="{ height: listHeight + 'px' }" :lower-threshold="50">
|
|
|
|
|
@ -159,6 +159,7 @@ import {BasePage} from "@/components/base/page";
|
|
|
|
|
import {Component} from "vue-property-decorator";
|
|
|
|
|
import {removeLeadingZeros} from "@/utils/tool";
|
|
|
|
|
import {session} from "@/store/modules/session";
|
|
|
|
|
import { date } from '@/utils/filter';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
methods: { removeLeadingZeros },
|
|
|
|
|
@ -171,6 +172,7 @@ import {session} from "@/store/modules/session";
|
|
|
|
|
|
|
|
|
|
export default class checkBp extends BasePage {
|
|
|
|
|
userinfo: any = uni.getStorageSync('userinfo');
|
|
|
|
|
maxDate = new Date().getFullYear()+1 + "-" +(new Date().getMonth()+1) + "-" + new Date().getDate()
|
|
|
|
|
|
|
|
|
|
form = {
|
|
|
|
|
checkDate:undefined,
|
|
|
|
|
|