新增三期拣货,无三期拣货,为配货等页面

ywj_dev
anthonywj 2 years ago
parent 86fab2bb90
commit b35aac7217

@ -5,7 +5,7 @@
<el-collapse-item title="数据同步设置" name="1"> <el-collapse-item title="数据同步设置" name="1">
<el-descriptions class="margin-top" :column="1" :size="100" border> <el-descriptions class="margin-top" :column="1" :size="100" border>
<template slot="extra"> <template slot="extra">
<el-button type="primary" size="small" @click="saveConfig()" <el-button type="primary" size="small" @click="saveConfig()" disabled
>保存 >保存
</el-button> </el-button>
</template> </template>
@ -14,6 +14,7 @@
<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
disabled
v-model="configQuery.downstreamEnable" v-model="configQuery.downstreamEnable"
active-text="是否启用数据同步" active-text="是否启用数据同步"
> >
@ -40,7 +41,7 @@
style="width: 50%" style="width: 50%"
size="small" size="small"
v-model="configQuery.syncIp" v-model="configQuery.syncIp"
:disabled="configQuery.downstreamEnable" disabled
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
<el-button <el-button
@ -48,7 +49,7 @@
size="small" size="small"
@click="testConnect()" @click="testConnect()"
style="margin-left: 20px" style="margin-left: 20px"
:disabled="configQuery.downstreamEnable" disabled
:loading="testLoading" :loading="testLoading"
>测试连通 >测试连通
</el-button> </el-button>
@ -113,6 +114,7 @@
style="width: 100px" style="width: 100px"
size="small" size="small"
type="number" type="number"
disabled
v-model="configQuery.syncTime" v-model="configQuery.syncTime"
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
@ -120,7 +122,7 @@
<el-form-item label="延时上传(单位:分钟):"> <el-form-item label="延时上传(单位:分钟):">
<el-input <el-input
style="width: 100px" style="width: 100px"
size="small" size="small" disabled
type="number" type="number"
v-model="configQuery.delaySyncTime" v-model="configQuery.delaySyncTime"
splaceholder="请输入内容" splaceholder="请输入内容"
@ -129,7 +131,7 @@
<el-form-item label="数据下载时间间隔(单位:分钟):"> <el-form-item label="数据下载时间间隔(单位:分钟):">
<el-input <el-input
style="width: 100px" style="width: 100px"
size="small" size="small" disabled
type="number" type="number"
v-model="configQuery.syncDownloadTime" v-model="configQuery.syncDownloadTime"
splaceholder="请输入内容" splaceholder="请输入内容"
@ -383,7 +385,7 @@
size="small" size="small"
type="number" type="number"
v-model="configQuery.orderToInSyncTime" v-model="configQuery.orderToInSyncTime"
:disabled="configQuery.downstreamEnable" disabled
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
</div> </div>
@ -399,7 +401,7 @@
<el-button <el-button
type="primary" type="primary"
size="small" size="small"
:disabled="configQuery.downstreamEnable" disabled
@click="addToInBusTypeDialog()" @click="addToInBusTypeDialog()"
>添加扫码单据类型 >添加扫码单据类型
</el-button> </el-button>
@ -434,7 +436,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="configQuery.downstreamEnable" disabled
@click.native="removeToInBus(scope.$index, scope.row)" @click.native="removeToInBus(scope.$index, scope.row)"
>移除 >移除
</el-button> </el-button>
@ -465,7 +467,7 @@
size="small" size="small"
type="number" type="number"
v-model="configQuery.orderSyncTime" v-model="configQuery.orderSyncTime"
:disabled="configQuery.downstreamEnable" disabled
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
@ -477,7 +479,7 @@
size="small" size="small"
type="number" type="number"
v-model="configQuery.orderSyncDlTime" v-model="configQuery.orderSyncDlTime"
:disabled="configQuery.downstreamEnable" disabled
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
</div> </div>
@ -493,7 +495,7 @@
<el-button <el-button
type="primary" type="primary"
size="small" size="small"
:disabled="configQuery.downstreamEnable" disabled
@click="addBusTypeDialog()" @click="addBusTypeDialog()"
>添加扫码单据类型 >添加扫码单据类型
</el-button> </el-button>
@ -528,7 +530,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="configQuery.downstreamEnable" disabled
@click.native="remveBus(scope.$index, scope.row)" @click.native="remveBus(scope.$index, scope.row)"
>移除 >移除
</el-button> </el-button>
@ -555,7 +557,7 @@
<el-button <el-button
type="primary" type="primary"
size="small" size="small"
:disabled="configQuery.downstreamEnable" disabled
@click="addChangeBusTypeDialog()" @click="addChangeBusTypeDialog()"
>添加业务单据类型 >添加业务单据类型
</el-button> </el-button>
@ -589,7 +591,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="configQuery.downstreamEnable" disabled
@click.native="removeChangeBus(scope.$index, scope.row)" @click.native="removeChangeBus(scope.$index, scope.row)"
>移除 >移除
</el-button> </el-button>
@ -608,7 +610,7 @@
v-if="addBusToInDialogVisible" v-if="addBusToInDialogVisible"
> >
<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="addToInBusType()" <el-button type="primary" size="small" @click="addToInBusType()" disabled
>选入 >选入
</el-button> </el-button>
</div> </div>
@ -653,7 +655,7 @@
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()" disabled
>选入 >选入
</el-button> </el-button>
</div> </div>
@ -699,7 +701,7 @@
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()" disabled
>选入 >选入
</el-button> </el-button>
</div> </div>
@ -863,7 +865,8 @@ export default {
this.loading = false; this.loading = false;
}); });
}) })
.catch(() => {}); .catch(() => {
});
}, },
testConnect() { testConnect() {
@ -896,7 +899,8 @@ export default {
this.busTypes = response.data.list || []; this.busTypes = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
}) })
.catch(() => {}); .catch(() => {
});
}, },
addBusTypeDialog() { addBusTypeDialog() {

Loading…
Cancel
Save