art-template是一个用于动态渲染ui界面的模板引擎。
代码示范:
c
<td >
<img src={{$value.executorSignature}} alt="" style="width: auto;height: 18px"/>
</td>
<td>
<img src="/user/file/preview/siginfile/{{$value.patientSignature}}" alt="" style="width: auto;height: 18px" />
</td>
原因,无法解析到根目录,需要在head里面加上base根目录
c
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<base href="http://gateway-service" />
<title>document</title>
</head>