Skip to content

Commit 64bd344

Browse files
author
spt
committed
1 parent aa44005 commit 64bd344

13 files changed

+464
-2
lines changed

src/assets/image/close_gray.png

373 Bytes
Loading

src/assets/image/companyIcon.png

2.92 KB
Loading

src/assets/image/invalid-name@3x.png

1.95 KB
Loading

src/assets/image/login.png

356 KB
Loading

src/assets/image/search-gray.png

1.19 KB
Loading

src/assets/image/已启用.png

1.92 KB
Loading

src/assets/image/已失效.png

2.77 KB
Loading
1.26 KB
Loading

src/assets/image/平台图标.png

2.15 KB
Loading
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
import { Vue, Prop, Component } from 'vue-property-decorator'
2+
@Component({
3+
name: 'platform-detail'
4+
})
5+
export default class PlatformDetailComponent extends Vue {
6+
_detailInfo: any;
7+
@Prop()
8+
set detailInfo(value: any) {
9+
this._detailInfo = value;
10+
this.getDetail();
11+
}
12+
get detailInfo() {
13+
return this._detailInfo;
14+
}
15+
@Prop()
16+
statusProp: any;
17+
companyInfo: any = {};
18+
resSetList: any[] = [];
19+
detailAll: any[] = [];
20+
showFalse: boolean = false;
21+
tenantModalShow: boolean = false;
22+
tenantModal: String = "";
23+
tenantList: any[] = [];
24+
servicePackageModalShow: boolean = false;
25+
servicePackageModal: String = "";
26+
servicePackageList: any[] = [];
27+
accountDetails: any[] = [];
28+
accountSearch: String = "";
29+
multiplFalse: boolean = false;
30+
// 通过对应的集团 or 公司获取公司列表
31+
getDetail() {
32+
}
33+
formatDate(item) {
34+
return (item.substr(0, 4) + '-' + item.substr(4, 2) + '-' + item.substr(6, 2));
35+
}
36+
// 复制
37+
copy() {
38+
}
39+
edit() {
40+
}
41+
del() {
42+
}
43+
showAll(index) {
44+
this.resSetList[index].hover = true;
45+
console.log('in');
46+
}
47+
hideAll(index) {
48+
this.resSetList[index].hover = false;
49+
console.log('out');
50+
}
51+
addGroup() {
52+
this.tenantModalShow = true;
53+
}
54+
addServicePackage() {
55+
this.servicePackageModalShow = true;
56+
}
57+
58+
delTenant(id) {
59+
60+
}
61+
delPackage(id) {
62+
63+
}
64+
searchAccount() {
65+
66+
}
67+
}
68+
69+

0 commit comments

Comments
 (0)