37 lines
920 B
Vue
37 lines
920 B
Vue
<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>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</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>
|