@ebiz/designer-components 0.1.104 → 0.1.105

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 CHANGED
@@ -87615,6 +87615,10 @@ const qht = {
87615
87615
  kind: {
87616
87616
  type: String,
87617
87617
  default: "DAILY"
87618
+ },
87619
+ name: {
87620
+ type: String,
87621
+ default: ""
87618
87622
  }
87619
87623
  },
87620
87624
  emits: ["api-success"],
@@ -87691,6 +87695,7 @@ const qht = {
87691
87695
  },
87692
87696
  questionList: [],
87693
87697
  queryParams: {
87698
+ name: n.name,
87694
87699
  kind: n.kind,
87695
87700
  status: !0
87696
87701
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebiz/designer-components",
3
- "version": "0.1.104",
3
+ "version": "0.1.105",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -258,7 +258,8 @@ const props = defineProps({
258
258
  employeeId: { type: Number, default: 0 },
259
259
  no: { type: String, default: '' },
260
260
  btnText: { type: String, default: '' },
261
- kind: { type: String, default: 'DAILY' }
261
+ kind: { type: String, default: 'DAILY' },
262
+ name: { type: String, default: '' }
262
263
  })
263
264
 
264
265
  const {employeeId}=vue.toRefs(props)
@@ -313,6 +314,7 @@ const state = vue.reactive({
313
314
  },
314
315
  questionList: [],
315
316
  queryParams: {
317
+ name: props.name,
316
318
  kind: props.kind,
317
319
  status: true
318
320
  },