|
@@ -78,9 +78,11 @@
|
|
<vxe-table-column field="longitude" title="经度"></vxe-table-column>
|
|
<vxe-table-column field="longitude" title="经度"></vxe-table-column>
|
|
<vxe-table-column field="latitude" title="纬度"></vxe-table-column>
|
|
<vxe-table-column field="latitude" title="纬度"></vxe-table-column>
|
|
<vxe-table-column field="provinceEnum" title="省份" :formatter="provinceEnumFormat"></vxe-table-column>
|
|
<vxe-table-column field="provinceEnum" title="省份" :formatter="provinceEnumFormat"></vxe-table-column>
|
|
- <vxe-table-column field="sftpChanelId" title="ftpt通道名称" :formatter="ftpChanelIdFormat"></vxe-table-column>
|
|
|
|
- <vxe-table-column field="sftpUrl" title="ftp扫描路径"></vxe-table-column>
|
|
|
|
- <vxe-table-column field="sftpBackupUrl" title="ftp备份路径"></vxe-table-column>
|
|
|
|
|
|
+ <vxe-table-column field="sftpChanelId" title="sftp通道名称" :formatter="ftpChanelIdFormat"></vxe-table-column>
|
|
|
|
+ <vxe-table-column field="sftpUrl" title="sftp扫描路径"></vxe-table-column>
|
|
|
|
+ <vxe-table-column field="sftpBackupUrl" title="sftp备份路径"></vxe-table-column>
|
|
|
|
+ <vxe-table-column field="sftpSendUrl" title="sftp下发路径"></vxe-table-column>
|
|
|
|
+
|
|
</vxe-table>
|
|
</vxe-table>
|
|
<vxe-pager
|
|
<vxe-pager
|
|
background
|
|
background
|
|
@@ -181,6 +183,13 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+ <el-row class="mb4">
|
|
|
|
+ <el-col :span="24">
|
|
|
|
+ <el-form-item label="sftp下发路径">
|
|
|
|
+ <el-input style="width: 100%" v-model="form.sftpSendUrl" maxlength="50"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
</el-form>
|
|
@@ -211,7 +220,8 @@ export default {
|
|
provinceEnum: '',
|
|
provinceEnum: '',
|
|
sftpChanelId: '',
|
|
sftpChanelId: '',
|
|
sftpUrl: '',
|
|
sftpUrl: '',
|
|
- sftpBackupUrl: ''
|
|
|
|
|
|
+ sftpBackupUrl: '',
|
|
|
|
+ sftpSendUrl: ''
|
|
},
|
|
},
|
|
title: "",
|
|
title: "",
|
|
// 是否显示弹出层
|
|
// 是否显示弹出层
|