|
|
@@ -1015,6 +1015,12 @@ export default {
|
|
|
prop: "createTimeQuery",
|
|
|
type: "datePicker",
|
|
|
},
|
|
|
+ {
|
|
|
+ label: "增加类型",
|
|
|
+ prop: "addType",
|
|
|
+ type: "select",
|
|
|
+ options: [],
|
|
|
+ },
|
|
|
],
|
|
|
btnGroup: [
|
|
|
{
|
|
|
@@ -1063,6 +1069,12 @@ export default {
|
|
|
],
|
|
|
tableConfig: {
|
|
|
columns: [
|
|
|
+ {
|
|
|
+ prop: "addType",
|
|
|
+ label: "增加类型",
|
|
|
+ type: "statMap",
|
|
|
+ options: [],
|
|
|
+ },
|
|
|
{
|
|
|
prop: "orderno",
|
|
|
label: "子订单号",
|
|
|
@@ -1453,6 +1465,16 @@ export default {
|
|
|
});
|
|
|
this.$api.dict.findByLableName("add_type").then((res) => {
|
|
|
if (res.code === 200) {
|
|
|
+ this.formList.forEach((e) => {
|
|
|
+ if (e.prop == "addType") {
|
|
|
+ e.options = res.data;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ this.tableConfig.columns.forEach((e) => {
|
|
|
+ if (e.prop == "addType") {
|
|
|
+ e.options = res.data;
|
|
|
+ }
|
|
|
+ });
|
|
|
this.addTypeList = res.data;
|
|
|
}
|
|
|
});
|
|
|
@@ -1478,7 +1500,6 @@ export default {
|
|
|
};
|
|
|
this.$api.insCompany.findLeftInsTree(params).then((res) => {
|
|
|
this.ztreeNodes = res.data;
|
|
|
- console.log(this.ztreeNodes);
|
|
|
});
|
|
|
this.agrmentlist();
|
|
|
},
|