|
|
|
@ -53,12 +53,12 @@
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="editLogin.platformPassword"
|
|
|
|
|
placeholder="请输入密码"
|
|
|
|
|
style="width: 81%"
|
|
|
|
|
style="width: 70%"
|
|
|
|
|
size="small"
|
|
|
|
|
type="password"
|
|
|
|
|
show-password
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-button type="primary" style="margin-left: 7px;" @click.native="testUserInfo">
|
|
|
|
|
<el-button type="primary" style="margin-left: 2%;" @click.native="testUserInfo">
|
|
|
|
|
账号验证
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -78,6 +78,7 @@
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" :disabled="!check" @click.native.stop="addDelect(scope.row)">编辑</el-button>
|
|
|
|
|
<el-button type="text" size="small" :disabled="!check" @click.native.stop="deleteDialog(scope.row)">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -111,7 +112,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {testUserInfo} from "@/api/userManage/platform";
|
|
|
|
|
import {deletePlatform, testUserInfo} from "@/api/userManage/platform";
|
|
|
|
|
import {getCorpLists, getPlatFormDelect} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {getBussinessType} from "@/api/basic/bussinessType";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
@ -256,7 +257,24 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.orderMutiVisible = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getPlatFormDelect();
|
|
|
|
|
},
|
|
|
|
|
deleteDialog(row) {
|
|
|
|
|
this.$confirm("确认删除该自助平台信息?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning"
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
let tQuery = {
|
|
|
|
|
id: row.id
|
|
|
|
|
};
|
|
|
|
|
deletePlatform(tQuery).then(() => {
|
|
|
|
|
this.getPlatFormDelect()
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getLocalBussinessType() {
|
|
|
|
|
let tQuery = {};
|
|
|
|
@ -267,8 +285,8 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.query.page = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.query.page = val.page;
|
|
|
|
|
this.getPlatFormDelect();
|
|
|
|
|
},
|
|
|
|
|
addDelect(row){
|
|
|
|
|
if(this.check=true){
|
|
|
|
@ -278,6 +296,17 @@ export default {
|
|
|
|
|
}else{
|
|
|
|
|
this.formQuery=2;
|
|
|
|
|
this.editLogin.id=row.id
|
|
|
|
|
this.editLogin.platformId = row.platformId;
|
|
|
|
|
this.editLogin.appid = row.appid;
|
|
|
|
|
this.editLogin.apiKey = row.apiKey;
|
|
|
|
|
this.editLogin.secretKey = row.secretKey;
|
|
|
|
|
this.editLogin.unitId = row.unitId;
|
|
|
|
|
this.editLogin.customerId = row.platformId
|
|
|
|
|
this.editLogin.sourceAction = row.sourceAction
|
|
|
|
|
this.editLogin.invCode = row.invCode
|
|
|
|
|
this.editLogin.invSubCode = row.invSubCode
|
|
|
|
|
this.editLogin.targetAction = row.targetAction
|
|
|
|
|
console.log(this.editLogin)
|
|
|
|
|
this.editLoginVisible=true;
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|