vue2-client 1.6.36 → 1.6.37

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/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+ **1.6.37 -2023-05-25 @江超**
5
+ - 地址搜索框允许自己设置坐标字段名
6
+
4
7
  **1.6.36 -2023-05-25 @江超**
5
8
  - 地址搜索框允许显示表格列
6
9
  - 提取树选择框组件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.6.36",
3
+ "version": "1.6.37",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -48,11 +48,11 @@
48
48
  <a-form-model-item
49
49
  v-if="item.formType ==='addressSearch'"
50
50
  label="坐标字段名">
51
- <a-input :disabled="true" :value="`${item.key}_lng_lat`">
51
+ <a-input :value="`${item.key}_lng_lat`">
52
52
  <a-popover slot="suffix" placement="bottom" title="坐标字段名">
53
53
  <template slot="content">
54
54
  <p>表单类型为地点搜索框时:</p>
55
- <p>新增/修改表单内,字段名称会存放地址名称,坐标字段名会存放坐标信息</p>
55
+ <p>新增/修改表单时,字段名称会存放地址名称,坐标字段名会存放坐标信息</p>
56
56
  </template>
57
57
  <a-icon style="color: rgba(0,0,0,.45)" type="info-circle"/>
58
58
  </a-popover>