项目管理更新

This commit is contained in:
Yuanjianghong 2021-09-10 16:54:03 +08:00
parent 6d7fa8f542
commit 6d5ec8c345
9 changed files with 282 additions and 246 deletions

View File

@ -23,9 +23,9 @@ export function classGet(params) {
} }
export function classDel (params) { export function classDel (params) {
return request({ return request({
url: classApi.get, url: classApi.del,
method: 'delete', method: 'delete',
data: params params: params
}) })
} }
export function classList(params) { export function classList(params) {

View File

@ -39,8 +39,7 @@
</a-space> </a-space>
<a-space class="table-operator" direction="horizontal"> <a-space class="table-operator" direction="horizontal">
<a-button type="primary" icon="plus" @click="$refs.projectStepForm.add1()">新增项目</a-button> <a-button v-if="hasPerm('project:add')" type="primary" icon="plus" @click="$refs.projectStepForm.add()">新增项目</a-button>
<a-button type="primary" icon="minus" @click="handleEdit()">删除项目</a-button>
</a-space> </a-space>
<s-table <s-table
@ -49,17 +48,16 @@
rowKey="id" rowKey="id"
:columns="columns" :columns="columns"
:data="loadData" :data="loadData"
:rowSelection="options.rowSelection"
> >
<span slot="serial" slot-scope="text, record, index"> <span slot="serial" slot-scope="text, record, index">
{{ index + 1 }} {{ index + 1 }}
</span> </span>
<span slot="action" slot-scope="text, record"> <span slot="action" slot-scope="text, record">
<template> <template>
<a href="javascript:;" @click="handleEdit(record)">修改</a> <a v-if="hasPerm('project:edit')" href="javascript:;" @click="$refs.projectStepForm.edit(record)">修改</a>
<a-divider type="vertical" /> <a-divider type="vertical" />
<a-popconfirm title="是否删除?" @confirm="() => handleDelete(record)"> <a-popconfirm title="是否删除?" @confirm="() => handleDelete(record)">
<a href="javascript:;">删除</a> <a v-if="hasPerm('project:del')" href="javascript:;">删除</a>
</a-popconfirm> </a-popconfirm>
<a-divider type="vertical" /> <a-divider type="vertical" />
<a href="javascript:;" @click="handleDetail(record)">详情</a> <a href="javascript:;" @click="handleDetail(record)">详情</a>
@ -73,7 +71,6 @@
</template> </template>
<script> <script>
import moment from 'moment'
import { STable } from '@/components' import { STable } from '@/components'
import { getProjectList } from '@/api/project/project' import { getProjectList } from '@/api/project/project'
import projectStepForm from './ProjectStepForm' import projectStepForm from './ProjectStepForm'
@ -139,62 +136,19 @@ export default {
return res return res
}) })
}, },
selectedRowKeys: [],
selectedRows: [],
} }
}, },
created() { created() {},
this.tableOption()
},
methods: { methods: {
// //
handledCreate() { handledCreate() {
// return this.$router.push( return this.$router.push(
// // {name: 'ProjectForm'} // {name: 'ProjectForm'}
// { path: 'project/project/add' } { path: 'project/project/add' }
// ) )
// router.push()
},
tableOption() {
if (!this.optionAlertShow) {
this.options = {
alert: {
show: true,
clear: () => {
this.selectedRowKeys = []
},
},
rowSelection: {
selectedRowKeys: this.selectedRowKeys,
onChange: this.onSelectChange,
}, },
} }
this.optionAlertShow = true
} else {
this.options = {
alert: false,
rowSelection: null,
}
this.optionAlertShow = false
}
},
onSelectChange(selectedRowKeys, selectedRows) {
this.selectedRowKeys = selectedRowKeys
this.selectedRows = selectedRows
},
toggleAdvanced() {
this.advanced = !this.advanced
},
resetSearchForm() {
this.queryParam = {
date: moment(new Date()),
}
},
},
} }
// @
</script> </script>

View File

@ -2,7 +2,7 @@
<a-modal <a-modal
:title="modalTitle" :title="modalTitle"
:width="1000" :width="1200"
:visible="visible" :visible="visible"
:confirmLoading="confirmLoading" :confirmLoading="confirmLoading"
:destroyOnClose="true" :destroyOnClose="true"
@ -54,62 +54,22 @@ export default {
modalTitle: '新增项目', modalTitle: '新增项目',
visible: false, visible: false,
confirmLoading: false, confirmLoading: false,
menuTreeData: [],
componentShow: true,
componentDisabled: false,
componentRequired: true,
routerRequired: true,
routerShow: true,
pidShow: true,
permissionShow: true,
permissionRequired: true,
formLoading: true,
type: '', type: '',
form: this.$form.createForm(this), form: null
} }
}, },
methods: { methods: {
// //
add1 (type) { add (type) {
this.modalTitle = "新增菜单" this.modalTitle = "新增项目"
this.visible = true this.visible = true
// //
// this.form.getFieldDecorator('type', { valuePropName: 'checked', initialValue: '1' })
// this.meneTypeFunc('1')
// //
// this.form.getFieldDecorator('visible', { initialValue: true })
// //
// this.getMenuTree()
this.formLoading = false this.formLoading = false
}, },
// //
edit (record) { edit (record) {
this.modalTitle = "编辑菜单" console.log(record)
this.modalTitle = "编辑项目"
this.visible = true this.visible = true
// //
// this.form.getFieldDecorator('type', { valuePropName: 'checked', initialValue: record.type.toString() })
// this.meneTypeFunc(record.type.toString())
// //
// // eslint-disable-next-line no-unused-vars
// const visibleDef = false
// // eslint-disable-next-line eqeqeq
// if (record.visible == 1) {
// this.visibleDef = true
// }
// this.form.getFieldDecorator('visible', { valuePropName: 'checked', initialValue: this.visibleDef })
// setTimeout(() => {
// this.setMenuItem(record)
// //
// this.getMenuTree()
// }, 100)
this.formLoading = false this.formLoading = false
}, },

View File

@ -0,0 +1,111 @@
<template>
<div>
<a-modal
title="新增种类"
:visible="visible"
:confirm-loading="confirmLoading"
@ok="handleOk"
@cancel="handleCancel"
>
<a-form-model ref="classForm" :model="form" :rules="rules" :label-col="labelCol" :wrapper-col="wrapperCol">
<a-form-model-item ref="value" label="种类名称" prop="name">
<a-input v-model="form.value" />
</a-form-model-item>
</a-form-model>
</a-modal>
</div>
</template>
<script>
//jsjsjson
//import from ''
import { classAdd } from '@/api/project/class'
export default {
//import使
components: {
classAdd,
},
props: {},
data() {
//
return {
visible: false,
confirmLoading: false,
form: {
value: '',
type: 1,
},
rules: {
value: [
{
required: true,
message: '请输入种类名称',
trigger: 'blur',
},
],
},
labelCol: {
xs: {
span: 24,
},
sm: {
span: 5,
},
},
wrapperCol: {
xs: {
span: 24,
},
sm: {
span: 18,
},
},
}
},
// data
computed: {},
//data
watch: {},
//
methods: {
showModal() {
this.visible = true
},
handleOk(e) {
this.$refs.ClassForm.validate((valid) => {
if (valid) {
this.confirmLoading = true
classAdd(this.form).then((res) => {
if (res.code == 200) {
this.$message.success('新增成功')
this.confirmLoading = false
this.handleCancel()
} else {
this.$message.error('新增失败:' + res.msg)
}
})
} else {
return false
}
})
},
handleCancel(e) {
// console.log('Clicked cancel button')
this.$refs.table.refresh()
this.visible = false
},
},
created() {}, // - 访this
mounted() {}, // - 访DOM
beforeCreate() {}, // -
beforeMount() {}, // -
beforeUpdate() {}, // -
updated() {}, // -
beforeDestroy() {}, // -
destroyed() {}, // -
activated() {}, //keep-alive
}
</script>
<style scoped>
</style>

View File

@ -1,37 +1,39 @@
<template> <template>
<page-header-wrapper title="新增种类"> <a-space align="baseline" direction="vertical" style="width: 100%">
<a-button type="primary" icon="rollback" @click="returnNext">返回</a-button> <a-button type="primary" icon="plus" @click="$refs.ClassForm.showModal()">新增种类</a-button>
<a-table ref="table" size="default" rowKey="id" :columns="columns" :data="dataTable" bordered> <s-table ref="table" rowKey="id" :columns="columns" :data="dataTable" style="width: 100%">
<span slot="serial" slot-scope="text, record, index"> <span slot="serial" slot-scope="text, record, index">
{{ index + 1 }} {{ index + 1 }}
</span> </span>
<span slot="action" slot-scope="text, record"> <span slot="action" slot-scope="text, record">
<template> <template>
<a-popconfirm title="是否删除?" @confirm="() => handleDelete(record)"> <a-popconfirm title="是否删除?" @confirm="handledDel(record)">
<a-button @click="() => handleDetail(record)">删除</a-button> <a-button>删除</a-button>
</a-popconfirm> </a-popconfirm>
</template> </template>
</span> </span>
</a-table> </s-table>
</page-header-wrapper> <class-form ref="ClassForm"></class-form>
</a-space>
</template> </template>
<script> <script>
import { STable } from '@/components' import { STable } from '@/components'
import { classDel, classList } from '@/api/project/class' import { classDel, classList } from '@/api/project/class'
import ClassForm from './ClassForm'
export default { export default {
data() { data() {
return { return {
// Promise // Promise
dataTable: (parameter) => { dataTable: (parameter) => {
return classList(Object.assign(parameter, this.queryParam)).then((res) => { return classList(Object.assign(parameter)).then((res) => {
return res return res
}) })
}, },
columns: [ columns: [
{ title: '序号', key: 'id', dataIndex: 'id', width: 80, scopedSlots: { customRender: 'serial' } }, { title: '序号', key: 'id', dataIndex: 'id', width: 80, scopedSlots: { customRender: 'serial' } },
{ title: '项目种类名称', dataIndex: 'value', key: 'value' }, { title: '项目种类名称', dataIndex: 'value', key: 'value', align: 'center' },
{ {
title: '操作', title: '操作',
width: 200, width: 200,
@ -43,21 +45,22 @@ export default {
}, },
components: { components: {
STable, STable,
ClassForm,
classDel, classDel,
classList
}, },
methods: { methods: {
handledDel(){ handledDel(record) {
classDel(Object.assign(parameter,params)).then((res) => { console.log("delete-id",record)
classDel({ids:record.id}).then((res) => {
if (res.code == 200) { if (res.code == 200) {
return $this.$message = '操作成功'; this.$message.success('删除成功')
this.$refs.table.refresh(true)
} }
}) })
}, },
returnNext(){ getData() {},
}
}, },
created: {},
} }
</script> </script>

View File

@ -8,23 +8,22 @@
<a-button type="primary" icon="search" @click="$refs.table.refresh(true)">查询</a-button> <a-button type="primary" icon="search" @click="$refs.table.refresh(true)">查询</a-button>
<a-button icon="select" @click="() => (queryParam = {})">添加课程</a-button> <a-button icon="select" @click="() => (queryParam = {})">添加课程</a-button>
</a-space> </a-space>
<s-table <s-table
ref="table" ref="table"
size="default" size="default"
rowKey="id" rowKey="id"
:columns="columns" :columns="columns"
:data="loadData" :data="loadData"
:rowSelection="options.rowSelection"
> >
<span slot="serial" slot-scope="text, record, index"> <span slot="serial" slot-scope="text, record, index">
{{ index + 1 }} {{ index + 1 }}
</span> </span>
<!-- slot-scope="text, record" --> <span slot="action" slot-scope="text, record" >
<span slot="action">
<template> <template>
<a-button type="primary" icon="search" @click="$refs.table.refresh(true)">课程预览</a-button> <a-button type="primary" @click="$refs.table.refresh(true)">课程预览</a-button>
<a-button type="primary" icon="search" @click="$refs.table.refresh(true)">题库预览</a-button> <a-button type="primary" @click="$refs.table.refresh(true)">题库预览</a-button>
<a-button type="primary" icon="search" @click="$refs.table.refresh(true)">必选题设置</a-button> <a-button type="primary" @click="$refs.table.refresh(true)">必选题设置</a-button>
<a-popconfirm title="是否删除?" @confirm="() => handleDelete(record)"> <a-popconfirm title="是否删除?" @confirm="() => handleDelete(record)">
<a-button type="primary" @click="$refs.table.refresh(true)">删除</a-button> <a-button type="primary" @click="$refs.table.refresh(true)">删除</a-button>
</a-popconfirm> </a-popconfirm>
@ -53,7 +52,7 @@ export default {
data() { data() {
// //
return { return {
form: this.$form.createForm(this), form: this.$form.createForm(this, { name: 'project' }),
totalHours: 0, // totalHours: 0, //
totalLearnHours: 0, // totalLearnHours: 0, //
totalTopicNum: 0, // totalTopicNum: 0, //

View File

@ -5,7 +5,7 @@
<a-row :gutter="24"> <a-row :gutter="24">
<a-col :md="24" :sm="24"> <a-col :md="24" :sm="24">
<a-form-model-item label="项目名称"> <a-form-model-item label="项目名称">
<a-input v-model="form.projectName" /> <a-input v-decorator="['projectName',{rules: [{required: true, min: 1, message: '请输入项目名称'}]}]" />
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
</a-row> </a-row>
@ -15,7 +15,7 @@
<a-select v-model="form.trainClass" placeholder="--请选择--"> <a-select v-model="form.trainClass" placeholder="--请选择--">
<a-select-option value="shanghai"> 参数待替换 </a-select-option> <a-select-option value="shanghai"> 参数待替换 </a-select-option>
</a-select> </a-select>
<a-button type="primary" @click="createClass"> 新增种类 </a-button> <!-- <a-button type="primary" @click="$refs.classList.list()"> 新增种类 </a-button> -->
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
<a-col :span="24"> <a-col :span="24">
@ -118,10 +118,11 @@
</a-row> </a-row>
</a-form-model> </a-form-model>
<!-- </page-header-wrapper> --> <!-- </page-header-wrapper> -->
<!-- <class-list ref="ClassList"></class-list> -->
</template> </template>
<script> <script>
import { dictGet } from '@/api/project/project' import { dictGet } from '@/api/project/project'
import ClassList from '../classAdd/ClassList.vue'
export default { export default {
data() { data() {
@ -129,16 +130,25 @@ export default {
labelCol: { span: 4 }, labelCol: { span: 4 },
wrapperCol: { span: 14 }, wrapperCol: { span: 14 },
personType: [], personType: [],
form: this.$form.createForm(this), form: this.$form.createForm(this, { name: 'project' }),
modalTitle: '新增项目',
visible: false,
confirmLoading: false,
} }
}, },
components: { components: {
dictGet, dictGet,
ClassList,
}, },
created() { created(ClassList) {
this.fetchTemplateData() this.fetchTemplateData()
}, },
methods: { methods: {
add(type) {
this.modalTitle = '新增菜单'
this.visible = true
this.formLoading = false
},
// //
fetchTemplateData() { fetchTemplateData() {
console.log('fetchTemplateData') console.log('fetchTemplateData')

View File

@ -1,6 +1,5 @@
<template> <template>
<a-form-model :model="form"> <a-form-model :model="form">
<!-- showSearch --> <!-- showSearch -->
<!-- height: '500px',overflowY: 'auto' --> <!-- height: '500px',overflowY: 'auto' -->
@ -109,7 +108,7 @@ function handleTreeData(data, targetKeys = []) {
export default { export default {
data() { data() {
return { return {
form: this.$form.createForm(this), form: this.$form.createForm(this, { name: 'project' }),
targetKeys: [], targetKeys: [],
dataSource: transferDataSource, dataSource: transferDataSource,

View File

@ -11,7 +11,7 @@
<a-input-number v-model="form.sort" /> <a-input-number v-model="form.sort" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item ref="remark" label="备注" prop="remark"> <a-form-model-item ref="remark" label="备注" prop="remark">
<a-textarea :rows="4" v-model="form.remark" /> <a-textarea :rows="4" v-model="form.remark" >
</a-textarea> </a-textarea>
</a-form-model-item> </a-form-model-item>
</a-form-model> </a-form-model>