1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <t-input label="站点名称" placeholder="请输入站点名称" model:value="{{diName}}" />
| <t-input label="MN编号" placeholder="请输入MN编号" model:value="{{diMnCode}}" />
| <t-input label="设备类型" placeholder="请输入设备类型" model:value="{{diType}}" />
| <t-input label="供应商" placeholder="请输入供应商" model:value="{{diSupplier}}" />
| <t-input label="运维商" placeholder="请输入运维商" model:value="{{diMaintainer}}" />
| <t-cell title="是否上线">
| <t-switch
| model:value="{{diRunningStatus}}"
| defaultValue="{{true}}"
| label="{{['是', '否']}}"
| slot="note"
| />
| </t-cell>
| <t-cell title="是否拆除">
| <t-switch
| model:value="{{diRemoved}}"
| defaultValue="{{false}}"
| label="{{['是', '否']}}"
| slot="note"
| />
| </t-cell>
|
|