fix(payment): 优化发票申请及收据表单提示和样式

- 简化合并开票结算单的合同限制提示文案
- 调整发票申请表单搜索区域的内容左对齐样式
- 修正发票收据表单关键词输入框的占位符文字错误
This commit is contained in:
2026-09-17 14:59:26 +08:00
parent 17c482e21a
commit 82fbb99593
2 changed files with 3 additions and 3 deletions
@@ -882,7 +882,7 @@ export default {
item.receiverName !== first.receiverName
);
if (incompatible) {
this.$message.warning('合并开票的结算单必须属于同一合同、项目、组织及收付款方');
this.$message.warning('合并开票的结算单必须属于同一合同');
return;
}
this.form.settlements = rows.map(item => ({
@@ -1260,7 +1260,7 @@ export default {
}
.invoice-form-page__dialog-search {
display: flex;
justify-content: flex-end;
justify-content: flex-start;
gap: 8px;
margin-bottom: 12px;
}
+1 -1
View File
@@ -216,7 +216,7 @@
<el-input
v-model="settlementDialog.keyword"
clearable
placeholder="结算单号、项目或合同"
placeholder="3结算单号、项目或合同"
@keyup.enter="loadSettlementCandidates"
/>
<el-button type="primary" @click="loadSettlementCandidates">查询</el-button>