vue2-client 1.2.30 → 1.2.31

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,9 +1,10 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **##1.2.30 -2022-04-02 @张振宇**
4
+ **##1.2.30 -1.2.31 -2022-04-02 @张振宇**
5
5
  - 功能修改:
6
6
  - 查询配置页面bug修改
7
+ - 表单配置页面bug修改
7
8
 
8
9
  **##1.2.28 -2022-03-29 @朱子峰**
9
10
  - 功能修改:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.2.30",
3
+ "version": "1.2.31",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -564,7 +564,7 @@ export default {
564
564
  editColumnItem (key, index) {
565
565
  if (this.itemMap[key]) {
566
566
  this.type = '修改'
567
- this.item = this.itemMap[key]
567
+ this.item = Object.assign({ formType: 'input', type: 'string' }, this.itemMap[key])
568
568
  this.selectIndex = index
569
569
  this.dataColumnVisible = true
570
570
  } else {