|
|
@@ -1,4 +1,5 @@
|
|
|
import CommonUtil from "@/utils/comutil.js";
|
|
|
+
|
|
|
export const mixin = { // 导出混入对象
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -131,7 +132,7 @@ export const mixin = { // 导出混入对象
|
|
|
{ prop: "licenseno", label: "车牌号", minWidth: 160 },
|
|
|
{ prop: "insuredname", label: "投保人姓名", minWidth: 120 },
|
|
|
{ prop: "product", label: "投保险种", minWidth: 100 },
|
|
|
- { prop: "createtime", label: "录单日期", minWidth: 160, },
|
|
|
+ { prop: "createtime", label: "录单日期", minWidth: 160},
|
|
|
],
|
|
|
statusoptions: "",
|
|
|
dialogVisible: false,
|
|
|
@@ -150,6 +151,8 @@ export const mixin = { // 导出混入对象
|
|
|
quoteno: "",
|
|
|
oldfileList: [],
|
|
|
orderInfo: {},
|
|
|
+ forwardingRecordsdialogVisible:false,
|
|
|
+ gridData:[],
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
@@ -176,6 +179,23 @@ export const mixin = { // 导出混入对象
|
|
|
this.getDicType("productsType"); //车船税类型
|
|
|
},
|
|
|
methods: {
|
|
|
+ forwardingRecords(row){
|
|
|
+ let id=row.row.subOrderId;
|
|
|
+ this.forwardingRecordsQuery(id);
|
|
|
+ },
|
|
|
+ forwardingRecordsQuery(id) {
|
|
|
+ this.$api.letter.findForwardingListBySubOrderId(id).then((res) => {
|
|
|
+ if (res.code == '200' && res.data.length) {
|
|
|
+ this.gridData=res.data;
|
|
|
+ this.forwardingRecordsdialogVisible=true;
|
|
|
+ } else {
|
|
|
+ this.$message({
|
|
|
+ type: 'error',
|
|
|
+ message: "没有转发记录",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
detailFun(row) {
|
|
|
let params = {
|
|
|
companyId: row.row.subOrderId
|