zhangzeli
2022-01-05 1b98ab0d3d007a5a65bdd446483853df34b8919c
src/views/your/accident-manage/accidentManage.vue
@@ -276,18 +276,19 @@
            title: "事故描述",
            key: "description",
            width: 150,
            tooltip:true,
          },
          {
            title: "责任认定",
            key: "dutySure",
            width:150,
            sortable: true,
            tooltip:true,
          },
          {
            title: "解决方案",
            key: "solve",
            minWidth: 150,
            sortable: true,
            tooltip:true,
          },
          {
            title: "操作",
@@ -298,15 +299,15 @@
            render: (h, params) => {
              return h("div", [
                h(
                        "a",
                        {
                          on: {
                            click: () => {
                              this.edit(params.row);
                            },
                          },
                        },
                        "编辑"
                  "a",
                  {
                    on: {
                      click: () => {
                        this.edit(params.row);
                      },
                    },
                  },
                  "编辑"
                ),
                h("Divider", {
                  props: {
@@ -314,15 +315,15 @@
                  },
                }),
                h(
                        "a",
                        {
                          on: {
                            click: () => {
                              this.remove(params.row);
                            },
                          },
                        },
                        "删除"
                  "a",
                  {
                    on: {
                      click: () => {
                        this.remove(params.row);
                      },
                    },
                  },
                  "删除"
                ),
              ]);
            },