@ibiz/model-core 0.1.10 → 0.1.11
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.
- package/CHANGELOG.md +6 -0
- package/out/app/iapplication.d.ts +40 -0
- package/package.json +1 -1
- package/src/app/iapplication.ts +45 -0
package/CHANGELOG.md
CHANGED
|
@@ -300,4 +300,44 @@ export interface IApplication extends IModelObject {
|
|
|
300
300
|
* 来源 isWFAppMode
|
|
301
301
|
*/
|
|
302
302
|
wfappMode?: boolean;
|
|
303
|
+
/**
|
|
304
|
+
* 应用下方信息
|
|
305
|
+
*
|
|
306
|
+
* @author chitanda
|
|
307
|
+
* @date 2024-02-04 15:02:20
|
|
308
|
+
* @type {string}
|
|
309
|
+
*/
|
|
310
|
+
bottomInfo?: string;
|
|
311
|
+
/**
|
|
312
|
+
* 应用头部信息
|
|
313
|
+
*
|
|
314
|
+
* @author chitanda
|
|
315
|
+
* @date 2024-02-04 15:02:39
|
|
316
|
+
* @type {string}
|
|
317
|
+
*/
|
|
318
|
+
headerInfo?: string;
|
|
319
|
+
/**
|
|
320
|
+
* 应用抬头
|
|
321
|
+
*
|
|
322
|
+
* @author chitanda
|
|
323
|
+
* @date 2024-02-04 15:02:04
|
|
324
|
+
* @type {string}
|
|
325
|
+
*/
|
|
326
|
+
title?: string;
|
|
327
|
+
/**
|
|
328
|
+
* 应用标题
|
|
329
|
+
*
|
|
330
|
+
* @author chitanda
|
|
331
|
+
* @date 2024-02-04 15:02:20
|
|
332
|
+
* @type {string}
|
|
333
|
+
*/
|
|
334
|
+
caption?: string;
|
|
335
|
+
/**
|
|
336
|
+
* 应用子标题
|
|
337
|
+
*
|
|
338
|
+
* @author chitanda
|
|
339
|
+
* @date 2024-02-04 15:02:35
|
|
340
|
+
* @type {string}
|
|
341
|
+
*/
|
|
342
|
+
subCaption?: string;
|
|
303
343
|
}
|
package/package.json
CHANGED
package/src/app/iapplication.ts
CHANGED
|
@@ -351,4 +351,49 @@ export interface IApplication extends IModelObject {
|
|
|
351
351
|
* 来源 isWFAppMode
|
|
352
352
|
*/
|
|
353
353
|
wfappMode?: boolean;
|
|
354
|
+
|
|
355
|
+
/**
|
|
356
|
+
* 应用下方信息
|
|
357
|
+
*
|
|
358
|
+
* @author chitanda
|
|
359
|
+
* @date 2024-02-04 15:02:20
|
|
360
|
+
* @type {string}
|
|
361
|
+
*/
|
|
362
|
+
bottomInfo?: string;
|
|
363
|
+
|
|
364
|
+
/**
|
|
365
|
+
* 应用头部信息
|
|
366
|
+
*
|
|
367
|
+
* @author chitanda
|
|
368
|
+
* @date 2024-02-04 15:02:39
|
|
369
|
+
* @type {string}
|
|
370
|
+
*/
|
|
371
|
+
headerInfo?: string;
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* 应用抬头
|
|
375
|
+
*
|
|
376
|
+
* @author chitanda
|
|
377
|
+
* @date 2024-02-04 15:02:04
|
|
378
|
+
* @type {string}
|
|
379
|
+
*/
|
|
380
|
+
title?: string;
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* 应用标题
|
|
384
|
+
*
|
|
385
|
+
* @author chitanda
|
|
386
|
+
* @date 2024-02-04 15:02:20
|
|
387
|
+
* @type {string}
|
|
388
|
+
*/
|
|
389
|
+
caption?: string;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* 应用子标题
|
|
393
|
+
*
|
|
394
|
+
* @author chitanda
|
|
395
|
+
* @date 2024-02-04 15:02:35
|
|
396
|
+
* @type {string}
|
|
397
|
+
*/
|
|
398
|
+
subCaption?: string;
|
|
354
399
|
}
|