导航
This commit is contained in:
parent
b42fdf3e86
commit
9251f202b2
|
@ -6,17 +6,10 @@
|
||||||
<top-nav id="topmenu-container" class="topmenu-container" v-if="topNav"/>
|
<top-nav id="topmenu-container" class="topmenu-container" v-if="topNav"/>
|
||||||
|
|
||||||
<div class="right-menu">
|
<div class="right-menu">
|
||||||
|
<span class="dept-name">{{name}}--{{userTypeText}}</span>
|
||||||
<template v-if="device!=='mobile'">
|
<template v-if="device!=='mobile'">
|
||||||
<search id="header-search" class="right-menu-item" />
|
<search id="header-search" class="right-menu-item" />
|
||||||
|
|
||||||
<el-tooltip content="源码地址" effect="dark" placement="bottom">
|
|
||||||
<ruo-yi-git id="ruoyi-git" class="right-menu-item hover-effect" />
|
|
||||||
</el-tooltip>
|
|
||||||
|
|
||||||
<el-tooltip content="文档地址" effect="dark" placement="bottom">
|
|
||||||
<ruo-yi-doc id="ruoyi-doc" class="right-menu-item hover-effect" />
|
|
||||||
</el-tooltip>
|
|
||||||
|
|
||||||
<screenfull id="screenfull" class="right-menu-item hover-effect" />
|
<screenfull id="screenfull" class="right-menu-item hover-effect" />
|
||||||
|
|
||||||
<el-tooltip content="布局大小" effect="dark" placement="bottom">
|
<el-tooltip content="布局大小" effect="dark" placement="bottom">
|
||||||
|
@ -58,6 +51,10 @@ import RuoYiGit from '@/components/RuoYi/Git'
|
||||||
import RuoYiDoc from '@/components/RuoYi/Doc'
|
import RuoYiDoc from '@/components/RuoYi/Doc'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
props: {
|
||||||
|
name: String,
|
||||||
|
userType: String
|
||||||
|
},
|
||||||
components: {
|
components: {
|
||||||
Breadcrumb,
|
Breadcrumb,
|
||||||
TopNav,
|
TopNav,
|
||||||
|
@ -69,9 +66,20 @@ export default {
|
||||||
RuoYiDoc
|
RuoYiDoc
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
userTypeText() {
|
||||||
|
const userTypeMap = {
|
||||||
|
"00": "普通用户",
|
||||||
|
"01": "个人用户",
|
||||||
|
"02": "商家",
|
||||||
|
"09": "超级管理员"
|
||||||
|
};
|
||||||
|
return userTypeMap[this.userType] || "未知类型";
|
||||||
|
},
|
||||||
...mapGetters([
|
...mapGetters([
|
||||||
'sidebar',
|
'sidebar',
|
||||||
'avatar',
|
'avatar',
|
||||||
|
'userType',
|
||||||
|
'name',
|
||||||
'device'
|
'device'
|
||||||
]),
|
]),
|
||||||
setting: {
|
setting: {
|
||||||
|
@ -146,10 +154,17 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.right-menu {
|
.right-menu {
|
||||||
|
display: flex;
|
||||||
|
align-items: center; /* 垂直居中对齐 */
|
||||||
float: right;
|
float: right;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
line-height: 50px;
|
line-height: 50px;
|
||||||
|
|
||||||
|
.dept-name {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,6 +63,10 @@ Vue.use(plugins)
|
||||||
Vue.use(VueMeta)
|
Vue.use(VueMeta)
|
||||||
DictData.install()
|
DictData.install()
|
||||||
|
|
||||||
|
//点击空白处模态框不消失
|
||||||
|
Element.Dialog.props.closeOnClickModal.default = false;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If you don't want to use mock-server
|
* If you don't want to use mock-server
|
||||||
* you want to use MockJs for mock api
|
* you want to use MockJs for mock api
|
||||||
|
@ -73,7 +77,7 @@ DictData.install()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Vue.use(Element, {
|
Vue.use(Element, {
|
||||||
size: Cookies.get('size') || 'medium' // set element-ui default size
|
size: Cookies.get('size') || 'mini' // set element-ui default size
|
||||||
})
|
})
|
||||||
|
|
||||||
Vue.config.productionTip = false
|
Vue.config.productionTip = false
|
||||||
|
|
|
@ -7,6 +7,7 @@ const getters = {
|
||||||
cachedViews: state => state.tagsView.cachedViews,
|
cachedViews: state => state.tagsView.cachedViews,
|
||||||
token: state => state.user.token,
|
token: state => state.user.token,
|
||||||
avatar: state => state.user.avatar,
|
avatar: state => state.user.avatar,
|
||||||
|
userType: state => state.user.userType,
|
||||||
name: state => state.user.name,
|
name: state => state.user.name,
|
||||||
introduction: state => state.user.introduction,
|
introduction: state => state.user.introduction,
|
||||||
roles: state => state.user.roles,
|
roles: state => state.user.roles,
|
||||||
|
|
|
@ -7,6 +7,7 @@ const user = {
|
||||||
id: '',
|
id: '',
|
||||||
name: '',
|
name: '',
|
||||||
avatar: '',
|
avatar: '',
|
||||||
|
userType: '',
|
||||||
roles: [],
|
roles: [],
|
||||||
permissions: []
|
permissions: []
|
||||||
},
|
},
|
||||||
|
@ -24,6 +25,9 @@ const user = {
|
||||||
SET_AVATAR: (state, avatar) => {
|
SET_AVATAR: (state, avatar) => {
|
||||||
state.avatar = avatar
|
state.avatar = avatar
|
||||||
},
|
},
|
||||||
|
SET_USERTYPE: (state, userType) => {
|
||||||
|
state.userType = userType
|
||||||
|
},
|
||||||
SET_ROLES: (state, roles) => {
|
SET_ROLES: (state, roles) => {
|
||||||
state.roles = roles
|
state.roles = roles
|
||||||
},
|
},
|
||||||
|
@ -65,6 +69,7 @@ const user = {
|
||||||
commit('SET_ID', user.userId)
|
commit('SET_ID', user.userId)
|
||||||
commit('SET_NAME', user.userName)
|
commit('SET_NAME', user.userName)
|
||||||
commit('SET_AVATAR', avatar)
|
commit('SET_AVATAR', avatar)
|
||||||
|
commit('SET_USERTYPE', user.userType)
|
||||||
resolve(res)
|
resolve(res)
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
reject(error)
|
reject(error)
|
||||||
|
|
|
@ -55,9 +55,9 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<!-- 底部 -->
|
<!-- 底部 -->
|
||||||
<div class="el-login-footer">
|
<!-- <div class="el-login-footer">-->
|
||||||
<span>Copyright © 2018-2024 ruoyi.vip All Rights Reserved.</span>
|
<!-- <span>Copyright © 2018-2024 ruoyi.vip All Rights Reserved.</span>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -60,9 +60,9 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<!-- 底部 -->
|
<!-- 底部 -->
|
||||||
<div class="el-register-footer">
|
<!-- <div class="el-register-footer">-->
|
||||||
<span>Copyright © 2018-2024 ruoyi.vip All Rights Reserved.</span>
|
<!-- <span>Copyright © 2018-2024 ruoyi.vip All Rights Reserved.</span>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -669,10 +669,12 @@ export default {
|
||||||
window.removeEventListener('scroll', this.handleScroll, true)
|
window.removeEventListener('scroll', this.handleScroll, true)
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
listHardwareVersion(this.queryParams).then(response => {
|
if (this.userName === "admin") {
|
||||||
this.hardwareVersionOptions = response.rows;
|
listHardwareVersion(this.queryParams).then(response => {
|
||||||
this.loading2 = false;
|
this.hardwareVersionOptions = response.rows;
|
||||||
});
|
this.loading2 = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
console.log("当前用户信息:",this.$store.state.user.name)
|
console.log("当前用户信息:",this.$store.state.user.name)
|
||||||
const sn = this.$route.params && this.$route.params.sn;
|
const sn = this.$route.params && this.$route.params.sn;
|
||||||
const vehicleNum = this.$route.params && this.$route.params.vehicleNum;
|
const vehicleNum = this.$route.params && this.$route.params.vehicleNum;
|
||||||
|
|
|
@ -304,7 +304,7 @@
|
||||||
<el-table v-loading="loading" :data="orderList" @selection-change="handleSelectionChange">
|
<el-table v-loading="loading" :data="orderList" @selection-change="handleSelectionChange">
|
||||||
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
<!-- <el-table-column label="代理商" align="center" prop="agentName" />-->
|
<!-- <el-table-column label="代理商" align="center" prop="agentName" />-->
|
||||||
<el-table-column label="店铺" align="center" prop="storeName" />
|
<!-- <el-table-column label="店铺" align="center" prop="storeName" />-->
|
||||||
<!-- <el-table-column label="订单id" align="center" prop="orderId" />-->
|
<!-- <el-table-column label="订单id" align="center" prop="orderId" />-->
|
||||||
<el-table-column label="订单号" width="150" align="center" prop="orderNo" />
|
<el-table-column label="订单号" width="150" align="center" prop="orderNo" />
|
||||||
<el-table-column label="第三方订单号" width="150" align="center" prop="outTradeNo" />
|
<el-table-column label="第三方订单号" width="150" align="center" prop="outTradeNo" />
|
||||||
|
@ -360,23 +360,12 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="手续费" align="center" prop="handlingCharge" />
|
<el-table-column label="手续费" align="center" prop="handlingCharge" />
|
||||||
<el-table-column label="服务费" align="center" prop="platformServiceFee" />
|
<el-table-column label="服务费" align="center" prop="platformServiceFee" />
|
||||||
<el-table-column label="运营商分账" align="center" prop="operatorDividend" />
|
<el-table-column label="支付渠道" align="center" prop="channelName" />
|
||||||
<el-table-column label="支付渠道id" align="center" prop="payChannel" />
|
|
||||||
<!-- <el-table-column label="配送方式" align="center" prop="deliveryMethod">-->
|
|
||||||
<!-- <template slot-scope="scope">-->
|
|
||||||
<!-- <dict-tag :options="dict.type.rl_distribution_mode" :value="scope.row.deliveryMethod"/>-->
|
|
||||||
<!-- </template>-->
|
|
||||||
<!-- </el-table-column>-->
|
|
||||||
<el-table-column label="取车时间" align="center" prop="pickupTime" width="180">
|
<el-table-column label="取车时间" align="center" prop="pickupTime" width="180">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ parseTime(scope.row.pickupTime, '{y}-{m}-{d}') }}</span>
|
<span>{{ parseTime(scope.row.pickupTime, '{y}-{m}-{d}') }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- <el-table-column label="取车城市" align="center" prop="pickupCity" />-->
|
|
||||||
<!-- <el-table-column label="取车地点 " align="center" prop="pickupLoc" />-->
|
|
||||||
<el-table-column label="取车经度" align="center" prop="pickupLon" />
|
|
||||||
<el-table-column label="取车纬度" align="center" prop="pickupLat" />
|
|
||||||
<el-table-column label="租车周期" align="center" prop="rentalPeriod" />
|
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<!-- <el-button-->
|
<!-- <el-button-->
|
||||||
|
|
|
@ -292,18 +292,10 @@ export default {
|
||||||
value: "1",
|
value: "1",
|
||||||
label: "全部数据权限"
|
label: "全部数据权限"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
value: "2",
|
|
||||||
label: "自定数据权限"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "3",
|
value: "3",
|
||||||
label: "本部门数据权限"
|
label: "本部门数据权限"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
value: "4",
|
|
||||||
label: "本部门及以下数据权限"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "5",
|
value: "5",
|
||||||
label: "仅本人数据权限"
|
label: "仅本人数据权限"
|
||||||
|
@ -602,4 +594,4 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -81,7 +81,7 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="售价" align="center" prop="price" />
|
<el-table-column label="售价" align="center" prop="price" />
|
||||||
<el-table-column label="说明" align="center" prop="explain" />
|
<el-table-column label="说明" align="center" prop="explain" />
|
||||||
<el-table-column label="骑行价格说明" align="center" prop="instructions" />
|
<!-- <el-table-column label="骑行价格说明" align="center" prop="instructions" />-->
|
||||||
<el-table-column label="超出单位" align="center" prop="outUnit" />
|
<el-table-column label="超出单位" align="center" prop="outUnit" />
|
||||||
<el-table-column label="超出价格" align="center" prop="outPrice" />
|
<el-table-column label="超出价格" align="center" prop="outPrice" />
|
||||||
<!-- <el-table-column label="是否删除:1-删除" align="center" prop="isDeleted" />-->
|
<!-- <el-table-column label="是否删除:1-删除" align="center" prop="isDeleted" />-->
|
||||||
|
@ -132,9 +132,9 @@
|
||||||
<el-form-item label="说明" prop="explain">
|
<el-form-item label="说明" prop="explain">
|
||||||
<el-input v-model="form.explain" type="textarea" placeholder="请输入内容" />
|
<el-input v-model="form.explain" type="textarea" placeholder="请输入内容" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="骑行价格说明" prop="instructions">
|
<!-- <el-form-item label="骑行价格说明" prop="instructions">-->
|
||||||
<el-input v-model="form.instructions" type="textarea" placeholder="请输入内容" />
|
<!-- <el-input v-model="form.instructions" type="textarea" placeholder="请输入内容" />-->
|
||||||
</el-form-item>
|
<!-- </el-form-item>-->
|
||||||
<el-form-item label="超出单位" prop="outUnit">
|
<el-form-item label="超出单位" prop="outUnit">
|
||||||
<!-- <el-input v-model="form.outUnit" placeholder="请输入超出单位" /> -->
|
<!-- <el-input v-model="form.outUnit" placeholder="请输入超出单位" /> -->
|
||||||
<el-select v-model="form.outUnit" placeholder="请选择超出租赁单位">
|
<el-select v-model="form.outUnit" placeholder="请选择超出租赁单位">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user