Browse Source

2025.03.18 询价优化

java8
jiayang yue 10 months ago
parent
commit
22222ab409
  1. 2
      src/views/modules/inquiry/inquiryApplication.vue
  2. 2
      src/views/modules/inquiry/inquiryDetail.vue
  3. 1
      src/views/modules/inquiry/inquiryTechnicalMaterialsNoBuilt.vue
  4. 13
      src/views/modules/quote/quotes.vue

2
src/views/modules/inquiry/inquiryApplication.vue

@ -55,6 +55,7 @@
<el-option label="草稿" value="C"></el-option> <el-option label="草稿" value="C"></el-option>
<el-option label="下达" value="B"></el-option> <el-option label="下达" value="B"></el-option>
<el-option label="已转报价" value="A"></el-option> <el-option label="已转报价" value="A"></el-option>
<el-option label="已驳回" value="D"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item :label="'PjM'"> <el-form-item :label="'PjM'">
@ -139,6 +140,7 @@
<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>

2
src/views/modules/inquiry/inquiryDetail.vue

@ -91,6 +91,7 @@
<el-option label="草稿" value="C"></el-option> <el-option label="草稿" value="C"></el-option>
<el-option label="已下达" value="B"></el-option> <el-option label="已下达" value="B"></el-option>
<el-option label="已转报价" value="A"></el-option> <el-option label="已转报价" value="A"></el-option>
<el-option label="已驳回" value="D"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item :label="' '"> <el-form-item :label="' '">
@ -144,6 +145,7 @@
<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>

1
src/views/modules/inquiry/inquiryTechnicalMaterialsNoBuilt.vue

@ -138,6 +138,7 @@
<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>

13
src/views/modules/quote/quotes.vue

@ -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>

Loading…
Cancel
Save