0123需求
parent
5ce023c7d4
commit
9250e3592d
|
@ -305,6 +305,9 @@
|
||||||
this.operationDate = ''
|
this.operationDate = ''
|
||||||
this.startDate = ''
|
this.startDate = ''
|
||||||
this.endDate = ''
|
this.endDate = ''
|
||||||
|
this.oneFlag = false
|
||||||
|
this.twoFlag = false
|
||||||
|
this.threeFlag = false
|
||||||
},
|
},
|
||||||
// 筛选确认
|
// 筛选确认
|
||||||
confirm() {
|
confirm() {
|
||||||
|
|
|
@ -449,7 +449,7 @@
|
||||||
<view class="bottom">卸船进度</view>
|
<view class="bottom">卸船进度</view>
|
||||||
</view>
|
</view>
|
||||||
<template>
|
<template>
|
||||||
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index)" :class="{active:jobActive == index || brdName == item.label}">
|
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'bzz')" :class="{active:jobActive == index || brdName == item.label}">
|
||||||
<view class="label">{{ item.label }}</view>
|
<view class="label">{{ item.label }}</view>
|
||||||
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
||||||
contentColor="#0067CF"
|
contentColor="#0067CF"
|
||||||
|
@ -1689,7 +1689,7 @@
|
||||||
this.itemList = []
|
this.itemList = []
|
||||||
if(type == 'zzl') {
|
if(type == 'zzl') {
|
||||||
this.loadSumOrder()
|
this.loadSumOrder()
|
||||||
} else if(type == 'fzl') {
|
} else if(type == 'fzl' || type == 'bzz') {
|
||||||
this.loadOtherOrder()
|
this.loadOtherOrder()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'zzl')" :class="{active:jobActive == index || brdName == item.label}">
|
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'zzl')" :class="{active:jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label}">
|
||||||
<view class="label">{{ item.label }}</view>
|
<view class="label">{{ item.label }}</view>
|
||||||
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
||||||
contentColor="#0067CF"
|
contentColor="#0067CF"
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
<p>已装船:<text>{{ item.progress }}</text></p>
|
<p>已装船:<text>{{ item.progress }}</text></p>
|
||||||
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
||||||
</view>
|
</view>
|
||||||
<view class="imgBox" v-if="jobActive == index || brdName == item.label">
|
<view class="imgBox" v-if="jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label">
|
||||||
<image src="../../static/images/tjxz2.png" mode=""></image>
|
<image src="../../static/images/tjxz2.png" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -282,7 +282,7 @@
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'fzl')" :class="{active:jobActive == index || brdName == item.label}">
|
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'zzl')" :class="{active:jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label}">
|
||||||
<view class="label">{{ item.label }}</view>
|
<view class="label">{{ item.label }}</view>
|
||||||
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
||||||
contentColor="#0067CF"
|
contentColor="#0067CF"
|
||||||
|
@ -291,7 +291,7 @@
|
||||||
<p>已装船:<text>{{ item.progress }}</text></p>
|
<p>已装船:<text>{{ item.progress }}</text></p>
|
||||||
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
||||||
</view>
|
</view>
|
||||||
<view class="imgBox" v-if="jobActive == index || brdName == item.label">
|
<view class="imgBox" v-if="jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label">
|
||||||
<image src="../../static/images/tjxz2.png" mode=""></image>
|
<image src="../../static/images/tjxz2.png" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -317,6 +317,9 @@
|
||||||
this.operationDate = ''
|
this.operationDate = ''
|
||||||
this.startDate = ''
|
this.startDate = ''
|
||||||
this.endDate = ''
|
this.endDate = ''
|
||||||
|
this.oneFlag = false
|
||||||
|
this.twoFlag = false
|
||||||
|
this.threeFlag = false
|
||||||
},
|
},
|
||||||
// 筛选确认
|
// 筛选确认
|
||||||
confirm() {
|
confirm() {
|
||||||
|
|
|
@ -88,7 +88,7 @@
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'zzl')" :class="{active:jobActive == index || brdName == item.label}">
|
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'zzl')" :class="{active:jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label}">
|
||||||
<view class="label">{{ item.label }}</view>
|
<view class="label">{{ item.label }}</view>
|
||||||
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
||||||
contentColor="#0067CF"
|
contentColor="#0067CF"
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
<p>已装船:<text>{{ item.progress }}</text></p>
|
<p>已装船:<text>{{ item.progress }}</text></p>
|
||||||
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
||||||
</view>
|
</view>
|
||||||
<view class="imgBox" v-if="jobActive == index || brdName == item.label">
|
<view class="imgBox" v-if="jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label">
|
||||||
<image src="../../static/images/tjxz2.png" mode=""></image>
|
<image src="../../static/images/tjxz2.png" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -285,7 +285,7 @@
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'fzl')" :class="{active:jobActive == index || brdName == item.label}">
|
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'zzl')" :class="{active:jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label}">
|
||||||
<view class="label">{{ item.label }}</view>
|
<view class="label">{{ item.label }}</view>
|
||||||
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
||||||
contentColor="#0067CF"
|
contentColor="#0067CF"
|
||||||
|
@ -294,7 +294,7 @@
|
||||||
<p>已装船:<text>{{ item.progress }}</text></p>
|
<p>已装船:<text>{{ item.progress }}</text></p>
|
||||||
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
||||||
</view>
|
</view>
|
||||||
<view class="imgBox" v-if="jobActive == index || brdName == item.label">
|
<view class="imgBox" v-if="jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label">
|
||||||
<image src="../../static/images/tjxz2.png" mode=""></image>
|
<image src="../../static/images/tjxz2.png" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -467,7 +467,7 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<template>
|
<template>
|
||||||
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index)" :class="{active:jobActive == index || brdName == item.label}">
|
<view class="tjInfo" v-for="(item,index) in jobProgressList" :key="item.id" @click="jobProgress(item,index,'zzl')" :class="{active:jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label}">
|
||||||
<view class="label">{{ item.label }}</view>
|
<view class="label">{{ item.label }}</view>
|
||||||
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
<lx-progress-bar title="" :total="item.totalProgress" :firstValue="item.progress"
|
||||||
contentColor="#0067CF"
|
contentColor="#0067CF"
|
||||||
|
@ -476,7 +476,7 @@
|
||||||
<p>已装船:<text>{{ item.progress }}</text></p>
|
<p>已装船:<text>{{ item.progress }}</text></p>
|
||||||
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
<p style="margin-left: 16px;">待卸船:<text>{{ item.totalProgress - item.progress }}</text></p>
|
||||||
</view>
|
</view>
|
||||||
<view class="imgBox" v-if="jobActive == index || brdName == item.label">
|
<view class="imgBox" v-if="jobActive == index || brdName == item.label || potName == item.label || mnfBl == item.label">
|
||||||
<image src="../../static/images/tjxz2.png" mode=""></image>
|
<image src="../../static/images/tjxz2.png" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -1977,7 +1977,7 @@
|
||||||
this.itemList = []
|
this.itemList = []
|
||||||
if(type == 'zzl') {
|
if(type == 'zzl') {
|
||||||
this.loadSumOrder()
|
this.loadSumOrder()
|
||||||
} else if(type == 'fzl') {
|
} else if(type == 'fzl' || type =='bzz') {
|
||||||
this.loadOtherOrder()
|
this.loadOtherOrder()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue