31 lines
773 B
Vue
31 lines
773 B
Vue
<template>
|
|
<view class="page padding">
|
|
<view class="padding bg-white radius flex justify-between">
|
|
<view>危化品使用安全专题检查</view>
|
|
<view>
|
|
<button class="bg-blue cu-btn margin-right-xs" @click="edit()">编辑</button>
|
|
<button class="bg-red cu-btn">删除</button>
|
|
</view>
|
|
</view>
|
|
<button class="lg cuIcon-add bg-blue round margin-top-xl">新增检查表</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { onLoad } from '@dcloudio/uni-app'
|
|
import { useRouter } from 'vue-router'
|
|
const router = useRouter()
|
|
const edit = () => {
|
|
uni.navigateTo({
|
|
url: '/pages/editchecklist/editchecklist'
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page {
|
|
min-height: 100vh;
|
|
background: #EBF2FC;
|
|
}
|
|
</style> |