123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <template>
- <view class="zxbox">
- <view class="navbox">
- <uni-nav-bar color="#ffffff" leftWidth='300rpx' :background-color="backgroundColor" :border="false" statusBar='true' fixed="true">
- <block slot="left">
- <image :src="titimg" class="topl"></image>
- </block>
- <block slot="right">
- <view class="topr">
- <image :src="noticeimg"></image>
- <view class="cir"></view>
- </view>
- </block>
- </uni-nav-bar>
- </view>
- <image :src="bgimg" class="bgimg"></image>
-
- <footers v-if="isfootflag" :footlist="footlist" :footerindex="footerindex" :color_checked="color_checked" :color_nochecked="color_nochecked" :isHomeIndex="true"></footers>
- </view>
- </template>
- <script>
- import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
- import yList from "@/components/order/list.vue"
- let { calendar } = require("@/components/lunc-calendar/calendar.js");
- import {getReservatcountl,getReservatList,getReservatDel,getReservatSh} from "@/api/mine/order.js"
- import {getDictionaryFn} from "@/api/mine/register.js"
- import footers from '@/components/footer/footer.vue'
- export default {
- components:{yList,footers},
- data(){
- return{
- footlist:[
- {module:'home',title:'潜山政协',icon_checked:require('@/static/images/tabbar/home_.png'),icon_nochecked:require('@/static/images/tabbar/home.png')},
- {module:'report',title:'履职报告',icon_checked:require('@/static/images/tabbar/report_.png'),icon_nochecked:require('@/static/images/tabbar/report.png')},
- {module:'notice',title:'会议通知',icon_checked:require('@/static/images/tabbar/notice_.png'),icon_nochecked:require('@/static/images/tabbar/notice.png')},
- {module:'mine',title:'个人中心',icon_checked:require('@/static/images/tabbar/mine_.png'),icon_nochecked:require('@/static/images/tabbar/mine.png')},
- ],
- color_checked :'222327',
- color_nochecked :'AAAAAA',
- footerindex:'home',
- isfootflag:true,
- backgroundColor:'transparent',
- bgimg:require("@/static/images/navbg.png"),
- titimg:require("@/static/images/home/tit.png"),
- noticeimg:require("@/static/images/home/notice.png"),
-
- list:[],
- pageSize: 10,
- pageNum: 1,
- reachflag: true,
- wtdt:'',
- nvaHeight:44,
-
- }
- },
- onPageScroll(e) {
- var scrollTop = Number(e.scrollTop);
- if (scrollTop <=this.nvaHeight) {
- const opacity = scrollTop / 100 // 计算透明度值
- const color = `rgba(4, 145, 253, ${opacity})`
- this.backgroundColor = color // 更新盒子背景颜色
- } else {
- this.backgroundColor = '#0491fd'
- }
- },
- onLoad: function() {
- // uni.$on('refreshdatalist',(e) => {
- // this.reachflag=false;
- // this.pageNum=1;
- // this.list=[];
- // this.getDataFn();
- // // this.getcount();
- // })
-
- // this.init()
- // // this.getcount()
- // this.getDataFn()
- this.nvaHeight=uni.getSystemInfoSync().statusBarHeight+44;
- },
- onUnload() {
- uni.$off('refreshdatalist')
- },
- onShow() {
- // var that=this;
- // this.time();
- },
- mounted() {
- },
- // 上拉触底加载更多触发事件
- onReachBottom() {
- // if (this.reachflag) {
- // this.pageNum++
- // this.getDataFn()
- // }
- },
- methods:{
- checkPermi, checkRole,
- init(){
- // 记录来源
- getDictionaryFn('jluly').then(res=>{
- if(res.code==200){
- this.adrlist = res.data.map(v => {
- return {
- dictLabel: v.dictLabel,
- dictValue: Number(v.dictValue)
- }
- })
- }
- })
- },
- getMoreFn(){
- this.$tab.navigateTo("/pages/order/list")
- },
- getDelFn(id){
- var that=this;
- getReservatDel(id).then(res=>{
- if(res.code==200){
- that.$toast('删除成功')
- setTimeout(function(){
- that.reachflag=true;
- that.pageNum=1;
- that.list=[];
- that.getDataFn();
- // that.getcount();
- },1500)
-
- }else{
- that.$toast(res.msg)
- }
- })
- },
- gettypeFn(ite){
- var that=this;
- var params={
- reservatId:ite.id,
- visitType:ite.type
- }
- getReservatSh(params).then(res=>{
- if(res.code==200){
- that.$toast('审核成功')
- setTimeout(function(){
- that.reachflag=true;
- that.pageNum=1;
- that.list=[];
- that.getDataFn();
- // that.getcount();
- },1500)
-
- }else{
- that.$toast(res.msg)
- }
- })
- },
- time() {
- var date = new Date();
- var y = date.getFullYear();
- var m = date.getMonth() + 1;
- var d = date.getDate();
- let lunar = calendar.solar2lunar(y, m, d); //农历
- this.lunar=lunar.IMonthCn+lunar.IDayCn;
- this.daytime=m+'月'+d+"日";
- // var h = date.getHours();
- // var min = date.getMinutes();
- // var s = date.getSeconds();
- // var week = date.getDay(); //获取当前星期X(0-6,0代表星期天)
- // var weeks = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"];
- // var yearStr = y + '-' + (m < 10 ? ('0' + m) : m) + '-' + (d < 10 ? ('0' + d) : d)
- // var timeStr = (h < 10 ? ('0' + h) : h) + ':' + (min < 10 ? ('0' + min) : min) + ':' + (s < 10 ? (
- // '0' + s) : s);
- // this.kaTime = yearStr + ' ' + timeStr;
- },
- getcount(){
-
- getReservatcountl().then(res=>{
- if(res.code==200){
- this.conuntinfo=res.data
- }else{
- this.$toast(res.msg)
- }
- })
- },
- getDetail(data){
- this.$tab.navigateTo('/pages/order/staffcode?type=look&id='+data)
- },
- getDataFn(){
- var params={
- pageSize:this.pageSize,
- pageNum: this.pageNum,
- // visitType:3
- }
- getReservatList(params).then(res=>{
- if(res.code==200){
- if (res.rows.length < this.pageSize) {
- this.reachflag = false
- this.wtdt = '到底了~';
- } else {
- var num = parseInt(res.rows.length) + parseInt(this.pageSize) * parseInt(this.pageNum - 1)
- if (num < res.total) {
- this.reachflag = true
- this.wtdt = '上拉加载更多'
- } else {
- this.reachflag = false
- this.wtdt = '到底了~';
- }
- }
- if (this.pageNum == 1) {
- this.list = res.rows;
- } else {
- this.list = this.list.concat(res.rows)
- }
- }else{
- this.$toast(res.msg)
- }
- })
-
- },
- },
-
- }
- </script>
- <style lang="scss" scoped>
- .navbox{position: fixed;left: 0;right: 0;top: 0;z-index: 4;
- .topl{width: 274rpx;height: 50rpx;margin-left: 14rpx;}
- .topr{width: 36rpx;height: 36rpx;position: relative;margin-right: 10rpx;
- image{width: 100%;height: 100%;}
- .cir{width: 14rpx;height: 14rpx;background: #DF0024;border-radius: 50%;position: absolute;right: -7rpx;top: -7rpx;}
- }
- }
- .zxbox{
- .bgimg{width: 100%;height: 420rpx;}
- .zxmain{
-
- }
- }
- </style>
|