yeawood_consts 1.0.43 → 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.
- package/index.js +38 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -56,7 +56,9 @@ exports.TENDER_PROJECT_SPEEDS = [
|
|
|
56
56
|
{ type: 'cee', env: 'LATEST', speeds: [80000, 80000, 40000] },
|
|
57
57
|
{ type: 'cee', env: 'STABLE', speeds: [40000, 30000, 1000] },
|
|
58
58
|
{ type: 'teruide', env: 'LATEST', speeds: [80000, 80000, 40000] },
|
|
59
|
-
{ 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] }
|
|
60
62
|
]
|
|
61
63
|
|
|
62
64
|
exports.TENDER_DECREASE_BASIS = [
|
|
@@ -91,6 +93,41 @@ exports.TENDER_PROJECT_STATES = [
|
|
|
91
93
|
}
|
|
92
94
|
]
|
|
93
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
|
+
|
|
94
131
|
exports.TENDER_PROJECT_SORT_CALCULATOR = (state, time) => {
|
|
95
132
|
const INFINITY = '9999999999999'
|
|
96
133
|
|