|
|
@@ -91,13 +91,12 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- quoteDetailForm: {},
|
|
|
- tableData: [],
|
|
|
+ quoteDetailForm: {}, // 查询条件
|
|
|
+ tableData: [], // 列表数据
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
total: 0,
|
|
|
orderInfo: {
|
|
|
- //选中的订单
|
|
|
carinfo: {},
|
|
|
applyinfo: {},
|
|
|
insureinfo: {},
|
|
|
@@ -106,13 +105,14 @@ export default {
|
|
|
ownerinfo: {},
|
|
|
orderCommissionVo: {},
|
|
|
extendInfo: {},
|
|
|
- },
|
|
|
- actionList: [],
|
|
|
- resultList: [],
|
|
|
- leftTree: []
|
|
|
+ }, //选中的订单
|
|
|
+ actionList: [], // 动过list
|
|
|
+ resultList: [], // 结果list
|
|
|
+ leftTree: [] // 保险公司
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 结果数据转换展示
|
|
|
filterResult(value,row) {
|
|
|
return row.result === value
|
|
|
},
|
|
|
@@ -176,17 +176,17 @@ export default {
|
|
|
this.$refs.detailsDialog.setBackupVisible(true);
|
|
|
})
|
|
|
},
|
|
|
+ // 动作
|
|
|
initAction() {
|
|
|
this.$api.quote.getQuoteAction().then(res => {
|
|
|
- console.log('动作', res)
|
|
|
if(res.code === 200) {
|
|
|
this.actionList = res.data
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ // 结果
|
|
|
initResult() {
|
|
|
this.$api.quote.getQuoteResult().then(res => {
|
|
|
- console.log('结果', res)
|
|
|
if(res.code === 200) {
|
|
|
this.resultList = res.data
|
|
|
}
|