columns = [
    {
      title: "照片",
      key: "attach_url",
        align:'center',
         width: 170,
      render: (h: any, params: any) => {
        return h("img", {
          attrs: { src: params.row.attach_url },
          style: {
            with: "100px",
            height: "100px",
          },
        });
      },
    },
  {
      title: "地址",
      width: 800,
      align:'center',
      key: "url",
      render: (h: any, params: any) => {
        return h("a",{
          attrs:{href: params.row.url,target:"_blank"}
        },params.row.oss_url+params.row.url)
      }
    }
]

 

posted on 2022-06-17 17:37  我炒菜不放盐  阅读(168)  评论(0编辑  收藏  举报