eoss-mobiles 0.3.62 → 0.3.63

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-mobiles",
3
- "version": "0.3.62",
3
+ "version": "0.3.63",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -538,7 +538,7 @@
538
538
  <Message
539
539
  ref="message"
540
540
  :label="'催办通知方式'"
541
- :code="'notification_type'"
541
+ :code="msgCode"
542
542
  onlyShowType
543
543
  :baseUrl="baseUrl"
544
544
  :pendingId="pendingId"
@@ -551,7 +551,7 @@
551
551
  <div class="item-msg item-msg2">
552
552
  <Message
553
553
  ref="message"
554
- :code="'notification_type'"
554
+ :code="msgCode"
555
555
  :baseUrl="baseUrl"
556
556
  :readOnlyNotificationType="readOnlyNotificationType"
557
557
  :notificationMessageReadOnly="notificationMessageReadOnly"
@@ -646,6 +646,10 @@ export default {
646
646
  type: [String, Number],
647
647
  default: 0
648
648
  },
649
+ msgCode: {
650
+ type: String,
651
+ default: 'notification_type'
652
+ },
649
653
  isAllCheck: {
650
654
  type: Boolean,
651
655
  default: false
@@ -29,7 +29,7 @@
29
29
  <Message
30
30
  v-if="rejectObj && rejectObj.length != 0"
31
31
  ref="message"
32
- :code="'notification_type'"
32
+ :code="msgCode"
33
33
  :baseUrl="baseUrl"
34
34
  :readOnlyNotificationType="readOnlyNotificationType"
35
35
  :notificationMessageReadOnly="notificationMessageReadOnly"
@@ -65,6 +65,10 @@ export default {
65
65
  type: Boolean,
66
66
  default: false
67
67
  },
68
+ msgCode: {
69
+ type: String,
70
+ default: 'notification_type'
71
+ },
68
72
  userId: {
69
73
  type: String,
70
74
  default: ''
@@ -157,7 +157,7 @@
157
157
  <!-- 通知方式 -->
158
158
  <Message
159
159
  ref="message"
160
- :code="'notification_type'"
160
+ :code="msgCode"
161
161
  :readOnlyNotificationType="readOnlyNotificationType"
162
162
  :notificationMessageReadOnly="notificationMessageReadOnly"
163
163
  :defaultNotificationMsg="form.notificationMsg"
@@ -249,6 +249,10 @@ export default {
249
249
  type: Object,
250
250
  default: () => {}
251
251
  },
252
+ msgCode: {
253
+ type: String,
254
+ default: 'notification_type'
255
+ },
252
256
  opinion: {
253
257
  type: String,
254
258
  default: ''
@@ -78,7 +78,7 @@
78
78
  <div class="item">
79
79
  <Message
80
80
  ref="message"
81
- :code="'notification_type'"
81
+ :code="msgCode"
82
82
  :readOnlyNotificationType="readOnlyNotificationType"
83
83
  :notificationMessageReadOnly="notificationMessageReadOnly"
84
84
  :defaultNotificationMsg="defaultNotificationMessage"
@@ -168,6 +168,10 @@ export default {
168
168
  type: String,
169
169
  default: ''
170
170
  },
171
+ msgCode: {
172
+ type: String,
173
+ default: 'notification_type'
174
+ },
171
175
  isAllCheck: {
172
176
  type: Boolean,
173
177
  default: false
@@ -139,7 +139,7 @@
139
139
  <!-- 通知方式 -->
140
140
  <Message
141
141
  ref="message"
142
- :code="'notification_type'"
142
+ :code="msgCode"
143
143
  :readOnlyNotificationType="readOnlyNotificationType"
144
144
  :notificationMessageReadOnly="notificationMessageReadOnly"
145
145
  :defaultNotificationMsg="form.notificationMsg"
@@ -215,6 +215,10 @@ export default {
215
215
  type: Boolean,
216
216
  default: false
217
217
  },
218
+ msgCode: {
219
+ type: String,
220
+ default: 'notification_type'
221
+ },
218
222
  userId: {
219
223
  type: String,
220
224
  default: ''
@@ -5,7 +5,7 @@
5
5
  <em-input v-model="form.pendingUserNames" label-width="90" label="当前办理人" readonly /> -->
6
6
  <Message
7
7
  ref="message"
8
- :code="'notification_type'"
8
+ :code="msgCode"
9
9
  :baseUrl="baseUrl"
10
10
  :showCheckType="false"
11
11
  :showMsg="true"
@@ -44,6 +44,10 @@ export default {
44
44
  props: {
45
45
  baseUrl: String,
46
46
  businessId: String,
47
+ msgCode: {
48
+ type: String,
49
+ default: 'notification_type'
50
+ },
47
51
  appId:{type:String,default:''}
48
52
  },
49
53
  data() {
@@ -82,7 +82,7 @@
82
82
  <Message
83
83
  ref="message"
84
84
  v-if="showMessage"
85
- :code="'notification_type'"
85
+ :code="msgCode"
86
86
  :baseUrl="baseUrl"
87
87
  :readOnlyNotificationType="readOnlyNotificationType"
88
88
  :notificationMessageReadOnly="notificationMessageReadOnly"
@@ -138,6 +138,10 @@ export default {
138
138
  type: [String, Number],
139
139
  default: 0
140
140
  },
141
+ msgCode: {
142
+ type: String,
143
+ default: 'notification_type'
144
+ },
141
145
  esign: {
142
146
  type: Boolean,
143
147
  default: false
package/src/index.js CHANGED
@@ -105,7 +105,7 @@ if (typeof window !== 'undefined' && window.Vue) {
105
105
  }
106
106
 
107
107
  export default {
108
- version: '0.3.62',
108
+ version: '0.3.63',
109
109
  install,
110
110
  Button,
111
111
  ButtonGroup,