放入基础模块

This commit is contained in:
唐明明
2021-09-24 11:36:42 +08:00
parent e0ee86e816
commit c50a9e3abc
132 changed files with 4149 additions and 5751 deletions

View File

@@ -1,6 +1,13 @@
<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>
</view>
</template>
@@ -15,5 +22,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>