@toolspack/ttd-common 0.4.8 → 0.5.0
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/README.md +2 -1
- package/lib/ttd-common.common.js +2050 -5328
- package/lib/ttd-common.umd.js +2050 -5328
- package/lib/ttd-common.umd.min.js +1 -1
- package/package.json +1 -1
- package/src/App.vue +0 -2
- package/src/packages/index.js +4 -0
- package/src/packages/ukey/SignNew.vue +35 -0
- package/src/packages/ukey/WZHforChrome.js +167 -0
- package/src/packages/ukey/WzhSign.vue +47 -29
- package/src/packages/ukey/WzhSignChrome.vue +261 -0
- package/src/packages/ukey/nmCryptokit.ToToDi.js +338 -0
- package/src/views/About.vue +0 -14
- package/src/views/MakeLabel.vue +0 -178
- package/src/views/MakelLabel.less +0 -162
- package/src/views/labels.js +0 -48
package/src/views/labels.js
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
// 标签类型 http://192.168.88.120:200/index.php?s=/25&page_id=721
|
|
2
|
-
export const labelsManager = {
|
|
3
|
-
typeName: '募集机构印章标签',
|
|
4
|
-
typeSeal: [
|
|
5
|
-
{
|
|
6
|
-
name: '募集机构章签章',
|
|
7
|
-
type: 29,
|
|
8
|
-
shape: 2,
|
|
9
|
-
stampType: 1,
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
name: '募集机构法人章签章',
|
|
13
|
-
type: 31,
|
|
14
|
-
stampType: 2,
|
|
15
|
-
shape: 2,
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
name: '募集机构业务或合同章',
|
|
19
|
-
type: 33,
|
|
20
|
-
stampType: 3,
|
|
21
|
-
shape: 2,
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
name: '募集机文本',
|
|
25
|
-
type: 1,
|
|
26
|
-
stampType: 3,
|
|
27
|
-
shape: 1,
|
|
28
|
-
},
|
|
29
|
-
],
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export const labelsInvestor = {
|
|
33
|
-
typeName: '投资者印章标签',
|
|
34
|
-
typeSeal: [{
|
|
35
|
-
name: '投资机构签章',
|
|
36
|
-
labelAlias: 'customerSign',
|
|
37
|
-
stampType: 'ORG_SEAL',
|
|
38
|
-
type: 7,
|
|
39
|
-
shape: 2,
|
|
40
|
-
}, {
|
|
41
|
-
name: '机构投资者法人章',
|
|
42
|
-
labelAlias: 'customerSign',
|
|
43
|
-
stampType: 'ORG_LEGAL_SEAL',
|
|
44
|
-
shape: 4,
|
|
45
|
-
type: 37,
|
|
46
|
-
}],
|
|
47
|
-
}
|
|
48
|
-
export default labelsManager
|