@bsgoal/common 1.6.5 → 1.6.6
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/dist/index.mjs +200 -201
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/bsgoal-base-search/index.vue +3 -3
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: canlong.shen
|
|
3
3
|
* @Date: 2023-04-13 09:38:11
|
|
4
4
|
* @LastEditors: canlong.shen
|
|
5
|
-
* @LastEditTime: 2023-
|
|
5
|
+
* @LastEditTime: 2023-05-18 11:25:14
|
|
6
6
|
* @FilePath: \common\src\components\bsgoal-base-search\index.vue
|
|
7
7
|
* @Description: 表格查询 公共组件
|
|
8
8
|
*
|
|
@@ -263,8 +263,9 @@ const triggerOperationFold = (status = false) => {
|
|
|
263
263
|
* @return {*}
|
|
264
264
|
*/
|
|
265
265
|
const triggerValueChange = (type, prop) => {
|
|
266
|
+
|
|
266
267
|
// 触发查询
|
|
267
|
-
|
|
268
|
+
triggerOperationSearch()
|
|
268
269
|
const emitValue = {
|
|
269
270
|
type,
|
|
270
271
|
prop,
|
|
@@ -314,7 +315,6 @@ const triggerValueChange = (type, prop) => {
|
|
|
314
315
|
v-model="model[prop]"
|
|
315
316
|
:placeholder="placeholderSet(type, label, placeholder)"
|
|
316
317
|
:clearable="clearable"
|
|
317
|
-
@change="triggerValueChange(type, prop)"
|
|
318
318
|
/>
|
|
319
319
|
</template>
|
|
320
320
|
<!-- / input 输入框组件 -->
|