mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
停车场加入权限管理
This commit is contained in:
parent
0de14e5a44
commit
dcad606375
20
app.js
20
app.js
@ -32,13 +32,13 @@ let opts = {
|
||||
}
|
||||
|
||||
|
||||
// app.use('/callComponent', proxy('http://192.168.100.108:8088', opts));
|
||||
// app.use('/app', proxy('http://192.168.100.108:8088', opts));
|
||||
// app.use('/ws', createProxyMiddleware({
|
||||
// target: 'http://192.168.100.108:8008',
|
||||
// changeOrigin: true,
|
||||
// ws: true
|
||||
// }));
|
||||
app.use('/callComponent', proxy('http://192.168.100.108:8088', opts));
|
||||
app.use('/app', proxy('http://192.168.100.108:8088', opts));
|
||||
app.use('/ws', createProxyMiddleware({
|
||||
target: 'http://192.168.100.108:8008',
|
||||
changeOrigin: true,
|
||||
ws: true
|
||||
}));
|
||||
|
||||
// app.use('/callComponent', proxy('http://ynwyht.dk55.com:8008', opts));
|
||||
// app.use('/app', proxy('http://ynwyht.dk55.com:8008', opts));
|
||||
@ -48,9 +48,9 @@ let opts = {
|
||||
// ws: true
|
||||
// }));
|
||||
|
||||
app.use('/callComponent', proxy('http://127.0.0.1:8008', opts));
|
||||
app.use('/app', proxy('http://127.0.0.1:8008', opts));
|
||||
app.use('/ws', proxy('http://127.0.0.1:8008', opts));
|
||||
// app.use('/callComponent', proxy('http://127.0.0.1:8008', opts));
|
||||
// app.use('/app', proxy('http://127.0.0.1:8008', opts));
|
||||
// app.use('/ws', proxy('http://127.0.0.1:8008', opts));
|
||||
// app.use('/callComponent',proxy('http://192.168.1.106:8012',opts));
|
||||
// app.use('/app',proxy('http://192.168.1.106:8012',opts));
|
||||
|
||||
|
||||
@ -50,7 +50,7 @@
|
||||
<span><vc:i18n name="停车场信息" namespace="parkingAreaManage"></vc:i18n></span>
|
||||
</h5>
|
||||
<div class="ibox-tools" style="top:10px;">
|
||||
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddParkingAreaModal()">
|
||||
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddParkingAreaModal()" v-if="vc.hasPrivilege('502022100147030003')">
|
||||
<i class="fa fa-plus"></i>
|
||||
<span><vc:i18n name="添加" namespace="parkingAreaManage"></vc:i18n></span>
|
||||
</button>
|
||||
@ -101,12 +101,12 @@
|
||||
</td>
|
||||
<td class="text-center">{{parkingArea.createTime}}</td>
|
||||
<td class="text-center">
|
||||
<div class="btn-group">
|
||||
<div class="btn-group" v-if="vc.hasPrivilege('502022100103010004')">
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openEditParkingAreaModel(parkingArea)">
|
||||
<span><vc:i18n name="修改" namespace="parkingAreaManage"></vc:i18n></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<div class="btn-group" v-if="vc.hasPrivilege('502022100117490005')">
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openDeleteParkingAreaModel(parkingArea)">
|
||||
<span><vc:i18n name="删除" namespace="parkingAreaManage"></vc:i18n></span>
|
||||
</button>
|
||||
@ -116,7 +116,7 @@
|
||||
<span><vc:i18n name="问候语" namespace="parkingAreaManage"></vc:i18n></span>
|
||||
</button>
|
||||
</div> -->
|
||||
<div class="btn-group">
|
||||
<div class="btn-group" v-if="vc.hasPrivilege('502022100112510006')">
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openParkingAreaTotalControl(parkingArea)">
|
||||
<span><vc:i18n name="控制台" namespace="parkingAreaManage"></vc:i18n></span>
|
||||
</button>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user