n20-common-lib 1.3.182 → 1.3.183
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 +1 -1
- package/src/components/Filters/index.vue +6 -1
- package/src/components/InputNumber/index.vue +2 -4
- package/style/index.css +3 -3
- package/theme/blue.css +2 -2
- package/theme/cctcRed.css +2 -2
- package/theme/green.css +2 -2
- package/theme/lightBlue.css +2 -2
- package/theme/orange.css +2 -2
- package/theme/purple.css +2 -2
- package/theme/red.css +2 -2
- package/theme/yellow.css +2 -2
package/package.json
CHANGED
|
@@ -43,7 +43,12 @@
|
|
|
43
43
|
</template>
|
|
44
44
|
<template v-else-if="type === 'remote'">
|
|
45
45
|
<!-- 服务端保存筛选条件组 -->
|
|
46
|
-
<el-form-item
|
|
46
|
+
<el-form-item
|
|
47
|
+
v-for="(item, i) in remoteList"
|
|
48
|
+
:key="(item.slotName || item.label || '') + i"
|
|
49
|
+
class="m-b"
|
|
50
|
+
:label="item.label"
|
|
51
|
+
>
|
|
47
52
|
<slot v-if="item.slotName" :name="item.slotName"></slot>
|
|
48
53
|
<form-item-input v-else :form="form" :item="item" />
|
|
49
54
|
</el-form-item>
|
|
@@ -110,10 +110,8 @@ export default {
|
|
|
110
110
|
this.valueStr = this.num2str(val)
|
|
111
111
|
return
|
|
112
112
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
this.preValue = this.valueStr
|
|
116
|
-
}
|
|
113
|
+
this.valueStr = this.num2str(val)
|
|
114
|
+
this.preValue = this.valueStr
|
|
117
115
|
},
|
|
118
116
|
immediate: true
|
|
119
117
|
}
|