|
- <template>
- <view class="page">
- <view v-if="ready">
- <l-select
- @input="setValue('Acc_StuDayRoutine.DeptNo', $event)"
- :value="getValue('Acc_StuDayRoutine.DeptNo')"
- :disabled="!edit"
- :range="dataSource.Acc_StuDayRoutine.DeptNo"
- @change="DeptNoChange"
- title="专业部"
- required
- />
- <l-select
- @input="setValue('Acc_StuDayRoutine.MajorNo', $event)"
- :value="getValue('Acc_StuDayRoutine.MajorNo')"
- :disabled="!edit"
- :range="dataSource.Acc_StuDayRoutine.MajorNo"
- @change="MajorNoChange"
- title="专业"
- required
- />
- <l-select
- @input="setValue('Acc_StuDayRoutine.ClassNo', $event)"
- :value="getValue('Acc_StuDayRoutine.ClassNo')"
- :disabled="!edit"
- :range="dataSource.Acc_StuDayRoutine.ClassNo"
- @change="ClassNoChange"
- title="班级"
- required
- />
- <l-select
- @input="setValue('Acc_StuDayRoutine.StuNo', $event)"
- :value="getValue('Acc_StuDayRoutine.StuNo')"
- :disabled="!edit"
- :range="dataSource.Acc_StuDayRoutine.StuNo"
- title="学生"
- required
- />
-
- <l-date-picker
- @input="setValue('Acc_StuDayRoutine.Date', $event)"
- :value="getValue('Acc_StuDayRoutine.Date')"
- :disabled="!edit"
- title="日期"
- required
- />
- <l-input
- @input="setValue('Acc_StuDayRoutine.AddScore', $event)"
- :value="getValue('Acc_StuDayRoutine.AddScore')"
- :disabled="!edit"
- title="奖分"
- />
- <l-input
- @input="setValue('Acc_StuDayRoutine.MinusScore', $event)"
- :value="getValue('Acc_StuDayRoutine.MinusScore')"
- :disabled="!edit"
- title="扣分"
- />
- <l-textarea
- @input="setValue('Acc_StuDayRoutine.Reason', $event)"
- :value="getValue('Acc_StuDayRoutine.Reason')"
- :readonly="!edit"
- title="奖扣分原因"
- required
- />
- <!-- 附件上传 -->
- <l-input
- @input="setValue('Acc_StuDayRoutine.Files', $event)"
- :value="getValue('Acc_StuDayRoutine.Files')"
- disabled="disabled"
- v-show="false"
- title="附件值"
- />
- <uploadFile :number="5" :folderId="folderId" :value="fileList" :readonly="!edit" :title="fileTitle" :required="false"></uploadFile>
-
-
- </view>
-
- <view v-if="ready" class="bg-white margin-tb padding" style="padding-top: 0; overflow: hidden;">
- <l-button v-if="edit" @click="action('save')" size="lg" color="green" class="block margin-top" block>
- 提交保存
- </l-button>
- <l-button v-if="edit && mode !== 'create'" @click="action('reset')" size="lg" line="red" class="block margin-top" block>
- 取消编辑
- </l-button>
- </view>
- </view>
- </template>
-
-
- <script>
- /*
- * 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架(http://www.learun.cn)
- * Copyright (c) 2013-2020 上海力软信息技术有限公司
- * 创建人:超级管理员
- * 日 期:2022-09-16 09:37
- * 描 述:学生日常规管理
- */
-
- /**
- * 本段代码由移动端代码生成器输出,移动端须 2.2.0 版本及以上可以使用
- * 请在移动端 /pages.json 中的 pages 字段中添加一条记录:
- * { "path": "pages/LogisticsManagement/Acc_StuDayRoutine/single", "style": { "navigationBarTitleText": "表单详情页" } }
- *
- * (navigationBarTitleText 字段为本页面的标题文本,可以修改)
- * (必须自行操作该步骤,力软代码生成器不会自动帮您修改 /pages.json 文件)
- */
-
- import get from 'lodash/get'
- import set from 'lodash/set'
- import moment from 'moment'
- import customPageMixins from '@/common/custompage.js'
- import uploadFile from '@/components/upload-file2.vue'
-
- export default {
- mixins: [customPageMixins],
- components:{
- uploadFile,
- },
- data() {
- return {
- // 页面相关参数
- id: null,
- mode: null,
- edit: null,
- ready: false,
- fileList:[],//附件列表
- folderId:null,//附件随机文件夹id
- fileTitle:'附件上传',//附件label值
-
- // 表单数据
- current: {},
- origin: {},
-
- // 表单项数据结构
- scheme: {
- Acc_StuDayRoutine: {
- DeptNo: { type: 'select', title: '专业部', dataSource: '1', dataSourceId: 'CdDeptInfo,deptname,deptno', verify: 'NotNull' },
- MajorNo: { type: 'select', title: '专业', dataSource: '1', dataSourceId: 'CdMajorInfo,majorname,majorno', verify: 'NotNull' },
- ClassNo: { type: 'select', title: '班级', dataSource: '1', dataSourceId: 'bjsj,classname,classno', verify: 'NotNull' },
- StuNo: { type: 'select', title: '学生', dataSource: '1', dataSourceId: 'StuInfoBasic,stuname,stuno', verify: 'NotNull' },
- Date: { type: 'datetime', title: '日期', dateformat: '0' , verify: 'NotNull'},
- AddScore: { type: 'text', title: '奖分' },
- MinusScore: { type: 'text', title: '扣分' },
- Reason: { type: 'textarea', title: '奖扣分原因' , verify: 'NotNull'},
- Files: { type: "text", title: "附件上传" },
- },
-
- },
-
- // 数据源
- dataSource: {
- Acc_StuDayRoutine: {
- DeptNo: [],
- MajorNo: [],
- ClassNo: [],
- StuNo:[],
- },
-
- } ,
-
- StuNoAll:[],
- }
- },
-
- async onLoad({ type, id }) {
- await this.init(type, id)
- },
-
- methods: {
- // 页面初始化
- async init(type, id) {
- this.folderId=this.GUID();
- // console.log('附件随机文件夹id:'+this.folderId);
-
- this.LOADING('加载数据中...')
-
- this.id = id
- this.mode = type
- this.edit = ['create', 'edit'].includes(this.mode)
-
- // 拉取表单数据,同时拉取所有来自数据源的选单数据
- await Promise.all([
- this.FETCH_DATASOURCE('CdDeptInfo').then(result => {
- this.dataSource.Acc_StuDayRoutine.DeptNo = result.data.sort((a,b)=>{return a.deptsort-b.deptsort}).map(t => ({ text: t.deptname, value: t.deptno }))
- }),
- this.FETCH_DATASOURCE('CdMajorInfo').then(result => {
- this.dataSource.Acc_StuDayRoutine.MajorNo = result.data.sort((a,b)=>{return a.majorno-b.majorno}).map(t => ({ text: t.majorname, value: t.majorno }))
- }),
- this.FETCH_DATASOURCE('bjsj').then(result => {
- this.dataSource.Acc_StuDayRoutine.ClassNo = result.data.sort((a,b)=>{return b.classno-a.classno}).map(t => ({ text: t.classname, value: t.classno }))
- }),
- this.FETCH_DATASOURCE('StuInfoBasic').then(result => {
- this.dataSource.Acc_StuDayRoutine.StuNo = result.data.map(t => ({ text: t.stuname, value: t.stuno,classno:t.classno }))
- this.StuNoAll = JSON.parse(JSON.stringify(this.dataSource.Acc_StuDayRoutine.StuNo))
- }),
-
-
- () => {}
- ])
- await this.fetchForm()
-
- this.ready = true
- this.HIDE_LOADING()
- },
-
- // 加载表单数据
- async fetchForm() {
- if (this.mode === 'create') {
- this.origin = await this.getDefaultForm()
-
- } else {
- const result = await this.HTTP_GET('learun/adms/LogisticsManagement/Acc_StuDayRoutine/form', this.id)
- this.origin = await this.formatFormData(result)
- }
- this.current = this.COPY(this.origin)
-
- //加载附件值数据
- // console.log('附件值赋值前:'+this.getValue('Acc_StuDayRoutine.Files'));
- if (this.getValue('Acc_StuDayRoutine.Files') == ""||this.getValue('Acc_StuDayRoutine.Files') == undefined ||this.getValue('Acc_StuDayRoutine.Files') == null) {
- this.setValue('Acc_StuDayRoutine.Files',this.folderId);
- // console.log('附件值赋值后:'+this.getValue('Acc_StuDayRoutine.Files'));
- }else{
- this.folderId=this.getValue('Acc_StuDayRoutine.Files');
- // console.log('文件夹id赋值后:'+this.folderId);
- //请求‘获取附件列表’接口
- this.fileList = await this.FETCH_FILEList(this.getValue('Acc_StuDayRoutine.Files'));
- }
-
- // console.log('origin:'+JSON.stringify(this.origin) )
- // console.log('current:'+JSON.stringify(this.current))
- },
-
- // 点击 「编辑」、「重置」、「保存」、「删除」 按钮
- async action(type) {
- switch (type) {
- case 'edit':
- this.edit = true
- break
-
- case 'reset':
- this.current = this.COPY(this.origin)
- this.edit = false
- break
-
- case 'save':
- const verifyResult = this.verifyForm()
- if (verifyResult.length > 0) {
- this.CONFIRM('表单验证失败', verifyResult.join('\n'))
- return
- }
-
- if (!(await this.CONFIRM('提交确认', '确定要提交本页表单内容吗?', true))) {
- return
- }
-
-
- this.LOADING('正在提交...')
- const postData = await this.getPostData(this.id)
- // console.log('页面提交数据:'+JSON.stringify(postData));
-
- this.HTTP_POST('learun/adms/LogisticsManagement/Acc_StuDayRoutine/save', postData, '表单提交保存失败').then(success => {
- this.HIDE_LOADING()
- if (!success) {
- return
- }
-
- this.EMIT('LogisticsManagementAcc_StuDayRoutine-list-change')
- this.NAV_BACK()
- this.TOAST('提交保存成功')
- })
- break
-
- case 'delete':
- if (!(await this.CONFIRM('删除项目', '确定要删除本项吗?', true))) {
- return
- }
-
- this.LOADING('提交删除中...')
- this.HTTP_POST('learun/adms/LogisticsManagement/Acc_StuDayRoutine/delete', this.id, '删除失败').then(success => {
- this.HIDE_LOADING()
- if (!success) {
- return
- }
-
- this.EMIT('LogisticsManagementAcc_StuDayRoutine-list-change')
- this.NAV_BACK()
- this.this.TOAST('删除成功', 'success')
- })
- break
-
- default: break
- }
- },
-
- // 获取表单值
- getValue(path) {
- return get(this.current, path)
- },
-
- // 设置表单值
- setValue(path, val) {
- set(this.current, path, val)
- },
-
-
- //多条件查询:专业部改变事件
- async DeptNoChange(){
- if (this.getValue('Acc_StuDayRoutine.DeptNo') != null && this.getValue('Acc_StuDayRoutine.DeptNo')!=undefined && this.getValue('Acc_StuDayRoutine.DeptNo') != "") {
- this.FETCH_DATASOURCE('CdMajorInfo').then(result => {
- this.dataSource.Acc_StuDayRoutine.MajorNo = result.data.sort((a,b)=>{return a.majorno-b.majorno}).filter(t=>t.deptno===this.getValue('Acc_StuDayRoutine.DeptNo')).map(t => ({ text: t.majorname, value: t.majorno }))
- })
- }else{
- this.FETCH_DATASOURCE('CdMajorInfo').then(result => {
- this.dataSource.Acc_StuDayRoutine.MajorNo = result.data.sort((a,b)=>{return a.majorno-b.majorno}).map(t => ({ text: t.majorname, value: t.majorno }))
- })
- }
- this.setValue('Acc_StuDayRoutine.MajorNo','');
- this.setValue('Acc_StuDayRoutine.ClassNo','');
- this.setValue('Acc_StuDayRoutine.StuNo','');
- },
- //多条件查询:专业改变事件
- async MajorNoChange(){
- if (this.getValue('Acc_StuDayRoutine.MajorNo') != null && this.getValue('Acc_StuDayRoutine.MajorNo')!=undefined && this.getValue('Acc_StuDayRoutine.MajorNo') != "") {
- this.FETCH_DATASOURCE('bjsj').then(result => {
- this.dataSource.Acc_StuDayRoutine.ClassNo = result.data.sort((a,b)=>{return b.classno-a.classno}).filter(t=>t.majorno===this.getValue('Acc_StuDayRoutine.MajorNo')).map(t => ({ text: t.classname, value: t.classno }))
- })
- }else{
- this.FETCH_DATASOURCE('bjsj').then(result => {
- this.dataSource.Acc_StuDayRoutine.ClassNo = result.data.sort((a,b)=>{return b.classno-a.classno}).map(t => ({ text: t.classname, value: t.classno }))
- })
- }
- this.setValue('Acc_StuDayRoutine.ClassNo','');
- this.setValue('Acc_StuDayRoutine.StuNo','');
- },
- //多条件查询:班级改变事件
- async ClassNoChange(){
- if (!this.getValue('Acc_StuDayRoutine.ClassNo')) {
- // this.FETCH_DATASOURCE('StuInfoBasic').then(result => {
- // this.dataSource.Acc_StuDayRoutine.StuNo = result.data.filter(t=>t.classno===this.getValue('Acc_StuDayRoutine.ClassNo')).map(t => ({ text: t.stuname, value: t.stuno }))
- // })
- this.dataSource.Acc_StuDayRoutine.StuNo = this.StuNoAll
- }else{
- // this.FETCH_DATASOURCE('StuInfoBasic').then(result => {
- // this.dataSource.Acc_StuDayRoutine.StuNo = result.data.map(t => ({ text: t.stuname, value: t.stuno }))
- // })
- this.dataSource.Acc_StuDayRoutine.StuNo = this.StuNoAll.filter(t=>t.classno == this.getValue('Acc_StuDayRoutine.ClassNo'))
- }
- this.setValue('Acc_StuDayRoutine.StuNo','');
- },
-
-
- }
- }
- </script>
|