@zscreate/zhxy-app-component 1.0.89 → 1.0.91

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 (54) hide show
  1. package/components/dying318-picker/Picker.nvue +10 -10
  2. package/components/dying318-picker/Picker.vue +12 -12
  3. package/components/dying318-picker/Pickers.vue +320 -320
  4. package/components/easydrag-sort/easydrag-sort.vue +247 -247
  5. package/components/evan-form/evan-form.vue +3 -3
  6. package/components/evan-form/utils.js +3 -3
  7. package/components/evan-form-item/evan-form-item.vue +1583 -1575
  8. package/components/evan-form-item/mixins/computedMixin.js +43 -43
  9. package/components/evan-form-item/mixins/pubSubMixin.js +105 -105
  10. package/components/evan-form-item/mixins/validateFormMixin.js +54 -54
  11. package/components/evan-form-item/mixins/valueChangeMixin.js +65 -65
  12. package/components/evan-form-item/utilForForm.js +34 -34
  13. package/components/evan-form-item/utils.js +6 -6
  14. package/components/form-container/data.js +708 -708
  15. package/components/form-container/form-container.vue +985 -985
  16. package/components/jin-edit/jin-edit.vue +326 -326
  17. package/components/jin-edit/jin-icons.vue +47 -47
  18. package/components/jin-edit/readme.md +64 -64
  19. package/components/lb-picker/index.vue +286 -286
  20. package/components/signatrue-write/signatrue-write.vue +220 -220
  21. package/components/t-color-picker/t-color-picker.vue +781 -781
  22. package/components/uni-datetime-picker/components/uni-datetime-picker/calendar-item.vue +181 -181
  23. package/components/uni-datetime-picker/components/uni-datetime-picker/calendar.vue +807 -807
  24. package/components/uni-datetime-picker/components/uni-datetime-picker/i18n/en.json +15 -15
  25. package/components/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js +7 -7
  26. package/components/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json +7 -7
  27. package/components/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hant.json +8 -8
  28. package/components/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue +924 -924
  29. package/components/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker.vue +965 -965
  30. package/components/uni-datetime-picker/components/uni-datetime-picker/util.js +409 -409
  31. package/components/uni-datetime-picker/components/uni-datetime-picker/year-mont-picker.vue +866 -866
  32. package/components/uni-datetime-picker/components/uni-datetime-picker/year-picker.vue +248 -248
  33. package/components/uni-icons/icons.js +95 -95
  34. package/components/uni-icons/uni-icons.vue +56 -56
  35. package/components/uni-popup/message.js +23 -23
  36. package/components/uni-popup/popup.js +3 -3
  37. package/components/uni-popup/uni-popup-dialog.vue +242 -242
  38. package/components/uni-popup/uni-popup-message.vue +92 -92
  39. package/components/uni-popup/uni-popup-share.vue +89 -89
  40. package/components/uni-popup/uni-popup.vue +296 -296
  41. package/components/uni-rate/uni-rate.vue +361 -361
  42. package/components/uni-transition/uni-transition.vue +250 -250
  43. package/components/uploadFile/uploadFile.vue +124 -124
  44. package/components/viewcomponents/applicateGrid.vue +96 -96
  45. package/components/viewcomponents/card.vue +166 -166
  46. package/components/viewcomponents/formCard.vue +81 -81
  47. package/components/viewcomponents/infocell.vue +53 -53
  48. package/components/viewcomponents/navsearch.vue +59 -59
  49. package/components/viewcomponents/newscontent.vue +84 -84
  50. package/components/xp-picker/util.js +104 -104
  51. package/components/xp-picker/xp-picker.vue +326 -326
  52. package/package.json +1 -1
  53. package/static/uni.css +1449 -1449
  54. package/utils/util.js +186 -186
@@ -7,7 +7,7 @@
7
7
  <view class="picker-mask" @click="cancel" :style="{height: screenHeight}"></view>
8
8
  <view class="picker-panel" :style="pickerPanelTranslate">
9
9
  <view class="picker-action">
10
- <text class="cancel" @click="cancel" :style="pickerStyle.cancel">取消</text>
10
+ <text class="cancel" @click="cancel" :style="pickerStyle.cancel">取消</text>
11
11
  <text class="confirm" @click="confirm" :style="pickerStyle.confirm">确定</text>
12
12
  </view>
13
13
  <view class="picker-content">
@@ -32,7 +32,7 @@
32
32
  </view>
33
33
  </template>
34
34
 
35
- <script>
35
+ <script>
36
36
  import navsearch from '../viewcomponents/navsearch.vue'
37
37
  export default {
38
38
  props: {
@@ -96,9 +96,9 @@
96
96
  startPickedIndex: 0,
97
97
  scrollingColumnIndex: 0,
98
98
  }
99
- },
100
- components:{
101
- navsearch
99
+ },
100
+ components:{
101
+ navsearch
102
102
  },
103
103
  watch: {
104
104
  pickerList() {
@@ -141,10 +141,10 @@
141
141
  },
142
142
  mounted() {
143
143
  },
144
- methods: {
145
- search(v){
146
- console.log(v)
147
- console.log('===')
144
+ methods: {
145
+ search(v){
146
+ console.log(v)
147
+ console.log('===')
148
148
  },
149
149
  stopEvent(event) {
150
150
  event.stopPropagation()
@@ -340,7 +340,7 @@
340
340
  right: 0;
341
341
  bottom: 0;
342
342
  z-index: 999;
343
- width: 750r
343
+ width: 750r
344
344
  px;
345
345
  background-color: rgba(0, 0, 0, .6);
346
346
  }
@@ -8,7 +8,7 @@
8
8
  <div class="picker-panel" :class="{'picker-panel-translate': show}">
9
9
  <div class="picker-action">
10
10
  <p class="cancel" @click="cancel" :style="pickerStyle.cancel">取消</p>
11
- <!-- 搜索框 -->
11
+ <!-- 搜索框 -->
12
12
  <!-- <navsearch @search="search" @handleInputChange="navsearchChange()"></navsearch> -->
13
13
  <p class="confirm" @click="confirm" :style="pickerStyle.confirm">确定111</p>
14
14
  </div>
@@ -38,7 +38,7 @@
38
38
  </div>
39
39
  </template>
40
40
 
41
- <script>
41
+ <script>
42
42
  import navsearch from '../viewcomponents/navsearch.vue'
43
43
  export default {
44
44
  props: {
@@ -91,9 +91,9 @@
91
91
  value: Number,
92
92
  default: 1
93
93
  },
94
- },
95
- components:{
96
- navsearch
94
+ },
95
+ components:{
96
+ navsearch
97
97
  },
98
98
  data() {
99
99
  return {
@@ -114,7 +114,7 @@
114
114
  this.init()
115
115
  },
116
116
  },
117
- computed: {
117
+ computed: {
118
118
 
119
119
  pickerItemStyle() {
120
120
  return function(pickedIndex, itemIndex) {
@@ -134,9 +134,9 @@
134
134
  },
135
135
  mounted() {
136
136
  },
137
- methods: {
138
- search(val){
139
- console.log(val)
137
+ methods: {
138
+ search(val){
139
+ console.log(val)
140
140
  },
141
141
  init() {
142
142
  if (Array.isArray(this.pickerList[0])) {
@@ -315,9 +315,9 @@
315
315
  };
316
316
  </script>
317
317
 
318
- <style lang="scss" scoped>
319
- .def-width{
320
- width: 100%;
318
+ <style lang="scss" scoped>
319
+ .def-width{
320
+ width: 100%;
321
321
  }
322
322
  .picker-pop {
323
323
  .picker-mask {