|
|
|
@ -17,11 +17,15 @@
|
|
|
|
|
<div>
|
|
|
|
|
<span style="margin-left: 30px;">服务地址: </span>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 70%"
|
|
|
|
|
style="width: 50%"
|
|
|
|
|
size="small"
|
|
|
|
|
v-model="configQuery.syncIp"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-button type="primary" size="small" @click="testConnect()" style="margin-left: 20px;"
|
|
|
|
|
:loading="testLoading">测试连通
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -142,17 +146,6 @@
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">-->
|
|
|
|
|
<!-- <el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange">-->
|
|
|
|
|
<!-- <el-checkbox-->
|
|
|
|
|
<!-- style="padding-top: 10px"-->
|
|
|
|
|
<!-- v-for="busType in busTypes" :label="busType" :key="busType.action"-->
|
|
|
|
|
<!-- :value="busType.action">{{ busType.name }}-->
|
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
|
<!-- </el-checkbox-group>-->
|
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
@ -199,7 +192,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {findConfig, updateConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
|
import {findConfig, testConnect, updateConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
import {getBussinessType} from "@/api/basic/bussinessType";
|
|
|
|
|
|
|
|
|
@ -238,6 +231,7 @@ export default {
|
|
|
|
|
multipleSelection: [],
|
|
|
|
|
addBusDialogVisible: false,
|
|
|
|
|
total: 0,
|
|
|
|
|
testLoading: false,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -297,6 +291,22 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
testConnect() {
|
|
|
|
|
this.testLoading = true;
|
|
|
|
|
testConnect()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.testLoading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("连接成功");
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.testLoading = false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
|
this.multipleSelection = val;
|
|
|
|
|
},
|
|
|
|
|