af-mobile-client-vue3 1.0.74 → 1.0.75

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,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.0.74",
4
+ "version": "1.0.75",
5
5
  "description": "Vue + Vite component lib",
6
6
  "license": "MIT",
7
7
  "engines": {
@@ -190,6 +190,7 @@ function onLoad() {
190
190
  conditionParams: {
191
191
  $queryValue: searchVal,
192
192
  ...conditionParams.value,
193
+ ...fixQueryForm,
193
194
  },
194
195
  sortField: orderVal?.value,
195
196
  sortOrder: sortordVal?.value,
@@ -45,7 +45,7 @@ const colFieldNames = {
45
45
  }
46
46
 
47
47
  // 查询条件参数 !!!!!建议最后点击确认的时候完成这个的整理
48
- const conditionParams = ref({ ...props.fixQueryForm })
48
+ const conditionParams = ref({})
49
49
 
50
50
  // 重置某个选项
51
51
  function resetOptionItem(type) {
@@ -57,7 +57,6 @@ function resetOption() {
57
57
  currentOrderVal.value = undefined
58
58
  currentSortordVal.value = undefined
59
59
  // 条件参数
60
- conditionParams.value = { ...props.fixQueryForm }
61
60
  }
62
61
  function checkOrderOption() {
63
62
  let isCheck = true
@@ -84,7 +84,7 @@ function deleteRow(result) {
84
84
  <template #layout_content>
85
85
  <XCellList
86
86
  :config-name="configName"
87
- :fix-query-form="{o_f_oper_name:'edu_test'}"
87
+ :fix-query-form="{o_f_oper_name:'edu_test1'}"
88
88
  :id-key="idKey"
89
89
  @to-detail="toDetail"
90
90
  @delete-row="deleteRow"