1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div id="clickBtn">
- <el-row>
- <el-col :span="24">
- <el-col :span="24" class="native">
- <van-cell is-link @click="$router.push({ path: '/user/leave' })">请假</van-cell>
- </el-col>
- <el-col :span="24" class="native">
- <van-cell is-link @click="$router.push({ path: '/user/checkWork' })">考勤</van-cell>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'clickBtn',
- props: {},
- components: {},
- data: () => ({}),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .native {
- height: 50px;
- background-color: #fff;
- margin: 0 0 5px 0;
- }
- /deep/.van-cell {
- line-height: 30px;
- }
- /deep/.van-cell__right-icon {
- height: 30px;
- line-height: 30px;
- }
- </style>
|