gcs-ui-lib 1.2.40 → 1.2.41

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,6 +1,6 @@
1
1
  {
2
2
  "name": "gcs-ui-lib",
3
- "version": "1.2.40",
3
+ "version": "1.2.41",
4
4
  "private": false,
5
5
  "main": "./lib/gcs-ui-lib.common.js",
6
6
  "scripts": {
@@ -6,7 +6,7 @@
6
6
  class="m-b-s"
7
7
  :content="$l('补填规则检测')"
8
8
  />
9
- <el-form class="label-width-8em description-b-s" :label-width="'8em'">
9
+ <el-form class="label-width-8em description-b-s" :label-width="'14em'">
10
10
  <el-form-item :label="$l('数据来源')" prop="description">
11
11
  <el-radio-group v-model="searchData.radio" @change="handleRadio">
12
12
  <el-radio :label="'SelectEntries'">{{ $l("选择流水") }}</el-radio>
@@ -11,7 +11,7 @@
11
11
  children: 'children',
12
12
  label: nodeName,
13
13
  value: nodeKey,
14
- disabled: (data) => !Number(data.activeFlag || 0) || data.disabled,
14
+ disabled: 'disabled',
15
15
  }"
16
16
  >
17
17
  </CLSelectTree>
@@ -161,6 +161,7 @@ export default {
161
161
  };
162
162
  const data = await getPaymentCategory(params);
163
163
  this.handlePaymentCategoryDataData(data, directions);
164
+ console.log(data, 'data')
164
165
  this.treeData = data;
165
166
  },
166
167