['设置中心']

This commit is contained in:
2021-09-24 15:11:14 +08:00
parent 08c56ea921
commit 3dc185139c
172 changed files with 13194 additions and 433 deletions

View File

@@ -1,6 +1,14 @@
<template>
<view>
节点中心
<view class="btns">
<view class="item" @click="$Router.push({name: 'instrumentBasics'})">基础信息</view>
<view class="item" @click="$Router.push({name: 'goodsManagement'})">商品权证</view>
<view class="item" @click="$Router.push({name: 'instrumentBasics'})">优惠券管理</view>
<view class="item" @click="$Router.push({name: 'instrumentBasics'})">店员管理</view>
<view class="item" @click="$Router.push({name: 'instrumentCustomer'})">成交客户</view>
<view class="item" @click="$Router.push({name: 'instrumentBasics'})">店员管理</view>
<view class="item" @click="$Router.push({name: 'setting'})">设置中心</view>
</view>
</view>
</template>
@@ -15,5 +23,15 @@
</script>
<style lang="scss">
.btns{
padding: 30rpx 0;
.item{
background: white;
margin: $margin;
border-radius: $radius/2;
line-height: 90rpx;
text-align: center;
font-weight: bold;
}
}
</style>