152 lines
2.6 KiB
Vue
152 lines
2.6 KiB
Vue
<template>
|
|
<view class="work-container">
|
|
<!-- 宫格组件 -->
|
|
<uni-section title="管理工具" type="line"></uni-section>
|
|
<view class="grid-body">
|
|
<uni-grid :column="4" :showBorder="false" @change="changeGrid">
|
|
<uni-grid-item v-for="(item, index) in workOptions" :key="index" :index="index">
|
|
<view class="grid-item-box">
|
|
<uni-icons :type="item.icon" size="30"></uni-icons>
|
|
<text class="text">{{ item.name }}</text>
|
|
</view>
|
|
</uni-grid-item>
|
|
</uni-grid>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { fail } from 'assert';
|
|
export default {
|
|
data() {
|
|
return {
|
|
// 工具模块
|
|
workOptions: [
|
|
// {
|
|
// name: '标签扫码',
|
|
// icon: 'scan',
|
|
// url: '/pages/tool/scan'
|
|
// },
|
|
// {
|
|
// name: '参数设置',
|
|
// icon: 'gear-filled',
|
|
// url: ''
|
|
// },
|
|
// {
|
|
// name: '通知公告',
|
|
// icon: 'chat-filled',
|
|
// url: ''
|
|
// },
|
|
// {
|
|
// name: '操作日志',
|
|
// icon: 'wallet-filled',
|
|
// url: ''
|
|
// },
|
|
{
|
|
name: '故障响应',
|
|
icon: 'calendar-filled',
|
|
url: '/pages/produceManagement/andon/respond'
|
|
},
|
|
{
|
|
name: '响应记录',
|
|
icon: 'wallet-filled',
|
|
url: '/pages/produceManagement/andon/record'
|
|
},
|
|
]
|
|
};
|
|
},
|
|
methods: {
|
|
clickBannerItem(item) {
|
|
console.info(item);
|
|
},
|
|
changeSwiper(e) {
|
|
this.current = e.detail.current;
|
|
},
|
|
changeGrid(e) {
|
|
const _url = this.workOptions[e.detail.index].url;
|
|
uni.navigateTo({
|
|
url: _url,
|
|
fail: () => {
|
|
this.$modal.showToast('模块建设中~');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/* #ifndef APP-NVUE */
|
|
page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
min-height: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
view {
|
|
font-size: 14px;
|
|
line-height: inherit;
|
|
}
|
|
|
|
/* #endif */
|
|
|
|
.text {
|
|
text-align: center;
|
|
font-size: 26rpx;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.grid-item-box {
|
|
flex: 1;
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.uni-margin-wrap {
|
|
width: 690rpx;
|
|
width: 100%;
|
|
}
|
|
|
|
.swiper {
|
|
height: 300rpx;
|
|
}
|
|
|
|
.swiper-box {
|
|
height: 150px;
|
|
}
|
|
|
|
.swiper-item {
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #fff;
|
|
height: 300rpx;
|
|
line-height: 300rpx;
|
|
}
|
|
|
|
@media screen and (min-width: 500px) {
|
|
.uni-swiper-dot-box {
|
|
width: 400px;
|
|
/* #ifndef APP-NVUE */
|
|
margin: 0 auto;
|
|
/* #endif */
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|