Browse Source

20241101

java8
qiezi 1 year ago
parent
commit
4c4431a597
  1. 8
      src/views/modules/quote/quoteDetailReport.vue

8
src/views/modules/quote/quoteDetailReport.vue

@ -400,15 +400,18 @@ export default {
id:row.quoteId,
createBy: this.$store.state.user.name,
}
this.queryLoading = true
againQuote(params).then(({data})=>{
if (data && data.code === 0){
this.$message.success(data.msg)
this.handleQuery();
}else {
this.$message.warning(data.msg)
this.queryLoading = false
}
}).catch((error)=>{
this.$message.error(error)
this.queryLoading = false
})
})
}
@ -504,14 +507,13 @@ export default {
style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>
<el-table-column v-if="false"
fixed="right"
<el-table-column fixed="right"
header-align="center"
align="center"
width="100"
label="操作">
<template slot-scope="{row,$index}">
<a @click="handleAgainQuote(row)">重新报价</a>
<el-link @click="handleAgainQuote(row)">重新报价</el-link>
</template>
</el-table-column>
</el-table>

Loading…
Cancel
Save