|
|
@ -40,7 +40,7 @@ export default { |
|
|
requestEndDate: '', |
|
|
requestEndDate: '', |
|
|
requiredCompletionStartDate: '', |
|
|
requiredCompletionStartDate: '', |
|
|
requiredCompletionEndDate: '', |
|
|
requiredCompletionEndDate: '', |
|
|
status: '', |
|
|
|
|
|
|
|
|
status: 'EE', |
|
|
quoterName: '', |
|
|
quoterName: '', |
|
|
requesterName: '', |
|
|
requesterName: '', |
|
|
priorityLevel: '', |
|
|
priorityLevel: '', |
|
|
@ -630,7 +630,6 @@ export default { |
|
|
handleQuery(){ |
|
|
handleQuery(){ |
|
|
this.queryForm.limit = this.pageSize |
|
|
this.queryForm.limit = this.pageSize |
|
|
this.queryForm.page = this.pageIndex |
|
|
this.queryForm.page = this.pageIndex |
|
|
this.queryForm.status = 'B' |
|
|
|
|
|
this.queryLoading = true |
|
|
this.queryLoading = true |
|
|
searchInquiryApplicationInfo(this.queryForm).then(({data})=>{ |
|
|
searchInquiryApplicationInfo(this.queryForm).then(({data})=>{ |
|
|
if (data && data.code === 0){ |
|
|
if (data && data.code === 0){ |
|
|
@ -930,6 +929,13 @@ export default { |
|
|
placeholder="选择日期"> |
|
|
placeholder="选择日期"> |
|
|
</el-date-picker> |
|
|
</el-date-picker> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
|
|
|
<el-form-item :label="'状态'"> |
|
|
|
|
|
<el-select v-model="queryForm.status" style="width: 120px"> |
|
|
|
|
|
<el-option label="全部" value="EE"></el-option> |
|
|
|
|
|
<el-option label="下达" value="B"></el-option> |
|
|
|
|
|
<el-option label="已驳回" value="D"></el-option> |
|
|
|
|
|
</el-select> |
|
|
|
|
|
</el-form-item> |
|
|
<el-form-item :label="' '"> |
|
|
<el-form-item :label="' '"> |
|
|
<el-button @click="handleQuery()">查询</el-button> |
|
|
<el-button @click="handleQuery()">查询</el-button> |
|
|
<!-- <el-button type="primary" icon="el-icon-upload" @click="handleImportQuotation()">导入</el-button>--> |
|
|
<!-- <el-button type="primary" icon="el-icon-upload" @click="handleImportQuotation()">导入</el-button>--> |
|
|
@ -974,7 +980,8 @@ export default { |
|
|
<span v-if="!item.columnHidden"> |
|
|
<span v-if="!item.columnHidden"> |
|
|
<span v-if="scope.row.status === 'C'">草稿</span> |
|
|
<span v-if="scope.row.status === 'C'">草稿</span> |
|
|
<span v-if="scope.row.status === 'B'">下达</span> |
|
|
<span v-if="scope.row.status === 'B'">下达</span> |
|
|
<span v-if="scope.row.status === 'A'">已报价</span> |
|
|
|
|
|
|
|
|
<span v-if="scope.row.status === 'A'">已转报价</span> |
|
|
|
|
|
<span v-if="scope.row.status === 'D'">已驳回</span> |
|
|
</span> |
|
|
</span> |
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" |
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" |
|
|
style="width: 100px; height: 80px"/></span> |
|
|
style="width: 100px; height: 80px"/></span> |
|
|
|