doway-coms 1.1.93 → 1.1.96
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/package.json
CHANGED
|
@@ -340,8 +340,6 @@ import {
|
|
|
340
340
|
RangePicker,
|
|
341
341
|
Tag,
|
|
342
342
|
DatePicker,
|
|
343
|
-
Tag,
|
|
344
|
-
DatePicker,
|
|
345
343
|
InputGroup,
|
|
346
344
|
Input,
|
|
347
345
|
InputNumber,
|
|
@@ -355,12 +353,12 @@ export default {
|
|
|
355
353
|
Button,
|
|
356
354
|
Icon,
|
|
357
355
|
Select,
|
|
358
|
-
SelectOption,
|
|
356
|
+
SelectOption: Select.Option,
|
|
359
357
|
RangePicker,
|
|
360
358
|
Tag,
|
|
361
359
|
DatePicker,
|
|
362
|
-
InputGroup,
|
|
363
360
|
Input,
|
|
361
|
+
InputGroup: Input.Group,
|
|
364
362
|
InputNumber,
|
|
365
363
|
},
|
|
366
364
|
computed: {
|
package/packages/utils/store.js
CHANGED
|
@@ -12,6 +12,7 @@ export default new Vuex.Store({
|
|
|
12
12
|
msgUrl:'',
|
|
13
13
|
token: '',
|
|
14
14
|
industryVersion:'',//行业版本
|
|
15
|
+
isGenerateMatCode:'',//是否生成物料编码
|
|
15
16
|
webAppCode: '',
|
|
16
17
|
moduleViewInfo: {},
|
|
17
18
|
controlSize: 'small',
|
|
@@ -36,6 +37,9 @@ export default new Vuex.Store({
|
|
|
36
37
|
SET_INDUSTRY_VERSION:(state,industryVersion)=>{
|
|
37
38
|
state.industryVersion = industryVersion
|
|
38
39
|
},
|
|
40
|
+
SET_IS_GENERATE_MAT_CODE:(state,isGenerateMatCode)=>{
|
|
41
|
+
state.isGenerateMatCode = isGenerateMatCode
|
|
42
|
+
},
|
|
39
43
|
SET_WEB_APP_CODE: (state, webAppCode) => {
|
|
40
44
|
state.webAppCode = webAppCode
|
|
41
45
|
},
|
|
@@ -112,6 +116,7 @@ export default new Vuex.Store({
|
|
|
112
116
|
modules:{},
|
|
113
117
|
getters: {
|
|
114
118
|
industryVersion:state=>state.industryVersion,
|
|
119
|
+
isGenerateMatCode:state=>state.isGenerateMatCode,
|
|
115
120
|
umsUrl:state=>state.umsUrl,
|
|
116
121
|
msgUrl:state=>state.msgUrl,
|
|
117
122
|
token: state => state.token,
|