|
|
|
@ -83,8 +83,8 @@
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="detailList" style="width: 100%">
|
|
|
|
|
<el-table v-loading="loading" :data="detailList" style="width: 100%"
|
|
|
|
|
@current-change="handleBustypeChange">
|
|
|
|
|
<el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="接口名称" prop="name" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
|
|
|
|
@ -148,9 +148,49 @@
|
|
|
|
|
></el-pagination>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="busTypeLoading" :data="busTypeList" style="width: 100%">
|
|
|
|
|
<el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型" prop="name" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型代码" prop="code">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="接口地址" prop="url" width="400" show-overflow-tooltip>
|
|
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input :disabled="scope.$index !== currentCheckIndex" v-model="scope.row.url"
|
|
|
|
|
placeholder="请输入"></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="150" prop="price" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click="handleEdit(scope.$index, scope.row)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click="handleSave(scope.$index, scope.row)"
|
|
|
|
|
>保存
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<div style="margin-top: 18px ; color: #F71616;">
|
|
|
|
|
<span>重要提示:本页功能仅供技术提供方修改 </span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@ -158,7 +198,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getBasicThirdSys,
|
|
|
|
|
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys
|
|
|
|
|
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail
|
|
|
|
|
} from "../../api/basic/basicThirdSys";
|
|
|
|
|
|
|
|
|
|
import modifyDialog from "./BasicThirdSysModify";
|
|
|
|
@ -176,9 +216,11 @@
|
|
|
|
|
},
|
|
|
|
|
modifyDialogVisible: false,
|
|
|
|
|
modifyDetailDialogVisible: false,
|
|
|
|
|
modifyBusYypeDialogVisible: false,
|
|
|
|
|
list: [],
|
|
|
|
|
inputQuery: null,
|
|
|
|
|
inputDetailQuery: null,
|
|
|
|
|
inputBusTypeQuery: null,
|
|
|
|
|
enableMap: {
|
|
|
|
|
true: "是",
|
|
|
|
|
false: "否",
|
|
|
|
@ -190,7 +232,11 @@
|
|
|
|
|
3: "接口本地缓存"
|
|
|
|
|
},
|
|
|
|
|
detailList: null,
|
|
|
|
|
busTypeList: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: false,
|
|
|
|
|
busTypeLoading:false,
|
|
|
|
|
currentCheckIndex: -1,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -211,10 +257,14 @@
|
|
|
|
|
cancelDialog() {
|
|
|
|
|
this.modifyDialogVisible = false;
|
|
|
|
|
this.modifyDetailDialogVisible = false;
|
|
|
|
|
this.modifyBusYypeDialogVisible = false;
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(row) {
|
|
|
|
|
this.getDetailList(row);
|
|
|
|
|
},
|
|
|
|
|
handleBustypeChange(row) {
|
|
|
|
|
this.getBustyList(row);
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getBasicThirdSys(this.filterQuery)
|
|
|
|
@ -253,6 +303,31 @@
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getBustyList(row) {
|
|
|
|
|
let query = {
|
|
|
|
|
thirdSysFk: row.thirdSysFk,
|
|
|
|
|
type: 0,
|
|
|
|
|
};
|
|
|
|
|
if (row.key == "orderQueryUrl") {
|
|
|
|
|
query.type = 1;
|
|
|
|
|
} else if (row.key == "orderSubmitUrl") {
|
|
|
|
|
query.type = 2;
|
|
|
|
|
} else {
|
|
|
|
|
this.busTypeList = [];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.busTypeLoading = true;
|
|
|
|
|
filterBusTypeDetail(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypeLoading = false;
|
|
|
|
|
this.busTypeList = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.busTypeLoading = false;
|
|
|
|
|
this.busTypeList = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onModifySubmit() {
|
|
|
|
|
updateBasicThirdSys(this.inputQuery)
|
|
|
|
@ -300,6 +375,20 @@
|
|
|
|
|
this.modifyDetailDialogVisible = true;
|
|
|
|
|
this.inputDetailQuery = row;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleEdit(index, row) {
|
|
|
|
|
this.currentCheckIndex = index;
|
|
|
|
|
},
|
|
|
|
|
handleSave(index, row) {
|
|
|
|
|
this.currentCheckIndex = -1;
|
|
|
|
|
saveBusTypeDetail(row).then((res) => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.$message.success(res.data);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
modifyDialog, modifyDetailDialog
|
|
|
|
|