yeawood_consts 1.0.42 → 1.0.44

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.
Files changed (2) hide show
  1. package/index.js +39 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -46,6 +46,7 @@ exports.DEFAULT_COMPANY = '62da5e1f0d5c6be576fa011a'
46
46
 
47
47
  exports.TENDER_TYPES = [
48
48
  { label: '中国电气', value: 'cee' },
49
+ { label: '中国电建', value: 'powerchina' },
49
50
  { label: '中国能建', value: 'ceec' },
50
51
  { label: '河南森源', value: 'senyuan' },
51
52
  { label: '青岛特锐德', value: 'teruide' }
@@ -55,7 +56,9 @@ exports.TENDER_PROJECT_SPEEDS = [
55
56
  { type: 'cee', env: 'LATEST', speeds: [80000, 80000, 40000] },
56
57
  { type: 'cee', env: 'STABLE', speeds: [40000, 30000, 1000] },
57
58
  { type: 'teruide', env: 'LATEST', speeds: [80000, 80000, 40000] },
58
- { type: 'teruide', env: 'STABLE', speeds: [40000, 30000, 5000] }
59
+ { type: 'teruide', env: 'STABLE', speeds: [40000, 30000, 5000] },
60
+ { type: 'powerchina', env: 'LATEST', speeds: [80000, 80000, 5000] },
61
+ { type: 'powerchina', env: 'STABLE', speeds: [40000, 30000, 1000] }
59
62
  ]
60
63
 
61
64
  exports.TENDER_DECREASE_BASIS = [
@@ -90,6 +93,41 @@ exports.TENDER_PROJECT_STATES = [
90
93
  }
91
94
  ]
92
95
 
96
+ exports.TENDER_POWERCHINA_TENDER_METHODS = [
97
+ {
98
+ label: '邀请招标',
99
+ value: '01'
100
+ },
101
+ {
102
+ label: '直接采购',
103
+ value: '11'
104
+ },
105
+ {
106
+ label: '公开询比采购',
107
+ value: '06'
108
+ },
109
+ {
110
+ label: '邀请询比采购',
111
+ value: '07'
112
+ },
113
+ {
114
+ label: '公开谈判采购',
115
+ value: '08'
116
+ },
117
+ {
118
+ label: '邀请谈判采购',
119
+ value: '09'
120
+ },
121
+ {
122
+ label: '公开竞价采购',
123
+ value: '14'
124
+ },
125
+ {
126
+ label: '邀请竞价采购',
127
+ value: '15'
128
+ }
129
+ ]
130
+
93
131
  exports.TENDER_PROJECT_SORT_CALCULATOR = (state, time) => {
94
132
  const INFINITY = '9999999999999'
95
133
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yeawood_consts",
3
- "version": "1.0.42",
3
+ "version": "1.0.44",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {},