| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- <template>
- <view class="page_body">
- <!-- 头部 -->
- <nav-bar height="96" :title="state.title" :onlyTitle="true" :showHeaderborder="true" @GoBack="GoBack"></nav-bar>
- <view class="page_content">
- <uni-forms ref="valiForm" class="forms_style" :rules="rules" :model="state.formData" border
- labelWidth="160rpx" label-align="right">
- <uni-forms-item label="学年学期:" required name="schoolYearId">
- <uni-data-select v-model="state.formData.schoolYearId" :clear="false" placeholder="请选择学年学期"
- :localdata="state.schoolYearData" style="width: 320rpx;" @change="ChangSchoolYear"></uni-data-select>
- </uni-forms-item>
- <uni-forms-item label="归属分类:" required name="departmentId">
- <uni-data-select v-model="state.formData.departmentId" :clear="false" placeholder="请选择归属分类"
- :localdata="state.departmentData" style="width: 320rpx;"
- @change="GetMaterialCategoryData"></uni-data-select>
- </uni-forms-item>
- <uni-forms-item label="材料类目:" required name="materialCategory">
- <uni-data-select v-model="state.formData.materialCategory" :clear="false" placeholder="请选择材料类目"
- :localdata="state.materialCategoryData" style="width: 320rpx;"></uni-data-select>
- </uni-forms-item>
- <uni-forms-item label="任务名称:" required name="taskName">
- <uni-easyinput v-model="state.formData.taskName" :maxlength="100" placeholder="请输入任务名称" />
- </uni-forms-item>
- <uni-forms-item label="采集要求:" required name="collectionRequire">
- <uni-easyinput type="textarea" v-model="state.formData.collectionRequire"
- :style="state.easyinputStyle" placeholder="请输入采集要求"
- placeholderStyle="font-weight: 400;font-size: 28rpx;color: #999999;"></uni-easyinput>
- </uni-forms-item>
- <uni-forms-item label="采集周期:" required name="taskTime">
- <uni-datetime-picker type="daterange" :clear-icon="false" v-model="state.formData.taskTime"
- placeholder="请选择采集周期" style="width: 480rpx;" />
- </uni-forms-item>
- <uni-forms-item label="审核机制:" required name="auditMechanism">
- <uni-data-checkbox v-model="state.formData.auditMechanism" selectedColor="#2E64FA"
- selectedTextColor="#333333" :localdata="state.radioList"></uni-data-checkbox>
- </uni-forms-item>
- <uni-forms-item label="审核人:" required name="taskAuditors" v-if="state.formData.auditMechanism === 1">
- <zxz-uni-data-select v-model="state.formData.taskAuditors" collapse-tags :collapse-tags-num="1"
- filterable multiple dataKey="teacherName" dataValue="teacherId" :clear="false"
- :localdata="state.auditorsData"></zxz-uni-data-select>
- </uni-forms-item>
- <uni-forms-item label="采集对象:" required name="targetType">
- <view class="forms_target">
- <view class="target_left">
- <text class="left_text">{{targetTypeObj[state.formData.targetType]}}</text>
- <text class="left_text">已选32人</text>
- </view>
- <view class="target_right">
- <text>选择采集对象</text>
- <uni-icons class="right_icon" type="right"></uni-icons>
- </view>
- </view>
- </uni-forms-item>
- </uni-forms>
- </view>
- <view class="page_foot"><button class="btn_submit" type="primary" :loading="state.loading"
- @click="honorTypeConfirm">确认</button></view>
- </view>
- </template>
- <script setup>
- import navBar from '@/components/navBar.vue';
- import uniForms from '@/uni_modules/uni-forms/components/uni-forms/uni-forms.vue';
- import uniFormsItem from '@/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue';
- import uniEasyinput from '@/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue';
- import uniDataSelect from '@/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue';
- import uniDatetimePicker from '@/uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker.vue';
- import zxzUniDataSelect from '@/uni_modules/zxz-uni-data-select/components/zxz-uni-data-select/zxz-uni-data-select.vue';
- import uniIcons from '@/uni_modules/uni-icons/components/uni-icons/uni-icons.vue';
- import {
- getSchoolYearList,
- getCategoryList,
- queryTeacherInfo,
- getCollectionTaskInfo,
- insertCollectionTask,
- UpdateCollectionTask
- } from '@/reqApi/notification.js';
- import {
- reactive,
- ref,
- onMounted,
- nextTick
- } from 'vue';
- import {
- onLoad
- } from '@dcloudio/uni-app';
- const state = reactive({
- taskId: '', //任务id
- title: '', //标题
- type: '',
- formData: {
- schoolId:'',
- schoolYearId: '', //学年学期
- schoolYearCode:'',//学年学期code
- departmentId: '', //归属分类
- materialCategory: '', //材料类目
- taskName: '', //任务名称
- collectionRequire: '', //采集要求
- taskTime: [], //采集周期
- auditMechanism: 1, //审核机制 0-无需审核 1-需要审核
- taskAuditors: [], //审核人
- targetType:1,//采集对象 1-按部门,2-按学科,3-按年级,4-按权限,5-按学生
- },
- schoolYearData:[],//学年学期
- departmentData:[],//归属分类
- materialCategoryData:[],//材料类目
- auditorsData:[],//审核人
- radioList:[{//审核机制
- text:'需审核',
- value:1
- },{
- text:'无审核',
- value:0
- }],
- easyinputStyle: {
- color: '#303133',
- borderColor: '#E9E9E9'
- },
- loading: false
- })
- const targetTypeObj = {
- 1:'按部门',
- 2:'按学科',
- 3:'按年级',
- 4:'按权限',
- 5:'按学生'
- }
- const rules = ref({
- schoolYearId: {rules: [{required: true,errorMessage: '请选择学年学期'}]},
- departmentId: {rules: [{required: true,errorMessage: '请选择归属分类'}]},
- materialCategory: {rules: [{required: true,errorMessage: '请选择材料类目'}]},
- taskName: {rules: [{required: true,errorMessage: '请输入任务名称'}]},
- collectionRequire: {rules: [{required: true,errorMessage: '请输入采集要求'}]},
- taskTime: {rules: [{required: true,errorMessage: '请输入采集周期'}]},
- auditMechanism: {rules: [{required: true,errorMessage: '请选择审核机制'}]},
- targetType: {rules: [{required: true,errorMessage: '请选择采集对象'}]},
- });
- onLoad(async(option) => {
- state.taskId = option.taskId;
- state.title = state.taskId ? '编辑采集任务' : '新增采集任务';
- uni.setStorageSync('isLoadCollectTaskOverview', false); //返回列表页是否重新加载列表
- fetchSchoolYearList();//学年学期列表
- QueryTeacherInfo();//审核人
- await fetchCategoryList();//归属分类
- if(state.taskId){
- GetCollectionTaskInfo();
- }
- })
- // 学年学期列表
- const fetchSchoolYearList = async () => {
- try {
- const res = await getSchoolYearList();
- if (res.data && Array.isArray(res.data)) {
- const resData = res.data;
- state.schoolYearData = resData.map(item=>({
- ...item,
- text:item.schoolYearName,
- value:item.id
- }))
- const schoolYearId = state.schoolYearData?.[0]?.value || '';
- const schoolYearCode = state.schoolYearData?.[0]?.schoolYearCode || '';
- state.formData.schoolYearId = schoolYearId;//默认值学年id
- state.formData.schoolYearCode = schoolYearCode;//默认值学年code
- }
- } catch (error) {
- console.error('获取学年学期列表失败:', error);
- }
- };
- //改变学年学期
- const ChangSchoolYear = (val) => {
- state.formData.schoolYearId = val;//学年id
- state.formData.schoolYearCode = state.schoolYearData.find(item=>item.id==val)?.schoolYearCode || '';//学年code
- }
- // 归属分类
- const fetchCategoryList = async () => {
- try {
- const res = await getCategoryList();
- if (res.data && Array.isArray(res.data)) {
- const categoryData = res.data;
- state.departmentData = categoryData.map(item=>({
- ...item,
- text:item.categoryName,
- value:item.id
- }))
- const schoolId = state.departmentData?.[0]?.schoolId || '';
- state.formData.schoolId = schoolId;
- }
- } catch (error) {
- console.error('获取分类列表失败:', error);
- }
- };
- //改变归属分类
- const GetMaterialCategoryData = (val) => {
- const materialCategoryData = state.departmentData.find(item=>val == item.id)?.childList || [];
- state.materialCategoryData = materialCategoryData.map(item=>({
- ...item,
- text:item.categoryName,
- value:item.id
- }))
- }
- //审核人
- const QueryTeacherInfo = () => {
- queryTeacherInfo('').then(res=>{
- if(res.code == 200){
- state.auditorsData = res?.data || [];
- }
- })
- }
- //详情
- const GetCollectionTaskInfo = () => {
- getCollectionTaskInfo(state.taskId).then(res=>{
- if(res.code == 200){
- const resData = res?.data || null;
- state.formData.schoolId = resData?.schoolId || '';
- state.formData.schoolYearId = resData?.schoolYearId || '';//学年学期
- state.formData.schoolYearCode = resData?.schoolYearCode || '';//学年学期code
- state.formData.departmentId = resData?.departmentId || '';//学年学期code
- Object.keys(state.formData).forEach(key=>{
- if(key == 'taskTime'){//采集周期
- state.formData.taskTime = [resData.startTime,resData.endTime];
- }else if(key == 'taskAuditors'){//审核人
- const taskAuditorsList = resData?.taskAuditors || [];
- state.formData.taskAuditors = taskAuditorsList.map(item=>item.auditorId);
- }else{
- state.formData[key] = resData[key];
- if(key=='departmentId'){
- GetMaterialCategoryData(resData.departmentId);
- }
- }
- })
- }
- })
- }
- //提交
- const honorTypeConfirm = () => {
- let ruleList = {};
- if(state.formData.auditMechanism == 1){//审核人
- const taskAuditors = {
- taskAuditors: {rules: [{required: true,errorMessage: '请选择审核人'}]}
- }
- ruleList = {...rules.value,...taskAuditors};
- }else{
- ruleList = {...rules.value}
- }
- for (const key in ruleList) {
- if (state.formData?.[key] === "" || state.formData?.[key] === null || state.formData?.[key] && state.formData?.[key]?.length === 0) {
- const errorMessage = ruleList[key].rules[0].errorMessage;
- uni.showToast({
- title: errorMessage,
- icon: 'none'
- })
- return false
- }
- }
- state.loading = true;
- const auditorsData = state.auditorsData.filter(item=>state.formData.taskAuditors.includes(item.teacherId));
- const taskAuditors = auditorsData.map(item=>({
- auditorId:item.teacherId,
- auditorName:item.teacherName
- }))
- let params = {
- schoolId: state.formData.schoolId,
- schoolYearId: state.formData.schoolYearId,
- schoolYearCode: state.formData.schoolYearCode,
- departmentId: state.formData.departmentId,
- materialCategory: state.formData.materialCategory,
- taskName: state.formData.taskName,
- collectionRequire: state.formData.collectionRequire,
- startTime: state.formData.taskTime[0],
- endTime: state.formData.taskTime[1],
- targetType: state.formData.targetType,
- auditMechanism: state.formData.auditMechanism,//审核机制 0-无需审核 1-需要审核
- taskAuditors: taskAuditors,//审核人
- taskTargets: []//采集对象明细
- }
- if (state.taskId) {
- params.id = state.taskId;
- UpdateCollectionTask(params).then(res => {
- if (res.code == 200) {
- uni.showToast({
- title: '编辑成功!',
- icon: 'none'
- })
- uni.setStorageSync('isLoadCollectTaskOverview', true); //返回列表页是否重新加载列表
- GoBack();
- }
- }).finally(() => {
- state.loading = false;
- })
- } else { //新建
- insertCollectionTask(params).then(res => {
- if (res.code == 200) {
- uni.showToast({
- title: '新建成功!',
- icon: 'none'
- })
- uni.setStorageSync('isLoadCollectTaskOverview', true); //返回列表页是否重新加载列表
- GoBack();
- }
- }).finally(() => {
- state.loading = false;
- })
- }
- }
- const GoBack = () => {
- uni.navigateBack({
- delta: 1
- });
- }
- </script>
- <style lang="scss" scoped>
- .page_body {
- height: 100%;
- min-height: auto;
- overflow: hidden;
- }
- .page_content {
- height: calc(100% - 250rpx);
- overflow: auto;
- }
- .forms_style {
- :deep(.uni-forms-item) {
- &.uni-forms-item--border {
- border-top: 0;
- border-bottom: 2rpx solid #F3F3F3;
- align-items: center;
- }
- .forms_target{
- display: flex;
- align-items: center;
- justify-content: space-between;
- .target_left{
- flex:1;
- font-weight: 400;
- font-size: 28rpx;
- color: #2E64FA;
- .left_text{
- flex-shrink: 0;
- &:last-child{
- margin-left: 8rpx;
- }
- }
- }
- .target_right{
- flex-shrink: 0;
- font-weight: 400;
- font-size: 28rpx;
- color: #2E64FA;
- display: inline-flex;
- align-items: center;
- gap:8rpx;
- .right_icon{
- font-size: 24rpx;
- color: #2E64FA !important;
- }
- }
- }
- }
- }
- .page_foot {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- padding: 20rpx 24rpx;
- background-color: #FFFFFF;
- .btn_submit {
- width: 100%;
- height: 88rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #2E64FA !important;
- border-radius: 20rpx;
- color: #FFFFFF;
- font-size: 28rpx;
- }
- }
- </style>
|