|
@@ -211,7 +211,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
- <div class="content-item" :style="`opacity: ${new Date(dateValue.selectDay).getDay() === $store.state.app.weeklySubmitDay ? 1 : 0.3};`">
|
|
|
+ <div class="content-item" :style="`opacity: ${dateType !== 'day' || new Date(dateValue.selectDay).getDay() === $store.state.app.weeklySubmitDay ? 1 : 0.3};`">
|
|
|
<div class="label">
|
|
|
<img src="@/assets/images/business/center-statistics-icon.png"/>
|
|
|
周报
|
|
@@ -305,6 +305,7 @@ import ButtonSwitchCom from '../../common/button-switch.vue'
|
|
|
import * as Handle from '../../common/handle'
|
|
|
import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
import {downLoadBlob} from "@/utils/downLoadUrl";
|
|
|
+import {zbyWorkbenchCheckWeek} from "@/api/modules/workbench";
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: '',
|
|
@@ -333,40 +334,40 @@ export default defineComponent({
|
|
|
},
|
|
|
week: {
|
|
|
sign: {
|
|
|
- cqts: 20,
|
|
|
- qqts: 2,
|
|
|
- cdcs: 4,
|
|
|
- ztcs: 1,
|
|
|
- qkcs: 1
|
|
|
+ cqts: 0,
|
|
|
+ qqts: 0,
|
|
|
+ cdcs: 0,
|
|
|
+ ztcs: 0,
|
|
|
+ qkcs: 0
|
|
|
},
|
|
|
daily: {
|
|
|
- ytjts: 20,
|
|
|
- wtjts: 20,
|
|
|
- ytjfs: 20
|
|
|
+ ytjts: 0,
|
|
|
+ wtjts: 0,
|
|
|
+ ytjfs: 0
|
|
|
},
|
|
|
weekly: {
|
|
|
- ytjts: 20,
|
|
|
- wtjts: 20,
|
|
|
- ytjfs: 20
|
|
|
+ ytjts: 0,
|
|
|
+ wtjts: 0,
|
|
|
+ ytjfs: 0
|
|
|
},
|
|
|
},
|
|
|
month: {
|
|
|
sign: {
|
|
|
- cqts: 120,
|
|
|
- qqts: 12,
|
|
|
- cdcs: 14,
|
|
|
- ztcs: 11,
|
|
|
- qkcs: 11
|
|
|
+ cqts: 0,
|
|
|
+ qqts: 0,
|
|
|
+ cdcs: 0,
|
|
|
+ ztcs: 0,
|
|
|
+ qkcs: 0
|
|
|
},
|
|
|
daily: {
|
|
|
- ytjts: 120,
|
|
|
- wtjts: 120,
|
|
|
- ytjfs: 120
|
|
|
+ ytjts: 0,
|
|
|
+ wtjts: 0,
|
|
|
+ ytjfs: 0
|
|
|
},
|
|
|
weekly: {
|
|
|
- ytjts: 120,
|
|
|
- wtjts: 120,
|
|
|
- ytjfs: 120
|
|
|
+ ytjts: 0,
|
|
|
+ wtjts: 0,
|
|
|
+ ytjfs: 0
|
|
|
},
|
|
|
},
|
|
|
},
|
|
@@ -576,6 +577,53 @@ export default defineComponent({
|
|
|
state.loading = false
|
|
|
})
|
|
|
}
|
|
|
+ const getWeekInfo = () => {
|
|
|
+ state.loading = true
|
|
|
+ state.dataInfo.week = {
|
|
|
+ sign: {
|
|
|
+ cqts: 0,
|
|
|
+ qqts: 0,
|
|
|
+ cdcs: 0,
|
|
|
+ ztcs: 0,
|
|
|
+ qkcs: 0
|
|
|
+ },
|
|
|
+ daily: {
|
|
|
+ ytjts: 0,
|
|
|
+ wtjts: 0,
|
|
|
+ ytjfs: 0
|
|
|
+ },
|
|
|
+ weekly: {
|
|
|
+ ytjts: 0,
|
|
|
+ wtjts: 0,
|
|
|
+ ytjfs: 0
|
|
|
+ },
|
|
|
+ }
|
|
|
+ that.$api.zbyWorkbenchCheckWeek({
|
|
|
+ deptId: store.state.app.userInfo.dept.id,
|
|
|
+ startTime: store.getters['app/yearWeeks'].map.get(state.dateValue.selectWeek).dateStr[0],
|
|
|
+ endTime: store.getters['app/yearWeeks'].map.get(state.dateValue.selectWeek).dateStr[1],
|
|
|
+ }).then(res => {
|
|
|
+ if (res.code === 200 && res.data) {
|
|
|
+ state.dataInfo.week.sign.cqts = res.data.days
|
|
|
+ state.dataInfo.week.sign.qqts = res.data.delDays
|
|
|
+ state.dataInfo.week.sign.cdcs = res.data.lateDays
|
|
|
+ state.dataInfo.week.sign.ztcs = res.data.earlyDays
|
|
|
+ state.dataInfo.week.sign.qkcs = res.data.lackDays
|
|
|
+ state.dataInfo.week.daily.ytjts = res.data.dailySubmit
|
|
|
+ state.dataInfo.week.daily.wtjts = res.data.dailyNotSubmit
|
|
|
+ state.dataInfo.week.daily.ytjfs = res.data.dailySubmit
|
|
|
+ state.dataInfo.week.weekly.ytjts = res.data.weekSubmit
|
|
|
+ state.dataInfo.week.weekly.wtjts = res.data.weekNotSubmit
|
|
|
+ state.dataInfo.week.weekly.ytjfs = res.data.weekSubmit
|
|
|
+ } else {
|
|
|
+ ElMessage.error(res.message)
|
|
|
+ }
|
|
|
+ state.loading = false
|
|
|
+ }).catch(() => {
|
|
|
+ state.loading = false
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const getMonthInfo = () => {}
|
|
|
const initDictionary = () => {
|
|
|
store.dispatch('dictionary/LOAD_DICT_LIST', 'sign_type')
|
|
|
store.dispatch('dictionary/LOAD_DICT_LIST', 'sign_status')
|
|
@@ -606,6 +654,12 @@ export default defineComponent({
|
|
|
watch(() => state.dateValue.selectDay, () => {
|
|
|
getDayInfo()
|
|
|
})
|
|
|
+ watch(() => state.dateValue.selectWeek, () => {
|
|
|
+ getWeekInfo()
|
|
|
+ })
|
|
|
+ watch(() => state.dateValue.selectMonth, () => {
|
|
|
+ getMonthInfo()
|
|
|
+ })
|
|
|
onMounted(() => {
|
|
|
initDictionary()
|
|
|
initStatic()
|