ztxkui 3.5.19 → 3.5.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -186,10 +186,12 @@ function getLodop() {
|
|
|
186
186
|
if (strAlertMessage) {
|
|
187
187
|
strAlertMessage = strAlertMessage + strInstallOK;
|
|
188
188
|
console.log('提示更新对应版本!', strAlertMessage);
|
|
189
|
-
Modal.confirm({
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
}
|
|
189
|
+
// Modal.confirm({
|
|
190
|
+
// title: '提示更新对应版本',
|
|
191
|
+
// content: (
|
|
192
|
+
// <div dangerouslySetInnerHTML={{ __html: strAlertMessage }}></div>
|
|
193
|
+
// ),
|
|
194
|
+
// });
|
|
193
195
|
}
|
|
194
196
|
}
|
|
195
197
|
}
|
|
@@ -228,10 +230,10 @@ function getLodop() {
|
|
|
228
230
|
if (LODOP.VERSION < '6.2.2.6') {
|
|
229
231
|
var updateStr = (isWinIE64 ? strLodop64Update : strLodopUpdate) + strInstallOK;
|
|
230
232
|
console.log('需要更新对应版本', updateStr);
|
|
231
|
-
Modal.confirm({
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
});
|
|
233
|
+
// Modal.confirm({
|
|
234
|
+
// title: '需要更新对应版本',
|
|
235
|
+
// content: <div dangerouslySetInnerHTML={{ __html: updateStr }}></div>,
|
|
236
|
+
// });
|
|
235
237
|
}
|
|
236
238
|
}
|
|
237
239
|
//===如下空白位置适合调用统一功能(如注册语句、语言选择等):=======================
|