|
|
|
|
@ -29,17 +29,19 @@
|
|
|
|
|
|
|
|
|
|
const fenzhen_list = ref(false);
|
|
|
|
|
const check_tip_show = ref(false);
|
|
|
|
|
const checkTipShow = () => {
|
|
|
|
|
check_tip_show.value = true
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '所有项目已完成,请进行检后签到',
|
|
|
|
|
showCancel: false,
|
|
|
|
|
confirmText: '确定',
|
|
|
|
|
success: function(res) {
|
|
|
|
|
const checkTipShow = (show) => {
|
|
|
|
|
if (!!show) {
|
|
|
|
|
check_tip_show.value = true
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '所有项目已完成,请进行检后签到',
|
|
|
|
|
showCancel: false,
|
|
|
|
|
confirmText: '确定',
|
|
|
|
|
success: function(res) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const getFenzhenList = async (loading = true) => {
|
|
|
|
|
if (!!loading) {
|
|
|
|
|
@ -52,7 +54,7 @@
|
|
|
|
|
$response(response, () => {
|
|
|
|
|
fenzhen_list.value = response.data;
|
|
|
|
|
if (!check_tip_show.value) {
|
|
|
|
|
checkTipShow()
|
|
|
|
|
checkTipShow(response.data.check_tip)
|
|
|
|
|
}
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
if (!!window.location.href.includes('/pages/user/fenzhen/fenzhen') &&
|
|
|
|
|
@ -270,7 +272,8 @@
|
|
|
|
|
|
|
|
|
|
<view class="more_wrapper mt-20rpx" v-if="i.more === fenzhen_active && !!fenzhen_info">
|
|
|
|
|
<template v-for="(item, index) in fenzhen_info.list" :key="index">
|
|
|
|
|
<view class="between h-90rpx b-0 b-b-1 b-solid b-#EAEAEA" v-if="item.status == 1">
|
|
|
|
|
<view class="between h-90rpx b-0 b-b-1 b-solid b-#EAEAEA"
|
|
|
|
|
v-if="item.status == 1 || item.status == 2">
|
|
|
|
|
<view class="text-#000000 text-30rpx">{{ item.name }}</view>
|
|
|
|
|
<view class="center">
|
|
|
|
|
<text @click="qijian(item)"
|
|
|
|
|
|