leisure-common 0.5.25 → 0.5.26
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/le-com-company/src/main.vue +12 -2
- package/package.json +2 -2
|
@@ -64,7 +64,15 @@ export default {
|
|
|
64
64
|
{ prop: "name", label: "名称" },
|
|
65
65
|
{ prop: "title", label: "系统标题" },
|
|
66
66
|
{ prop: "phone", label: "手机" },
|
|
67
|
-
// {
|
|
67
|
+
// {
|
|
68
|
+
// prop: "phone",
|
|
69
|
+
// label: "地区",
|
|
70
|
+
// type: "area",
|
|
71
|
+
// attr: { level: 3 },
|
|
72
|
+
// event: {
|
|
73
|
+
// areaChange: this.handleAreaChange,
|
|
74
|
+
// },
|
|
75
|
+
// },
|
|
68
76
|
{
|
|
69
77
|
prop: "note",
|
|
70
78
|
label: "备注",
|
|
@@ -108,12 +116,14 @@ export default {
|
|
|
108
116
|
this.$refs.commonPage.closeDialog();
|
|
109
117
|
},
|
|
110
118
|
formatter(row, colomn, data) {
|
|
111
|
-
console.log("ddd");
|
|
112
119
|
if (data) {
|
|
113
120
|
return this.parseTime(data);
|
|
114
121
|
}
|
|
115
122
|
return "";
|
|
116
123
|
},
|
|
124
|
+
handleAreaChange(item) {
|
|
125
|
+
console.log(item);
|
|
126
|
+
},
|
|
117
127
|
saveForm(params, callBack) {
|
|
118
128
|
if (params && params.id && params.id.length > 0) {
|
|
119
129
|
companyEdit(params).then((response) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "leisure-common",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.26",
|
|
4
4
|
"description": "leisure-common是京心数据在leisure-core基础上开发的一套后台管理系统基于故事的电商行业组件库,封装了大量实用的UI控件模板,方便开发者快速搭建前端应用",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "北方乐逍遥(zcx7878)",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"registry": "https://registry.npmjs.org/"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"leisure-core": "^0.5.
|
|
16
|
+
"leisure-core": "^0.5.26"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {}
|
|
19
19
|
}
|