jinhui.wang

接口增加,样式修改

......@@ -25,7 +25,7 @@ export function login(loginName, password, rememberMe, equipmentType, userAgent,
// 退出方法
export function logout() {
return request({
url: '/manager-server/login/fcl/logout',
url: '/bus-customer/logout',
method: 'get'
})
}
......
......@@ -190,6 +190,7 @@ export default {
}
).then(() => {
this.$store.dispatch("FedLogOut").then(() => {
// window.close()
location.href = process.env.VUE_APP_BASE_LOGINOUT;
});
});
......
......@@ -180,14 +180,14 @@ export const constantRoutes = [
children: [
{
path: '/summary',
component: (resolve) => require(['@/views/reportingData/index'], resolve),
component: (resolve) => require(['@/views/summaryEdit/index'], resolve),
hidden: false,
name: 'Summary',
meta: { title: '汇总申报', icon: '' }
},
{
path: '/summaryDataSearch',
component: (resolve) => require(['@/views/reportingData/index'], resolve),
component: (resolve) => require(['@/views/summaryDataSearch/index'], resolve),
hidden: false,
name: 'SummaryDataSearch',
meta: { title: '汇总申请单查询', icon: '' }
......
......@@ -119,16 +119,7 @@
新 增
</el-button>
</div>
<div>
<el-button
class="entrySaveButton"
size="small"
icon="el-icon-download"
@click="downloadData"
>
导出
</el-button>
</div>
<div></div>
</div>
<Table
class="fedexDetialTable fedexSreachTable"
......@@ -151,8 +142,11 @@
:rowSelectDataType="false"
>
<template slot="optionColumn">
<el-table-column align="left" label="操作" width="100">
<el-table-column align="left" label="操作" width="150">
<template slot-scope="scope">
<el-button type="text" @click="downloadFile(scope.row)">
下载证书
</el-button>
<el-button type="text" @click="update(scope.row)"> 修改 </el-button>
</template>
</el-table-column>
......@@ -320,17 +314,17 @@ export default {
dxpid: "",
};
},
//导出
downloadData() {},
//下载证书
downloadFile(val) {},
addCustomer() {
this.dialogTitle = "新增口岸";
this.dialogTitle = "新增客户";
this.editType = "add";
this.outerVisible = true;
// this.outerVisible = true;
},
update(val) {
this.dialogTitle = "修改口岸";
this.dialogTitle = "修改客户";
this.editType = "update";
this.outerVisible = true;
// this.outerVisible = true;
this.activeData = val;
},
dialogClose() {
......
This diff is collapsed. Click to expand it.