Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -55,6 +55,47 @@
|
|||||||
划价组套
|
划价组套
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 操作栏:执行时间 + 总金额 + 确认/取消(固定在顶部,无需滚动) -->
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 8px 12px;
|
||||||
|
background: #f5f7fa;
|
||||||
|
border-radius: 6px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 10px;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<div style="display: flex; align-items: center; gap: 10px">
|
||||||
|
<span style="white-space: nowrap">执行时间:</span>
|
||||||
|
<el-date-picker
|
||||||
|
v-model="executeTime"
|
||||||
|
type="datetime"
|
||||||
|
format="YYYY-MM-DD HH:mm:ss"
|
||||||
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||||||
|
placeholder="选择日期时间"
|
||||||
|
style="width: 200px"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div style="display: flex; align-items: center; gap: 15px">
|
||||||
|
<span style="font-size: 14px; font-weight: bold; white-space: nowrap">
|
||||||
|
本次补费总金额:<span style="color: #ff4d4f">{{ totalAmount.toFixed(6) }}</span>
|
||||||
|
</span>
|
||||||
|
<el-button @click="handleCancel">
|
||||||
|
取消
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
@click="handleConfirm"
|
||||||
|
>
|
||||||
|
确定
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- 弹窗内容 - 左右布局 -->
|
<!-- 弹窗内容 - 左右布局 -->
|
||||||
<div style="display: flex; gap: 20px; height: 70vh">
|
<div style="display: flex; gap: 20px; height: 70vh">
|
||||||
<div
|
<div
|
||||||
@@ -300,46 +341,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 底部信息区域 -->
|
|
||||||
<div style="margin-top: 15px; display: flex; flex-wrap: wrap; gap: 15px">
|
|
||||||
<div style="display: flex; align-items: center">
|
|
||||||
<span style="margin-right: 8px">执行时间:</span>
|
|
||||||
<el-date-picker
|
|
||||||
v-model="executeTime"
|
|
||||||
type="datetime"
|
|
||||||
format="YYYY-MM-DD HH:mm:ss"
|
|
||||||
value-format="YYYY-MM-DD HH:mm:ss"
|
|
||||||
placeholder="选择日期时间"
|
|
||||||
style="width: 200px"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- 总金额和操作按钮(固定在弹窗底部) -->
|
|
||||||
<div
|
|
||||||
style="
|
|
||||||
margin-top: 15px;
|
|
||||||
padding-top: 15px;
|
|
||||||
border-top: 1px solid #e4e7ed;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<div style="font-size: 14px; font-weight: bold; text-align: right">
|
|
||||||
本次补费总金额:<span style="color: #ff4d4f">{{ totalAmount.toFixed(6) }}</span>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<el-button @click="handleCancel">
|
|
||||||
取消
|
|
||||||
</el-button>
|
|
||||||
<el-button
|
|
||||||
type="primary"
|
|
||||||
@click="handleConfirm"
|
|
||||||
>
|
|
||||||
确定
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!-- 划价组套选择对话框 -->
|
<!-- 划价组套选择对话框 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
|
|||||||
Reference in New Issue
Block a user