123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <view class="planList-page">
- <scroll-view class="list-box" scroll-y="true" :style="{'height':listHeight+'rpx'}">
- <view class="item-box" v-for="(item,index) in planList" @click="gotoCheckList">
- <view class="row1">
- <text class="title">{{item.name}}</text>
- <view class="compeleted-box" v-if="item.isCompeleted">
- <text class="compeleted-text" >已完成</text>
- </view>
- <view class="continued-box" v-if="item.isContinued">
- <text class="continued-text" >进行中</text>
- </view>
- </view>
- <view class="row2">
- <text class="TobeDistributed">剩余1个单位待分配</text>
- <text class="startEndTime">起止时间:2020-12-26 ~ 2020-12-18</text>
- </view>
- </view>
- </scroll-view>
- <view class="btn-distribution" @click="gotoCheckList" v-if="isShowDistribution">
- <text class="btn-text">批量分配</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- situationID:'',//情境id
- planList:[],//计划列表
- firstFlag:1,//是否为第一次分配的标志,为1时表示是第一次,弹框提示
- isShowDistribution:true,//是否显示批量分配按钮
- listHeight:1125,//列表高度
- }
- },
- onLoad({ situationId }){ // situationId:情景id
- this.situationID=situationId;
- },
- created: function() {
- this.$store.dispatch({
- type: 'planList/commActions',
- payload: {
- key: 'planList',
- data:{
- situationId:this.situationID
- }
- }
- }).then((data) => {
- if (data) {
- this.planList=data.map((item,index)=>{
- if(item.empList.length!=item.toDistribute){
- this.firstFlag=0;
- }
- if(!this.compareTime(item.startDate)){
- this.isShowDistribution=false;
- this.listHeight=1200;
- }
- return {
- id:item.id,
- name:item.name,
- startDate:item.startDate,
- endDate:item.endDate,
- status:item.status,
- isCompeleted:item.status==3?true:false,
- isContinued:item.status==2?true:false,
- toDistribute:item.toDistribute,
- }
- });
- if(this.firstFlag==1){
- uni.showModal({
- title:'提示',
- content:'您的分配工作量较大,建议使用批量分配功能',
- showCancel:false
- })
- }
- }
- });
- },
- methods: {
- compareTime(time){
- let myDate=new Date();
- let startDate=time.replace(/-/g,"/");
- startDate=Date.parse(startDate);
- if(myDate>startDate){
- return false;
- }else{
- return true;
- }
- },
- gotoCheckList(){
- //跳转到查核列表
- uni.navigateTo({
- url: `/pages/creatingSituations/creatingSituations?situationId=${this.situationID}`
- });
- }
- }
- }
- </script>
- <style lang="less">
- .planList-page{
- height: 100%;
- .list-box{
- // height: 1125rpx;
- .item-box{
- width: 100%;
- height: 125rpx;
- background: #FFFFFF;
- border: 0.62rpx solid #DADEE6;
- .row1{
- margin-top: 30rpx;
- margin-left: 25rpx;
- margin-right: 25rpx;
- .title{
- font-size: 25rpx;
- font-family: SourceHanSansCN-Bold, SourceHanSansCN;
- font-weight: bold;
- color: #292C33;
- float: left;
- }
- .compeleted-box{
- width: 75rpx;
- height: 31.25rpx;
- border-radius: 8px;
- background: rgba(41, 204, 150, 0.1);
- text-align: center;
- float: right;
- .compeleted-text{
- font-size: 17.5rpx;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #29CC96;
- line-height: 31.25rpx;
- }
- }
- .continued-box{
- width: 75rpx;
- height: 31.25rpx;
- border-radius: 8px;
- background: rgba(255, 204, 102, 0.1);
- text-align: center;
- float: right;
- .continued-text{
- width: 75rpx;
- height: 31.25rpx;
- font-size: 17.5rpx;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #FFAA00;
- line-height: 31.25rpx;
- }
- }
- }
- .row2{
- margin-left: 25rpx;
- margin-top: 75rpx;
- margin-right: 25rpx;
- .TobeDistributed{
- font-size: 20rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #666E80;
- float: left;
- }
- .startEndTime{
- font-size: 20rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #666E80;
- float: right;
- }
- }
- }
- }
- .btn-distribution {
- width: 750rpx;
- height: 75rpx;
- background: #3377FF;
- position: fixed;
- bottom: 0rpx;
-
- .btn-text {
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 75rpx;
- margin-left: 352.5rpx;
- }
- }
- }
- </style>
|