|
@@ -23,6 +23,24 @@
|
|
style="color: #8890b1"
|
|
style="color: #8890b1"
|
|
/>
|
|
/>
|
|
</ws-select>
|
|
</ws-select>
|
|
|
|
+ <span style="width: 142px; display: inline-block; color: #8890b1"
|
|
|
|
+ >类型:</span
|
|
|
|
+ >
|
|
|
|
+ <ws-select
|
|
|
|
+ v-model="tranTypeKeyText"
|
|
|
|
+ placeholder=""
|
|
|
|
+ class="typeselect"
|
|
|
|
+ @change="selecttranType"
|
|
|
|
+ :value="tranTypeKey"
|
|
|
|
+ >
|
|
|
|
+ <ws-option
|
|
|
|
+ v-for="item in tranTypeList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.value"
|
|
|
|
+ :value="item.value"
|
|
|
|
+ style="color: #8890b1"
|
|
|
|
+ />
|
|
|
|
+ </ws-select>
|
|
<div>
|
|
<div>
|
|
<span style="display: inline-block; width: 70px; color: #8890b1"
|
|
<span style="display: inline-block; width: 70px; color: #8890b1"
|
|
>接单日期:</span
|
|
>接单日期:</span
|
|
@@ -209,10 +227,12 @@ export default {
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
deptBudgetTotal: 0,
|
|
deptBudgetTotal: 0,
|
|
searchType: 1,
|
|
searchType: 1,
|
|
|
|
+ tranTypeKey:4,
|
|
|
|
+ tranTypeKeyText: '全部',
|
|
searchTypeText: '执行中',
|
|
searchTypeText: '执行中',
|
|
searchKeyWord: '',
|
|
searchKeyWord: '',
|
|
contractType: 2,
|
|
contractType: 2,
|
|
- tranTypeKey: 2,
|
|
|
|
|
|
+ // tranTypeKey: 2,
|
|
feedbackFlag: 1,
|
|
feedbackFlag: 1,
|
|
searchTypeOne: 1,
|
|
searchTypeOne: 1,
|
|
taskTypeList: [
|
|
taskTypeList: [
|
|
@@ -220,6 +240,12 @@ export default {
|
|
{ value: '已完货', type: 2 },
|
|
{ value: '已完货', type: 2 },
|
|
{ value: '全部任务', type: 3 },
|
|
{ value: '全部任务', type: 3 },
|
|
],
|
|
],
|
|
|
|
+ tranTypeList: [
|
|
|
|
+ { value: '汽运', type: 1 },
|
|
|
|
+ { value: '火运', type: 2 },
|
|
|
|
+ { value: '船运', type: 3 },
|
|
|
|
+ { value: '全部', type: 4 },
|
|
|
|
+ ],
|
|
// 提交类型
|
|
// 提交类型
|
|
submitType: true,
|
|
submitType: true,
|
|
size: 10,
|
|
size: 10,
|
|
@@ -371,6 +397,7 @@ export default {
|
|
automobileList({
|
|
automobileList({
|
|
compId: sessionStorage.getItem('ws-pf_compId'),
|
|
compId: sessionStorage.getItem('ws-pf_compId'),
|
|
feedbackFlag: this.feedbackFlag,
|
|
feedbackFlag: this.feedbackFlag,
|
|
|
|
+ tranTypeKey:this.tranTypeKey,
|
|
currentPage: this.currentPage,
|
|
currentPage: this.currentPage,
|
|
pageSize: this.pageSize,
|
|
pageSize: this.pageSize,
|
|
startDate: this.startDate,
|
|
startDate: this.startDate,
|
|
@@ -424,6 +451,15 @@ export default {
|
|
this.feedbackFlag = this.taskTypeList[i].type
|
|
this.feedbackFlag = this.taskTypeList[i].type
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ this.getList()
|
|
|
|
+ },
|
|
|
|
+ selecttranType(e) {
|
|
|
|
+ for (var i = 0; i < this.tranTypeList.length; i++) {
|
|
|
|
+ if (this.tranTypeList[i].value == e) {
|
|
|
|
+ this.tranTypeKey = this.tranTypeList[i].type
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.getList()
|
|
},
|
|
},
|
|
find() {
|
|
find() {
|
|
if (this.inOutDate != null) {
|
|
if (this.inOutDate != null) {
|