|
|
@ -89,6 +89,7 @@ |
|
|
border |
|
|
border |
|
|
style="width: 100%" |
|
|
style="width: 100%" |
|
|
height="100%" |
|
|
height="100%" |
|
|
|
|
|
:cell-style="cellStyle" |
|
|
> |
|
|
> |
|
|
<el-table-column |
|
|
<el-table-column |
|
|
prop="shipMethod" |
|
|
prop="shipMethod" |
|
|
@ -111,6 +112,7 @@ |
|
|
v-model="scope.row.transitDays" |
|
|
v-model="scope.row.transitDays" |
|
|
placeholder="请输入天数" |
|
|
placeholder="请输入天数" |
|
|
class="centered-input" |
|
|
class="centered-input" |
|
|
|
|
|
size="mini" |
|
|
/> |
|
|
/> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
@ -281,6 +283,12 @@ export default { |
|
|
} |
|
|
} |
|
|
this.searchTable() |
|
|
this.searchTable() |
|
|
}, |
|
|
}, |
|
|
|
|
|
cellStyle() { |
|
|
|
|
|
return { |
|
|
|
|
|
padding: '8px 0', // 上下内边距,控制单元格高度 |
|
|
|
|
|
height: '30px' // 固定高度 |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
// 查询列表 |
|
|
// 查询列表 |
|
|
searchTable() { |
|
|
searchTable() { |
|
|
this.dataListLoading = true |
|
|
this.dataListLoading = true |
|
|
@ -527,10 +535,9 @@ export default { |
|
|
height: 36px !important; |
|
|
height: 36px !important; |
|
|
line-height: 36px !important; |
|
|
line-height: 36px !important; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* 去掉错误居中方式 */ |
|
|
|
|
|
.centered-input { |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
|
/deep/ .centered-input { |
|
|
|
|
|
width: 80%; |
|
|
|
|
|
margin: -5px auto 0 auto; /* 负的上边距向上移动 */ |
|
|
} |
|
|
} |
|
|
/* 整个弹窗拉高 */ |
|
|
/* 整个弹窗拉高 */ |
|
|
::v-deep .upload-dialog .el-dialog { |
|
|
::v-deep .upload-dialog .el-dialog { |
|
|
|