IVIEW

103 阅读1分钟

IVIEW render

render: (h, params) => {
    return h('a', {
      style: {textDecoration: 'underline'},
      on: {
        'click': () => {}
      }
    }, params.row[params.column.key])
    // text = params.row[params.column.key]
    return h('div', {
        style: { ...... },
        on: {
          click: () => {
            this.$Modal.info({
              title: '查看原图',
              okText: '关闭',
              width: 600,
              content: `<div  style="width:;height:;
                            background: url('${url}') no-repeat center center/contain"></div>`
            })
          }
        }
      })
  }