|
|
@ -1,70 +1,82 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<el-card>
|
|
|
|
<el-card>
|
|
|
|
|
|
|
|
<el-collapse v-model="activeNames" @change="handleChange">
|
|
|
|
<el-descriptions class="margin-top" title="数据同步设置" :column="1" :size="100" border>
|
|
|
|
<el-collapse-item title="数据同步设置" name="1">
|
|
|
|
|
|
|
|
<el-descriptions
|
|
|
|
|
|
|
|
class="margin-top"
|
|
|
|
|
|
|
|
title="数据同步设置"
|
|
|
|
|
|
|
|
:column="1"
|
|
|
|
|
|
|
|
:size="100"
|
|
|
|
|
|
|
|
border
|
|
|
|
|
|
|
|
>
|
|
|
|
<template slot="extra">
|
|
|
|
<template slot="extra">
|
|
|
|
<el-button type="primary" size="small" @click="saveConfig()">保存</el-button>
|
|
|
|
<el-button type="primary" size="small" @click="saveConfig()"
|
|
|
|
|
|
|
|
>保存</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label"> 同步服务 </template>
|
|
|
|
同步服务
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
<el-col :span="6" class="el-col">
|
|
|
|
<el-col :span="6" class="el-col">
|
|
|
|
|
|
|
|
|
|
|
|
<el-switch
|
|
|
|
<el-switch
|
|
|
|
v-model="configQuery.downstreamEnable"
|
|
|
|
v-model="configQuery.downstreamEnable"
|
|
|
|
active-text="是否启用数据同步">
|
|
|
|
active-text="是否启用数据同步"
|
|
|
|
|
|
|
|
>
|
|
|
|
</el-switch>
|
|
|
|
</el-switch>
|
|
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="14" class="el-col">
|
|
|
|
<el-col :span="14" class="el-col">
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<span style="color: red;">说明: 修改同步参数时,请关闭数据同步服务 </span>
|
|
|
|
<span style="color: red"
|
|
|
|
|
|
|
|
>说明: 修改同步参数时,请关闭数据同步服务
|
|
|
|
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label"> 地址设置 </template>
|
|
|
|
地址设置
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<span>服务地址: </span>
|
|
|
|
<span>服务地址: </span>
|
|
|
|
<el-input
|
|
|
|
<el-input
|
|
|
|
style="width: 50%"
|
|
|
|
style="width: 50%"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
v-model="configQuery.syncIp" :disabled="configQuery.downstreamEnable"
|
|
|
|
v-model="configQuery.syncIp"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
<el-button type="primary" size="small" @click="testConnect()" style="margin-left: 20px;"
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
@click="testConnect()"
|
|
|
|
|
|
|
|
style="margin-left: 20px"
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
:loading="testLoading">测试连通
|
|
|
|
:loading="testLoading"
|
|
|
|
|
|
|
|
>测试连通
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions>
|
|
|
|
</el-descriptions>
|
|
|
|
<el-descriptions class="margin-top" title="上传至UDI自助平台基础数据" :column="1" :size="100"
|
|
|
|
</el-collapse-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-collapse-item title="上传至UDI自助平台基础数据" name="2">
|
|
|
|
|
|
|
|
<el-descriptions
|
|
|
|
|
|
|
|
class="margin-top"
|
|
|
|
|
|
|
|
title="上传至UDI自助平台基础数据"
|
|
|
|
|
|
|
|
:column="1"
|
|
|
|
|
|
|
|
:size="100"
|
|
|
|
style="margin-top: 40px"
|
|
|
|
style="margin-top: 40px"
|
|
|
|
border>
|
|
|
|
border
|
|
|
|
|
|
|
|
>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label"> 参数设置 </template>
|
|
|
|
参数设置
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<span>数据上传时间间隔(单位:分钟): </span>
|
|
|
|
<span>数据上传时间间隔(单位:分钟): </span>
|
|
|
@ -72,30 +84,36 @@
|
|
|
|
style="width: 100px"
|
|
|
|
style="width: 100px"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
type="number"
|
|
|
|
type="number"
|
|
|
|
v-model="configQuery.syncTime" :disabled="configQuery.downstreamEnable"
|
|
|
|
v-model="configQuery.syncTime"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
<span style="margin-left: 30px;">延时上传(单位:分钟): </span>
|
|
|
|
<span style="margin-left: 30px"
|
|
|
|
|
|
|
|
>延时上传(单位:分钟): </span
|
|
|
|
|
|
|
|
>
|
|
|
|
<el-input
|
|
|
|
<el-input
|
|
|
|
style="width: 100px"
|
|
|
|
style="width: 100px"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
type="number"
|
|
|
|
type="number"
|
|
|
|
v-model="configQuery.delaySyncTime" :disabled="configQuery.downstreamEnable"
|
|
|
|
v-model="configQuery.delaySyncTime"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
|
|
|
|
|
|
|
|
<span style="margin-left: 30px;">数据下载时间间隔(单位:分钟): </span>
|
|
|
|
<span style="margin-left: 30px"
|
|
|
|
|
|
|
|
>数据下载时间间隔(单位:分钟): </span
|
|
|
|
|
|
|
|
>
|
|
|
|
<el-input
|
|
|
|
<el-input
|
|
|
|
style="width: 100px"
|
|
|
|
style="width: 100px"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
type="number"
|
|
|
|
type="number"
|
|
|
|
v-model="configQuery.syncDownloadTime" :disabled="configQuery.downstreamEnable"
|
|
|
|
v-model="configQuery.syncDownloadTime"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-descriptions-item>-->
|
|
|
|
<!-- <el-descriptions-item>-->
|
|
|
@ -106,72 +124,147 @@
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label"> 单据类型 </template>
|
|
|
|
单据类型
|
|
|
|
<!-- <el-checkbox v-model="configQuery.typeBus" :disabled="configQuery.downstreamEnable">业务单据类型</el-checkbox>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.typeBus" :disabled="configQuery.downstreamEnable">业务单据类型</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable">扫码单据类型</el-checkbox>
|
|
|
|
<el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable">扫码单据类型</el-checkbox>
|
|
|
|
<el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable">第三方单据类型
|
|
|
|
<el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable">第三方单据类型</el-checkbox> -->
|
|
|
|
</el-checkbox>
|
|
|
|
<el-form :inline="true" :model="configQuery">
|
|
|
|
|
|
|
|
<el-form-item label="业务单据类型">
|
|
|
|
|
|
|
|
<el-select v-model="configQuery.typeBus" placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
|
|
|
><el-form-item label="扫码单据类型">
|
|
|
|
|
|
|
|
<el-select v-model="configQuery.typeScan" placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
|
|
|
><el-form-item label="第三方单据类型">
|
|
|
|
|
|
|
|
<el-select v-model="configQuery.typeThird" placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label"> 基础信息 </template>
|
|
|
|
基础信息
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- <el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable">耗材字典-->
|
|
|
|
<!-- <el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable">耗材字典-->
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
<!-- <el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable">往来单位字典-->
|
|
|
|
<!-- <el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable">往来单位字典-->
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
<el-checkbox v-model="configQuery.basicDept" :disabled="configQuery.downstreamEnable">部门信息</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicInv" :disabled="configQuery.downstreamEnable">仓库字典</el-checkbox>
|
|
|
|
<!-- <el-checkbox v-model="configQuery.basicDept" :disabled="configQuery.downstreamEnable" >部门信息</el-checkbox >
|
|
|
|
<el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable">用户信息</el-checkbox>
|
|
|
|
<el-checkbox v-model="configQuery.basicInv" :disabled="configQuery.downstreamEnable" >仓库字典</el-checkbox >
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable" >用户信息</el-checkbox > -->
|
|
|
|
|
|
|
|
<el-form :inline="true" :model="configQuery">
|
|
|
|
|
|
|
|
<el-form-item label="部门信息">
|
|
|
|
|
|
|
|
<el-select v-model="configQuery.basicDept" placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
|
|
|
><el-form-item label="仓库字典">
|
|
|
|
|
|
|
|
<el-select v-model="configQuery.basicInv" placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
|
|
|
><el-form-item label="用户信息">
|
|
|
|
|
|
|
|
<el-select v-model="configQuery.sysUser" placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label"> 第三方基础信息 </template>
|
|
|
|
|
|
|
|
<!-- <el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable" >第三方产品信息 </el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable" >第三方往来信息 </el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable" >第三方仓库信息 </el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable" >第三方业务单据 </el-checkbox> -->
|
|
|
|
|
|
|
|
<el-form :inline="true" :model="configQuery">
|
|
|
|
|
|
|
|
<el-form-item label="第三方产品信息">
|
|
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
v-model="configQuery.basicThirdProducts"
|
|
|
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
|
|
|
><el-form-item label="第三方往来信息">
|
|
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
v-model="configQuery.basicThirdCorp"
|
|
|
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
|
|
|
><el-form-item label="第三方仓库信息">
|
|
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
v-model="configQuery.basicThirdInv"
|
|
|
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="第三方业务单据">
|
|
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
v-model="configQuery.basicThirdBusOrder"
|
|
|
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option label="完成同步" value="0"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由内到外" value="1"></el-option>
|
|
|
|
|
|
|
|
<el-option label="由外到内" value="2"></el-option>
|
|
|
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
|
|
|
>,
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-descriptions-item>
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label">
|
|
|
|
第三方基础信息
|
|
|
|
国家库DI数据
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable">第三方产品信息
|
|
|
|
<el-checkbox v-model="configQuery.dbDiProducts">DI产品信息</el-checkbox>
|
|
|
|
</el-checkbox>
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable">第三方往来信息
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
首营资质证书
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.companyCert" :disabled="configQuery.downstreamEnable">配送企业
|
|
|
|
</el-checkbox>
|
|
|
|
</el-checkbox>
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable">第三方仓库信息
|
|
|
|
<el-checkbox v-model="configQuery.manufacturerCert" :disabled="configQuery.downstreamEnable">生产企业
|
|
|
|
</el-checkbox>
|
|
|
|
</el-checkbox>
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable">第三方业务单据
|
|
|
|
<el-checkbox v-model="configQuery.productCert" :disabled="configQuery.downstreamEnable">配送产品
|
|
|
|
</el-checkbox>
|
|
|
|
</el-checkbox>
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item> -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-descriptions-item>-->
|
|
|
|
|
|
|
|
<!-- <template slot="label">-->
|
|
|
|
|
|
|
|
<!-- 国家库DI数据-->
|
|
|
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
|
|
|
<!-- <el-checkbox v-model="configQuery.dbDiProducts">DI产品信息</el-checkbox>-->
|
|
|
|
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-descriptions-item>-->
|
|
|
|
|
|
|
|
<!-- <template slot="label">-->
|
|
|
|
|
|
|
|
<!-- 首营资质证书-->
|
|
|
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
|
|
|
<!-- <el-checkbox v-model="configQuery.companyCert" :disabled="configQuery.downstreamEnable">配送企业-->
|
|
|
|
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
|
|
|
|
<!-- <el-checkbox v-model="configQuery.manufacturerCert" :disabled="configQuery.downstreamEnable">生产企业-->
|
|
|
|
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
|
|
|
|
<!-- <el-checkbox v-model="configQuery.productCert" :disabled="configQuery.downstreamEnable">配送产品-->
|
|
|
|
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
</el-collapse-item>
|
|
|
|
<el-descriptions class="margin-top" title="上传至UDI自助平台扫码单据" :column="1" :size="100"
|
|
|
|
|
|
|
|
|
|
|
|
<el-collapse-item title="上传至UDI自助平台扫码单据" name="3">
|
|
|
|
|
|
|
|
<el-descriptions
|
|
|
|
|
|
|
|
class="margin-top"
|
|
|
|
|
|
|
|
title="上传至UDI自助平台扫码单据"
|
|
|
|
|
|
|
|
:column="1"
|
|
|
|
|
|
|
|
:size="100"
|
|
|
|
style="margin-top: 40px"
|
|
|
|
style="margin-top: 40px"
|
|
|
|
border>
|
|
|
|
border
|
|
|
|
|
|
|
|
>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<el-descriptions-item>
|
|
|
|
<template slot="label">
|
|
|
|
<template slot="label"> 参数设置 </template>
|
|
|
|
参数设置
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<span>单据上传时间间隔(单位:分钟): </span>
|
|
|
|
<span>单据上传时间间隔(单位:分钟): </span>
|
|
|
@ -179,95 +272,142 @@
|
|
|
|
style="width: 100px"
|
|
|
|
style="width: 100px"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
type="number"
|
|
|
|
type="number"
|
|
|
|
v-model="configQuery.orderSyncTime" :disabled="configQuery.downstreamEnable"
|
|
|
|
v-model="configQuery.orderSyncTime"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
|
|
|
|
|
|
|
|
<span style="margin-left: 30px;">单据下载时间间隔(单位:分钟): </span>
|
|
|
|
<span style="margin-left: 30px"
|
|
|
|
|
|
|
|
>单据下载时间间隔(单位:分钟): </span
|
|
|
|
|
|
|
|
>
|
|
|
|
<el-input
|
|
|
|
<el-input
|
|
|
|
style="width: 100px"
|
|
|
|
style="width: 100px"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
type="number"
|
|
|
|
type="number"
|
|
|
|
v-model="configQuery.orderSyncDlTime" :disabled="configQuery.downstreamEnable"
|
|
|
|
v-model="configQuery.orderSyncDlTime"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
|
|
|
<el-descriptions-item
|
|
|
|
|
|
|
|
label="单据(单据类型)"
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
label-style="width: 150px"
|
|
|
|
<el-button type="primary" size="small"
|
|
|
|
>
|
|
|
|
|
|
|
|
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
@click="addBusTypeDialog()">添加扫码单据类型
|
|
|
|
@click="addBusTypeDialog()"
|
|
|
|
|
|
|
|
>添加扫码单据类型
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-table :data="checkedBusTypes" border style="width: 100%">
|
|
|
|
<el-table :data="checkedBusTypes" border style="width: 100%">
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="单据类型" prop="name" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
<el-table-column label="单据类型代码" prop="action" show-overflow-tooltip></el-table-column>
|
|
|
|
label="单据类型"
|
|
|
|
|
|
|
|
prop="name"
|
|
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
|
|
label="单据类型代码"
|
|
|
|
|
|
|
|
prop="action"
|
|
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column width="250" label="单据状态">
|
|
|
|
<el-table-column width="250" label="单据状态">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-select v-model="scope.row.orderStatus" placeholder="请选择单据状态">
|
|
|
|
<el-select
|
|
|
|
<el-option label="待校验" :value=3>待校验</el-option>
|
|
|
|
v-model="scope.row.orderStatus"
|
|
|
|
<el-option label="待核对" :value=5>待核对</el-option>
|
|
|
|
placeholder="请选择单据状态"
|
|
|
|
<el-option label="待审核" :value=10>待审核</el-option>
|
|
|
|
>
|
|
|
|
<el-option label="已审核" :value=7>已审核</el-option>
|
|
|
|
<el-option label="待校验" :value="3">待校验</el-option>
|
|
|
|
|
|
|
|
<el-option label="待核对" :value="5">待核对</el-option>
|
|
|
|
|
|
|
|
<el-option label="待审核" :value="10">待审核</el-option>
|
|
|
|
|
|
|
|
<el-option label="已审核" :value="7">已审核</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" :disabled="configQuery.downstreamEnable"
|
|
|
|
<el-button
|
|
|
|
@click.native="remveBus(scope.$index, scope.row)">移除
|
|
|
|
type="text"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
|
|
|
|
@click.native="remveBus(scope.$index, scope.row)"
|
|
|
|
|
|
|
|
>移除
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
</el-collapse-item>
|
|
|
|
<el-descriptions class="margin-top" title="上传至UDI自助平台业务单据" :column="1" :size="100"
|
|
|
|
|
|
|
|
|
|
|
|
<el-collapse-item title="上传至UDI自助平台业务单据" name="4">
|
|
|
|
|
|
|
|
<el-descriptions
|
|
|
|
|
|
|
|
class="margin-top"
|
|
|
|
|
|
|
|
title="上传至UDI自助平台业务单据"
|
|
|
|
|
|
|
|
:column="1"
|
|
|
|
|
|
|
|
:size="100"
|
|
|
|
style="margin-top: 40px"
|
|
|
|
style="margin-top: 40px"
|
|
|
|
border>
|
|
|
|
border
|
|
|
|
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-descriptions-item
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
label="单据(单据类型)"
|
|
|
|
<el-button type="primary" size="small"
|
|
|
|
label-style="width: 150px"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
@click="addChangeBusTypeDialog()">添加业务单据类型
|
|
|
|
@click="addChangeBusTypeDialog()"
|
|
|
|
|
|
|
|
>添加业务单据类型
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-table :data="checkedChangeBusTypes" border style="width: 100%">
|
|
|
|
<el-table :data="checkedChangeBusTypes" border style="width: 100%">
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="单据类型" prop="name" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
<el-table-column label="单据类型代码" prop="action" show-overflow-tooltip></el-table-column>
|
|
|
|
label="单据类型"
|
|
|
|
|
|
|
|
prop="name"
|
|
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
|
|
label="单据类型代码"
|
|
|
|
|
|
|
|
prop="action"
|
|
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column width="250" label="单据状态">
|
|
|
|
<el-table-column width="250" label="单据状态">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-select v-model="scope.row.orderStatus" placeholder="请选择单据状态">
|
|
|
|
<el-select
|
|
|
|
<el-option label="待校验" :value=1>草稿</el-option>
|
|
|
|
v-model="scope.row.orderStatus"
|
|
|
|
<el-option label="待核对" :value=2>未审核</el-option>
|
|
|
|
placeholder="请选择单据状态"
|
|
|
|
<el-option label="待审核" :value=3>已审核</el-option>
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option label="待校验" :value="1">草稿</el-option>
|
|
|
|
|
|
|
|
<el-option label="待核对" :value="2">未审核</el-option>
|
|
|
|
|
|
|
|
<el-option label="待审核" :value="3">已审核</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" :disabled="configQuery.downstreamEnable"
|
|
|
|
<el-button
|
|
|
|
@click.native="removeChangeBus(scope.$index, scope.row)">移除
|
|
|
|
type="text"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
:disabled="configQuery.downstreamEnable"
|
|
|
|
|
|
|
|
@click.native="removeChangeBus(scope.$index, scope.row)"
|
|
|
|
|
|
|
|
>移除
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
</el-collapse-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
|
title="添加扫码单据类型"
|
|
|
|
title="添加扫码单据类型"
|
|
|
@ -277,9 +417,10 @@
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
v-if="addBusDialogVisible"
|
|
|
|
v-if="addBusDialogVisible"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
<el-button type="primary" size="small" @click="addBusType()"
|
|
|
|
<el-button type="primary" size="small" @click="addBusType()">选入</el-button>
|
|
|
|
>选入</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-table
|
|
|
|
<el-table
|
|
|
|
:data="busTypes"
|
|
|
|
:data="busTypes"
|
|
|
@ -287,7 +428,11 @@
|
|
|
|
style="width: 100%"
|
|
|
|
style="width: 100%"
|
|
|
|
@selection-change="handleCheckedChange"
|
|
|
|
@selection-change="handleCheckedChange"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
|
|
|
|
type="selection"
|
|
|
|
|
|
|
|
width="55"
|
|
|
|
|
|
|
|
:selectable="checkSelectable"
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
<el-table-column
|
|
|
|
label="单据类型"
|
|
|
|
label="单据类型"
|
|
|
@ -308,7 +453,6 @@
|
|
|
|
:total="total"
|
|
|
|
:total="total"
|
|
|
|
:current-page="busQuery.page"
|
|
|
|
:current-page="busQuery.page"
|
|
|
|
></el-pagination>
|
|
|
|
></el-pagination>
|
|
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
@ -319,9 +463,10 @@
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
v-if="addChangeBusDialogVisible"
|
|
|
|
v-if="addChangeBusDialogVisible"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
<el-button type="primary" size="small" @click="addChangeBusType()"
|
|
|
|
<el-button type="primary" size="small" @click="addChangeBusType()">选入</el-button>
|
|
|
|
>选入</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-table
|
|
|
|
<el-table
|
|
|
|
:data="changeBusTypes"
|
|
|
|
:data="changeBusTypes"
|
|
|
@ -329,7 +474,11 @@
|
|
|
|
style="width: 100%"
|
|
|
|
style="width: 100%"
|
|
|
|
@selection-change="handleCheckedChangeBus"
|
|
|
|
@selection-change="handleCheckedChangeBus"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-table-column type="selection" width="55" :selectable="checkSelectableChange"></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
|
|
|
|
type="selection"
|
|
|
|
|
|
|
|
width="55"
|
|
|
|
|
|
|
|
:selectable="checkSelectableChange"
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
<el-table-column
|
|
|
|
label="单据类型"
|
|
|
|
label="单据类型"
|
|
|
@ -350,21 +499,26 @@
|
|
|
|
:total="changeBusTypeTotal"
|
|
|
|
:total="changeBusTypeTotal"
|
|
|
|
:current-page="changeBusQuery.page"
|
|
|
|
:current-page="changeBusQuery.page"
|
|
|
|
></el-pagination>
|
|
|
|
></el-pagination>
|
|
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
</el-collapse>
|
|
|
|
</el-card>
|
|
|
|
</el-card>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import {findConfig, testConnect, updateConfig} from "@/api/sync/spsSyncStatus";
|
|
|
|
import {
|
|
|
|
|
|
|
|
findConfig,
|
|
|
|
|
|
|
|
testConnect,
|
|
|
|
|
|
|
|
updateConfig,
|
|
|
|
|
|
|
|
} from "@/api/sync/spsSyncStatus";
|
|
|
|
import store from "@/store";
|
|
|
|
import store from "@/store";
|
|
|
|
import {getBussinessType} from "@/api/basic/bussinessType";
|
|
|
|
import { getBussinessType } from "@/api/basic/bussinessType";
|
|
|
|
import {getBusTypeChangeList} from "@/api/basic/busTypeChange";
|
|
|
|
import { getBusTypeChangeList } from "@/api/basic/busTypeChange";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "SysUdimsConfig",
|
|
|
|
name: "SysUdimsConfig",
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
|
|
|
|
activeNames: ["1"],
|
|
|
|
configQuery: {
|
|
|
|
configQuery: {
|
|
|
|
id: null,
|
|
|
|
id: null,
|
|
|
|
typeBus: null,
|
|
|
|
typeBus: null,
|
|
|
@ -395,7 +549,6 @@ export default {
|
|
|
|
manufacturerCert: null,
|
|
|
|
manufacturerCert: null,
|
|
|
|
productCert: null,
|
|
|
|
productCert: null,
|
|
|
|
basicDept: null,
|
|
|
|
basicDept: null,
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
checkedBusTypes: [],
|
|
|
|
checkedBusTypes: [],
|
|
|
|
checkedChangeBusTypes: [],
|
|
|
|
checkedChangeBusTypes: [],
|
|
|
@ -415,14 +568,16 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
changeBusTypeTotal: 0,
|
|
|
|
changeBusTypeTotal: 0,
|
|
|
|
changeBusTypes: [],
|
|
|
|
changeBusTypes: [],
|
|
|
|
changeBusTypeSelection: []
|
|
|
|
changeBusTypeSelection: [],
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
handleChange(val) {
|
|
|
|
|
|
|
|
console.log(val);
|
|
|
|
|
|
|
|
},
|
|
|
|
getConfig() {
|
|
|
|
getConfig() {
|
|
|
|
findConfig()
|
|
|
|
findConfig()
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
|
|
|
|
this.configQuery = response.data;
|
|
|
|
this.configQuery = response.data;
|
|
|
|
this.checkedBusTypes = this.configQuery.busTypes;
|
|
|
|
this.checkedBusTypes = this.configQuery.busTypes;
|
|
|
|
this.checkedChangeBusTypes = this.configQuery.changeBusTypes;
|
|
|
|
this.checkedChangeBusTypes = this.configQuery.changeBusTypes;
|
|
|
@ -447,13 +602,13 @@ export default {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
saveConfig() {
|
|
|
|
saveConfig() {
|
|
|
|
|
|
|
|
this.$confirm("是否确认修改?", "提示", {
|
|
|
|
this.$confirm('是否确认修改?', '提示', {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
type: "warning",
|
|
|
|
type: 'warning',
|
|
|
|
|
|
|
|
center: true,
|
|
|
|
center: true,
|
|
|
|
}).then(() => {
|
|
|
|
})
|
|
|
|
|
|
|
|
.then(() => {
|
|
|
|
if (this.checkedBusTypes != null) {
|
|
|
|
if (this.checkedBusTypes != null) {
|
|
|
|
this.configQuery.busTypes = this.checkedBusTypes;
|
|
|
|
this.configQuery.busTypes = this.checkedBusTypes;
|
|
|
|
// for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
|
// for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
@ -476,8 +631,8 @@ export default {
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(() => {
|
|
|
|
})
|
|
|
|
});
|
|
|
|
.catch(() => {});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
testConnect() {
|
|
|
|
testConnect() {
|
|
|
@ -494,8 +649,6 @@ export default {
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
this.testLoading = false;
|
|
|
|
this.testLoading = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
handleCheckedChange(val) {
|
|
|
@ -509,8 +662,7 @@ export default {
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
// this.getConfig();
|
|
|
|
// this.getConfig();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {});
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
addBusTypeDialog() {
|
|
|
|
addBusTypeDialog() {
|
|
|
@ -529,8 +681,7 @@ export default {
|
|
|
|
isPut = false;
|
|
|
|
isPut = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isPut)
|
|
|
|
if (isPut) this.checkedBusTypes.push(obj);
|
|
|
|
this.checkedBusTypes.push(obj);
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this.addBusDialogVisible = false;
|
|
|
|
this.addBusDialogVisible = false;
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -555,8 +706,7 @@ export default {
|
|
|
|
isPut = false;
|
|
|
|
isPut = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isPut)
|
|
|
|
if (isPut) this.checkedChangeBusTypes.push(obj);
|
|
|
|
this.checkedChangeBusTypes.push(obj);
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this.addChangeBusDialogVisible = false;
|
|
|
|
this.addChangeBusDialogVisible = false;
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -571,13 +721,13 @@ export default {
|
|
|
|
res.data.list.forEach((item) => {
|
|
|
|
res.data.list.forEach((item) => {
|
|
|
|
let changeBusType = {
|
|
|
|
let changeBusType = {
|
|
|
|
action: item.originAction,
|
|
|
|
action: item.originAction,
|
|
|
|
name: item.originName
|
|
|
|
name: item.originName,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
this.changeBusTypes.push(changeBusType);
|
|
|
|
this.changeBusTypes.push(changeBusType);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.changeBusTypeTotal = res.data.total || 0;
|
|
|
|
this.changeBusTypeTotal = res.data.total || 0;
|
|
|
|
})
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleCurrentChangePage(val) {
|
|
|
|
handleCurrentChangePage(val) {
|
|
|
|
this.changeBusQuery.page = val;
|
|
|
|
this.changeBusQuery.page = val;
|
|
|
@ -603,9 +753,15 @@ export default {
|
|
|
|
this.getChangeBusType();
|
|
|
|
this.getChangeBusType();
|
|
|
|
this.getConfig();
|
|
|
|
this.getConfig();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
.el-select {
|
|
|
|
|
|
|
|
width: 100px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-collapse-item {
|
|
|
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|