Showing
6 changed files
with
15 additions
and
20 deletions
| ... | @@ -25,7 +25,7 @@ export function login(loginName, password, rememberMe, equipmentType, userAgent, | ... | @@ -25,7 +25,7 @@ export function login(loginName, password, rememberMe, equipmentType, userAgent, |
| 25 | // 退出方法 | 25 | // 退出方法 |
| 26 | export function logout() { | 26 | export function logout() { |
| 27 | return request({ | 27 | return request({ |
| 28 | - url: '/manager-server/login/fcl/logout', | 28 | + url: '/bus-customer/logout', |
| 29 | method: 'get' | 29 | method: 'get' |
| 30 | }) | 30 | }) |
| 31 | } | 31 | } | ... | ... |
| ... | @@ -190,6 +190,7 @@ export default { | ... | @@ -190,6 +190,7 @@ export default { |
| 190 | } | 190 | } |
| 191 | ).then(() => { | 191 | ).then(() => { |
| 192 | this.$store.dispatch("FedLogOut").then(() => { | 192 | this.$store.dispatch("FedLogOut").then(() => { |
| 193 | + // window.close() | ||
| 193 | location.href = process.env.VUE_APP_BASE_LOGINOUT; | 194 | location.href = process.env.VUE_APP_BASE_LOGINOUT; |
| 194 | }); | 195 | }); |
| 195 | }); | 196 | }); | ... | ... |
| ... | @@ -180,14 +180,14 @@ export const constantRoutes = [ | ... | @@ -180,14 +180,14 @@ export const constantRoutes = [ |
| 180 | children: [ | 180 | children: [ |
| 181 | { | 181 | { |
| 182 | path: '/summary', | 182 | path: '/summary', |
| 183 | - component: (resolve) => require(['@/views/reportingData/index'], resolve), | 183 | + component: (resolve) => require(['@/views/summaryEdit/index'], resolve), |
| 184 | hidden: false, | 184 | hidden: false, |
| 185 | name: 'Summary', | 185 | name: 'Summary', |
| 186 | meta: { title: '汇总申报', icon: '' } | 186 | meta: { title: '汇总申报', icon: '' } |
| 187 | }, | 187 | }, |
| 188 | { | 188 | { |
| 189 | path: '/summaryDataSearch', | 189 | path: '/summaryDataSearch', |
| 190 | - component: (resolve) => require(['@/views/reportingData/index'], resolve), | 190 | + component: (resolve) => require(['@/views/summaryDataSearch/index'], resolve), |
| 191 | hidden: false, | 191 | hidden: false, |
| 192 | name: 'SummaryDataSearch', | 192 | name: 'SummaryDataSearch', |
| 193 | meta: { title: '汇总申请单查询', icon: '' } | 193 | meta: { title: '汇总申请单查询', icon: '' } | ... | ... |
| ... | @@ -119,16 +119,7 @@ | ... | @@ -119,16 +119,7 @@ |
| 119 | 新 增 | 119 | 新 增 |
| 120 | </el-button> | 120 | </el-button> |
| 121 | </div> | 121 | </div> |
| 122 | - <div> | 122 | + <div></div> |
| 123 | - <el-button | ||
| 124 | - class="entrySaveButton" | ||
| 125 | - size="small" | ||
| 126 | - icon="el-icon-download" | ||
| 127 | - @click="downloadData" | ||
| 128 | - > | ||
| 129 | - 导出 | ||
| 130 | - </el-button> | ||
| 131 | - </div> | ||
| 132 | </div> | 123 | </div> |
| 133 | <Table | 124 | <Table |
| 134 | class="fedexDetialTable fedexSreachTable" | 125 | class="fedexDetialTable fedexSreachTable" |
| ... | @@ -151,8 +142,11 @@ | ... | @@ -151,8 +142,11 @@ |
| 151 | :rowSelectDataType="false" | 142 | :rowSelectDataType="false" |
| 152 | > | 143 | > |
| 153 | <template slot="optionColumn"> | 144 | <template slot="optionColumn"> |
| 154 | - <el-table-column align="left" label="操作" width="100"> | 145 | + <el-table-column align="left" label="操作" width="150"> |
| 155 | <template slot-scope="scope"> | 146 | <template slot-scope="scope"> |
| 147 | + <el-button type="text" @click="downloadFile(scope.row)"> | ||
| 148 | + 下载证书 | ||
| 149 | + </el-button> | ||
| 156 | <el-button type="text" @click="update(scope.row)"> 修改 </el-button> | 150 | <el-button type="text" @click="update(scope.row)"> 修改 </el-button> |
| 157 | </template> | 151 | </template> |
| 158 | </el-table-column> | 152 | </el-table-column> |
| ... | @@ -320,17 +314,17 @@ export default { | ... | @@ -320,17 +314,17 @@ export default { |
| 320 | dxpid: "", | 314 | dxpid: "", |
| 321 | }; | 315 | }; |
| 322 | }, | 316 | }, |
| 323 | - //导出 | 317 | + //下载证书 |
| 324 | - downloadData() {}, | 318 | + downloadFile(val) {}, |
| 325 | addCustomer() { | 319 | addCustomer() { |
| 326 | - this.dialogTitle = "新增口岸"; | 320 | + this.dialogTitle = "新增客户"; |
| 327 | this.editType = "add"; | 321 | this.editType = "add"; |
| 328 | - this.outerVisible = true; | 322 | + // this.outerVisible = true; |
| 329 | }, | 323 | }, |
| 330 | update(val) { | 324 | update(val) { |
| 331 | - this.dialogTitle = "修改口岸"; | 325 | + this.dialogTitle = "修改客户"; |
| 332 | this.editType = "update"; | 326 | this.editType = "update"; |
| 333 | - this.outerVisible = true; | 327 | + // this.outerVisible = true; |
| 334 | this.activeData = val; | 328 | this.activeData = val; |
| 335 | }, | 329 | }, |
| 336 | dialogClose() { | 330 | dialogClose() { | ... | ... |
src/views/summaryDataSearch/index.vue
0 → 100644
This diff is collapsed. Click to expand it.
src/views/summaryEdit/index.vue
0 → 100644
File mode changed
-
Please register or login to post a comment