123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <view>
- <view>
- <uni-search-bar :radius="100" @confirm="search" @input="input" @cancel="cancel"></uni-search-bar>
- </view>
- <uni-list>
- <uni-list-item v-for="(item, index) in listData" :key="index" @click="goDetail(item.checkCode)" clickable>
- <view slot="body" class="slot-box">
- <view class="row">
- <view class="column-left">编号:</view>
- <view class="column-right">{{item.checkCode}}</view>
- </view>
- <view class="row">
- <view class="column-left">工程名称:</view>
- <view class="column-right">{{item.projectName}}</view>
- </view>
- <view class="row">
- <view class="column-left">日期:</view>
- <view class="column-right">{{item.checkDateStr}}</view>
- </view>
- <view class="row">
- <view class="column-left">状态:</view>
- <view class="column-right">{{item.statusName}}</view>
- </view>
- </view>
- </uni-list-item>
- </uni-list>
- <view style="bottom: 15px;right:10px;position: fixed;z-index: 50;">
- <router-link to="/pages/template/SafeQualityCheckAdd/SafeQualityCheckAdd" style="text-decoration: none;" title="质量安全检查添加">
- <uni-icons type="plus-filled" size="80" color="#5678FE"></uni-icons>
- </router-link>
- </view>
- <uni-load-more :status="status" :icon-size="16" :content-text="contentText" />
- <!-- 底部导航开始 /////////////////////////////////////////////////////////////-->
- <!-- is_lhp判断是否为刘海屏在main.js里,好像uniapp有一个css变量获取刘海屏的安全区域 -->
- <view class="tabBar" :style="{height:is_lhp?'140rpx':'98rpx'}">
- <!-- 导航的中间圆圈 -->
- <view class="border_box" :style="{paddingBottom:is_lhp?'40rpx':''}">
- <view class="tabBar_miden_border"></view>
- </view>
- <view class="tabBar_list" :style="{paddingBottom:is_lhp?'40rpx':''}">
- <view v-for="(item) in tab_nav_list" :key="item.id" :class="{'tabBar_item':item.id!=2,'tabBar_item2':item.id==2}"
- @tap="cut_index(item.id)">
- <image v-if="show_index == item.id" :src="`/static/tabBar/${item.id+1}${item.id+1}.png`"></image>
- <image v-else :src="`/static/tabBar/${item.id+1}.png`"></image>
- <view :class="{'tabBar_name':true,'nav_active':show_index == item.id}">{{item.name}}</view>
- </view>
- </view>
- </view>
- <!-- 底部导航结束 /////////////////////////////////////////////////////////////-->
- </view>
- </template>
- <script>
- import {
- GetSafeQualityCheckDTOs
- } from "@/common/api/SafeQualityCheckApi.js";
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- export default {
- components: {
- uniLoadMore
- },
- data() {
- return {
- listData: [],
- searchvalue: '',
- last_id: '',
- reload: false,
- status: 'more',
- /* 底部导航 */
- show_index: 4, //控制显示那个组件
- tab_nav_list: [{
- 'id': 0,
- 'name': '首页'
- }, {
- 'id': 1,
- 'name': '签证申请'
- }, {
- 'id': 2,
- 'name': '入库单'
- }, {
- 'id': 3,
- 'name': '领料单'
- }, {
- 'id': 4,
- 'name': '质量检查'
- }], //菜单列表
- is_lhp: false,
- contentText: {
- contentdown: '上拉加载更多',
- contentrefresh: '加载中',
- contentnomore: '没有更多'
- }
- };
- },
- onLoad() {
- console.info("当前登录状态:" + this.$store.state.isLogin);
- //console.info(this);
- this.$util.persistLogin(this);
- let type = this.$util.getQuery("type") - 0;
- if (type == 1) {
- uni.setNavigationBarTitle({
- title: '安全检查'
- });
- } else {
- uni.setNavigationBarTitle({
- title: '质量检查'
- });
- }
- },
- onPullDownRefresh() {
- this.reload = true;
- this.last_id = '';
- this.getList();
- },
- onReachBottom() {
- this.status = 'more';
- this.getList();
- },
- created: function() {
- this.getList();
- },
- methods: {
- getList() {
- let that = this;
- let type = this.$util.getQuery("type") - 0;
- let search = this.searchvalue;
- GetSafeQualityCheckDTOs(type, search).then((res) => {
- console.info(res);
- that.listData = [];
- res.forEach(function(item, index, array) {
- that.$set(that.listData, index, item);
- });
- console.info(that.listData);
- });
- },
- goDetail: function(id) {
- console.info('检查godetail', id);
- uni.navigateTo({
- url: '/pages/template/GetSafeQualityCheckDTO/GetSafeQualityCheckDTO?type=' + this.$util.getQuery("type") +
- '&id=' + id
- });
- },
- search(res) { //回车搜索
- this.searchvalue = res.value; //赋值
- this.getList(); //调用搜索方法
- },
- input(res) {
- this.searchVal = res.value
- },
- cancel(res) {
- console.info('点击取消,输入值为:' + res.value);
- },
- // 切换组件
- cut_index(type) {
- console.log('----------------------------------', type)
- let _this = this
- _this.show_index = type
- if (_this.show_index == 0) {
- uni.navigateTo({
- url: '/pages/index/index'
- })
- } else if (_this.show_index == 1) {
- uni.navigateTo({
- url: '/pages/template/requisitionlist/requisitionlist'
- })
- } else if (_this.show_index == 2) {
- uni.navigateTo({
- url: '/pages/template/GetMaterialIns/GetMaterialIns'
- })
- } else if (_this.show_index == 3) {
- uni.navigateTo({
- url: '/pages/template/GetMaterialOuts/GetMaterialOuts'
- })
-
- }else if (_this.show_index == 4) {
- uni.navigateTo({
- url: '/pages/template/GetSafeQualityCheckDTOs/GetSafeQualityCheckDTOs?type=0'
- })
-
- }
- }
- }
- };
- </script>
- <style scoped>
- </style>
|