You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
654 B
Plaintext
34 lines
654 B
Plaintext
@{
|
|
var item = Model.Primary;
|
|
}
|
|
|
|
<style>
|
|
.parent {
|
|
position: relative;
|
|
height: 300px;
|
|
width: 300px;
|
|
}
|
|
|
|
.child {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
</style>
|
|
|
|
<h1>测试邮件-@item.MBLNO<span style="padding: 2px"></span>@item.CustomerNo</h1>
|
|
|
|
<div>
|
|
<span>预计开船日期:@item.ETD</span>
|
|
<span>预计抵达日期:@item.ETA</span>
|
|
</div>
|
|
<hr />
|
|
<div>
|
|
<span>订单创建时间:@item.CreateTime.ToString("yyyy年MM月dd日 HH:mm:ss")</span>
|
|
</div>
|
|
|
|
<div class="parent">
|
|
<div id="sign" class="child"></div>
|
|
</div> |