230 lines
6.8 KiB
Vue
230 lines
6.8 KiB
Vue
<template>
|
|
<div>
|
|
<!-- <el-button @click="dialogVisible = true">网络管理</el-button> -->
|
|
|
|
<el-dialog
|
|
title="网络管理"
|
|
:visible.sync="dialogVisible"
|
|
width="40%"
|
|
:before-close="handleClose"
|
|
>
|
|
<h3>内网网卡</h3>
|
|
<el-divider></el-divider>
|
|
<el-table :data="tableData" style="width: 100%" border>
|
|
<el-table-column prop="wlgl_nw_name" label="网卡名称">
|
|
<template slot-scope="scope">
|
|
<el-select v-model="scope.row.wlgl_nw_name" placeholder="">
|
|
<el-option
|
|
v-for="item in options1"
|
|
:key="item"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
>
|
|
</el-option>
|
|
</el-select>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="wlgl_nw_ip" label="IPV4地址">
|
|
<template slot-scope="scope">
|
|
<div class="net_setting">
|
|
<el-row>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_ip1"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">. </el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_ip2"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_ip3"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_ip4"></el-input>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="wlgl_nw_zwym" label="IPV4掩码">
|
|
<template slot-scope="scope">
|
|
<div class="net_setting">
|
|
<el-row>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_zwym1"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">. </el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_zwym2"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_zwym3"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_nw_zwym4"></el-input>
|
|
</el-col>
|
|
</el-row>
|
|
</div> </template
|
|
></el-table-column>
|
|
</el-table>
|
|
<h3>外网网卡</h3>
|
|
<el-divider></el-divider>
|
|
<el-table :data="tableData1" style="width: 100%" border>
|
|
<el-table-column prop="wlgl_ww_name" label="网卡名称">
|
|
<template slot-scope="scope">
|
|
<el-select v-model="scope.row.wlgl_ww_name" placeholder="">
|
|
<el-option
|
|
v-for="item in options1"
|
|
:key="item"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
>
|
|
</el-option>
|
|
</el-select>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="wlgl_ww_ip" label="IPV4地址">
|
|
<template slot-scope="scope">
|
|
<div class="net_setting">
|
|
<el-row>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_ip1"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">. </el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_ip2"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_ip3"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_ip4"></el-input>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="wlgl_ww_zwym" label="IPV4掩码">
|
|
<template slot-scope="scope">
|
|
<div class="net_setting">
|
|
<el-row>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_zwym1"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">. </el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_zwym2"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_zwym3"></el-input>
|
|
</el-col>
|
|
<el-col :span="1">.</el-col>
|
|
<el-col :span="5">
|
|
<el-input v-model="wlgl_ww_zwym4"></el-input>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="dialogVisible = false"
|
|
>保存</el-button
|
|
>
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
wlgl_nw_ip1: "192",
|
|
wlgl_nw_ip2: "168",
|
|
wlgl_nw_ip3: "1",
|
|
wlgl_nw_ip4: "1",
|
|
wlgl_nw_zwym1: "255",
|
|
wlgl_nw_zwym2: "255",
|
|
wlgl_nw_zwym3: "255",
|
|
wlgl_nw_zwym4: "0",
|
|
wlgl_ww_ip1: "",
|
|
wlgl_ww_ip2: "",
|
|
wlgl_ww_ip3: "",
|
|
wlgl_ww_ip4: "",
|
|
wlgl_ww_zwym1: "",
|
|
wlgl_ww_zwym2: "",
|
|
wlgl_ww_zwym3: "",
|
|
wlgl_ww_zwym4: "",
|
|
options1: [
|
|
{
|
|
label: "有线区网闸(内网)",
|
|
value: "有线区网闸(内网)",
|
|
},
|
|
{
|
|
label: "无线区网闸(内网)",
|
|
value: "无线区网闸(内网)",
|
|
},
|
|
],
|
|
options2: [
|
|
{
|
|
label: "有线区网闸(外网)",
|
|
value: "有线区网闸(外网)",
|
|
},
|
|
{
|
|
label: "无线区网闸(外网)",
|
|
value: "无线区网闸(外网)",
|
|
},
|
|
],
|
|
dialogVisible: true,
|
|
tableData: [
|
|
{
|
|
wlgl_nw_name: "有线区网闸(内网)",
|
|
wlgl_nw_ip: "192.168.1.1",
|
|
wlgl_nw_zwym: "255.255.255.0",
|
|
},
|
|
],
|
|
tableData1: [
|
|
{
|
|
wlgl_ww_name: "有线区网闸(外网)",
|
|
wlgl_ww_ip: "",
|
|
wlgl_ww_zwym: "",
|
|
},
|
|
],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped lang="less">
|
|
/deep/ .net_setting {
|
|
.el-input__inner {
|
|
height: 30px;
|
|
text-align: center;
|
|
padding: 0;
|
|
}
|
|
|
|
.el-col-1 {
|
|
padding: 0px 2px;
|
|
color: black;
|
|
text-align: left;
|
|
line-height: 45px;
|
|
height: 20px;
|
|
}
|
|
|
|
.el-col-5 {
|
|
width: 43px;
|
|
height: 30px;
|
|
}
|
|
|
|
.el-col-24 {
|
|
padding-right: 152px;
|
|
}
|
|
}
|
|
</style>
|