From f3d4db769ba9b51b799d981511a710fd443d0e08 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 21 四月 2025 12:18:03 +0800 Subject: [PATCH] Merge branch 'master' into positec --- src/menu/components/share/actioncomponent/actionform/mkPrintTemps/index.jsx | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/menu/components/share/actioncomponent/actionform/mkPrintTemps/index.jsx b/src/menu/components/share/actioncomponent/actionform/mkPrintTemps/index.jsx index efc3032..3d37897 100644 --- a/src/menu/components/share/actioncomponent/actionform/mkPrintTemps/index.jsx +++ b/src/menu/components/share/actioncomponent/actionform/mkPrintTemps/index.jsx @@ -30,14 +30,14 @@ getPrintTemp = () => { let param = { func: 'sPC_Get_SelectedList', - LText: Utils.formatOptions(queryPrintSql), + LText: Utils.formatOptions(queryPrintSql, 'x'), obj_name: 'data', - arr_field: 'PN,ID,Images' + arr_field: 'PN,ID,Images', + exec_type: 'x' } param.timestamp = moment().format('YYYY-MM-DD HH:mm:ss') - param.secretkey = Utils.encrypt(param.LText, param.timestamp) - + param.secretkey = Utils.encrypt('', param.timestamp) param.open_key = Utils.encryptOpenKey(param.secretkey, param.timestamp) // 浜戠鏁版嵁楠岃瘉 Api.getCloudConfig(param).then(res => { @@ -74,6 +74,7 @@ showSearch allowClear value={value} + dropdownMatchSelectWidth={false} filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0} onSelect={this.selectChange} onChange={(val) => val === undefined && this.selectChange('')} -- Gitblit v1.8.0