|
@@ -489,7 +489,7 @@ import { EVEN_VAR } from "./EventBus.js";
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 如果有附件按钮,为按钮留出空间
|
|
// 如果有附件按钮,为按钮留出空间
|
|
|
- if (this.fj || this.param) {
|
|
|
|
|
|
|
+ if (this.fj || (this.param&&this.param.button)) {//加上&&this.param.button条件 Ben(20251221)
|
|
|
mainTextareaStyle.paddingRight = '75px';
|
|
mainTextareaStyle.paddingRight = '75px';
|
|
|
|
|
|
|
|
}
|
|
}
|
|
@@ -518,7 +518,7 @@ import { EVEN_VAR } from "./EventBus.js";
|
|
|
autocomplete: "off",
|
|
autocomplete: "off",
|
|
|
}),
|
|
}),
|
|
|
// 附件按钮(优先使用 param,兼容旧的 fj)
|
|
// 附件按钮(优先使用 param,兼容旧的 fj)
|
|
|
- this.param || this.fj
|
|
|
|
|
|
|
+ this.fj||(this.param&&this.param.button)//加上&&this.param.button条件 Ben(20251221)
|
|
|
? h(
|
|
? h(
|
|
|
"button",
|
|
"button",
|
|
|
{
|
|
{
|