运营期修改
This commit is contained in:
parent
e4c9da15a6
commit
6f722d6849
|
@ -5,8 +5,8 @@ VUE_APP_TITLE = 共享电动车管理系统
|
|||
ENV = 'development'
|
||||
|
||||
# 共享电动车管理系统/开发环境
|
||||
# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
||||
VUE_APP_BASE_API = 'http://localhost:8088'
|
||||
VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
||||
# VUE_APP_BASE_API = 'http://localhost:8088'
|
||||
|
||||
# 路由懒加载
|
||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||
|
|
|
@ -643,7 +643,7 @@ export default {
|
|||
|
||||
.left_box {
|
||||
padding: 10px;
|
||||
width: 49%;
|
||||
width: 53%;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
@ -653,7 +653,7 @@ export default {
|
|||
border: 1px solid #ccc;
|
||||
border-radius: 10px;
|
||||
margin-left: 1%;
|
||||
width: 49%;
|
||||
width: 44%;
|
||||
|
||||
.right_tit {
|
||||
margin-bottom: 20px;
|
||||
|
|
|
@ -16,12 +16,12 @@
|
|||
<el-button type="primary" plain icon="el-icon-plus" size="mini"
|
||||
v-hasPermi="['system:area:add']">新增</el-button>
|
||||
</router-link>
|
||||
<!-- <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
||||
v-hasPermi="['system:area:add']">新增</el-button> -->
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
||||
v-hasPermi="['system:area:add']">新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
||||
v-hasPermi="['system:area:edit']">修改</el-button>
|
||||
<!-- <el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
||||
v-hasPermi="['system:area:edit']">修改</el-button> -->
|
||||
<!-- <el-button
|
||||
type="success"
|
||||
plain
|
||||
|
@ -48,6 +48,14 @@
|
|||
<el-table-column label="运营区域" align="center" prop="areaName" />
|
||||
<el-table-column label="运营商" align="center" prop="deptName" />
|
||||
<el-table-column label="车数量" align="center" prop="deviceNum" />
|
||||
<el-table-column label="运营区设置" align="center" :show-overflow-tooltip="true">
|
||||
<template slot-scope="scope">
|
||||
<router-link :to="'/system/areaSet/index/' + scope.row.areaId" class="link-type">
|
||||
<el-button size="mini" type="text" icon="el-icon-edit"
|
||||
v-hasPermi="['system:area:edit']">修改</el-button>
|
||||
</router-link>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="停车区" align="center" :show-overflow-tooltip="true">
|
||||
<template slot-scope="scope">
|
||||
<router-link :to="'/system/area-parking/index/' + scope.row.areaId" class="link-type">
|
||||
|
@ -55,6 +63,7 @@
|
|||
</router-link>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column label="禁停区" align="center" :show-overflow-tooltip="true">
|
||||
<template slot-scope="scope">
|
||||
<router-link :to="'/system/area-noparking/index/' + scope.row.areaId" class="link-type">
|
||||
|
@ -102,10 +111,10 @@
|
|||
</router-link>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
<router-link :to="'/system/areaSet/index/' + scope.row.areaId" class="link-type">
|
||||
<!-- <router-link :to="'/system/areaSet/index/' + scope.row.areaId" class="link-type">
|
||||
<el-button size="mini" type="text" icon="el-icon-edit"
|
||||
v-hasPermi="['system:area:edit']">修改</el-button>
|
||||
</router-link>
|
||||
</router-link> -->
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="openmaps(scope.row)"
|
||||
v-hasPermi="['system:area:edit']">修改电子围栏</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
||||
|
|
Loading…
Reference in New Issue
Block a user