|
|
|
@ -1,8 +1,517 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
</template>
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<!-- 查询配置 -->
|
|
|
|
<script>
|
|
|
|
<div style="padding: 0px 20px">
|
|
|
|
</script>
|
|
|
|
<div ref="lxHeader">
|
|
|
|
|
|
|
|
<LxHeader icon="md-apps" text="教育培训记录" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
|
|
|
|
<style>
|
|
|
|
<div slot="content"></div>
|
|
|
|
|
|
|
|
<slot>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
<Input style="width: 200px; margin-right: 10px" v-model="searchFields.KeyWord" placeholder="关键字搜索" />
|
|
|
|
|
|
|
|
<Button type="primary" @click="search" style="margin-left: 10px">查询</Button>
|
|
|
|
|
|
|
|
<Button type="primary" @click="edit()" style="margin-left: 10px">新增</Button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</slot>
|
|
|
|
|
|
|
|
</LxHeader>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div ref="lxTable">
|
|
|
|
|
|
|
|
<el-table :data="tableData" :height="tableHeight" style="width: 100%">
|
|
|
|
|
|
|
|
<el-table-column type="index" width="50" align="center"> </el-table-column>
|
|
|
|
|
|
|
|
<el-table-column :prop="column.field" :align="column.align" v-for="(column,index) in columns"
|
|
|
|
|
|
|
|
:label="column.title" :width="column.width">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<div v-if="column.type=='opt'">
|
|
|
|
|
|
|
|
<Button ghost size="small" @click="edit(scope.row)" type="primary"
|
|
|
|
|
|
|
|
style="margin-left: 10px;">编辑</Button>
|
|
|
|
|
|
|
|
<Button ghost size="small" @click="del(scope.row)" type="error" style="margin-left: 10px;">删除</Button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else>{{scope.row[column.field]}}</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
<div class="pagination">
|
|
|
|
|
|
|
|
<el-pagination @current-change="handleCurrentChange" :current-page="paginations.page"
|
|
|
|
|
|
|
|
:page-size="paginations.page_size" background layout="prev, pager, next" :total="paginations.total">
|
|
|
|
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog title="教育培训记录编辑" :visible.sync="dialogFormVisible" fullscreen width="90%">
|
|
|
|
|
|
|
|
<div class="dialogConcent" :style="{height:clientHeight+'px'}">
|
|
|
|
|
|
|
|
<el-scrollbar style="flex: 1">
|
|
|
|
|
|
|
|
<el-form :model="form" :rules="rules" ref="form" label-position="right" :label-width="formLabelWidth">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<div class="form-sub-title">基本信息</div>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<el-form-item label="培训名称" prop="name">
|
|
|
|
|
|
|
|
<el-input v-model="form.name" placeholder="请填写培训名称" autocomplete="off"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
<el-form-item label="培训时间" prop="time">
|
|
|
|
|
|
|
|
<el-date-picker type="datetime" value-format="yyyy-MM-dd HH:mm:ss" format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
|
|
|
v-model="form.time" placeholder="请填写培训时间" autocomplete="off">
|
|
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
<el-form-item label="培训课时" prop="period">
|
|
|
|
|
|
|
|
<el-input v-model="form.period" placeholder="请填写培训课时" type="number" autocomplete="off"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
<el-form-item label="培训单位" prop="unit">
|
|
|
|
|
|
|
|
<el-select v-model="form.unit" placeholder="培训单位" style="width: 100%">
|
|
|
|
|
|
|
|
<el-option v-for="item in deptOptions" :key="item.id" :label="item.name" :value="item.name">
|
|
|
|
|
|
|
|
</el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="16">
|
|
|
|
|
|
|
|
<el-form-item label="培训地点" prop="address">
|
|
|
|
|
|
|
|
<el-input v-model="form.address" placeholder="请填写培训地点" autocomplete="off"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
<el-form-item label="授课人" prop="teacher">
|
|
|
|
|
|
|
|
<el-input v-model="form.teacher" placeholder="请填写授课人" autocomplete="off"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<el-form-item label="培训内容" prop="content">
|
|
|
|
|
|
|
|
<el-input v-model="form.content" placeholder="请填写培训内容" type="textarea" autocomplete="off"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<el-form-item label="参与人员" prop="people_list">
|
|
|
|
|
|
|
|
<el-transfer filterable :titles="['待选择', '已选择']" :props="{key: 'id',label: 'name'}"
|
|
|
|
|
|
|
|
:filter-method="filterMethod" :format="{ noChecked: '${total}',hasChecked: '${checked}/${total}' }"
|
|
|
|
|
|
|
|
filter-placeholder="请选择参与人员" v-model="form.people_list" :data="userdata">
|
|
|
|
|
|
|
|
</el-transfer>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<el-form-item label="附件" prop="file_list">
|
|
|
|
|
|
|
|
<el-upload class="upload-demo" :on-success="handlesuccess" :data="uploadOther"
|
|
|
|
|
|
|
|
action="/api/admin/upload-file" :on-remove="handleRemove" :before-remove="beforeRemove"
|
|
|
|
|
|
|
|
:on-exceed="handleExceed" :file-list="fileList">
|
|
|
|
|
|
|
|
<el-button size="small" type="primary">点击上传</el-button>
|
|
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<div class="form-sub-title">培训评估</div>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<el-form-item label="培训评估方式" prop="evaluate">
|
|
|
|
|
|
|
|
<el-radio-group v-model="form.evaluate">
|
|
|
|
|
|
|
|
<el-radio :label="item.id" v-for="(item,index) in evaluateOptions ">{{item.name}}</el-radio>
|
|
|
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
|
|
<el-form-item label="培训效果评估" prop="result_evaluate">
|
|
|
|
|
|
|
|
<el-input v-model="form.result_evaluate" placeholder="请填写培训效果评估" autocomplete="off"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
<el-form-item label="评估人" prop="evaluate_person">
|
|
|
|
|
|
|
|
<el-input v-model="form.evaluate_person" placeholder="请填写评估人" autocomplete="off"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
|
|
|
<el-button @click="resetForm('form')">取 消</el-button>
|
|
|
|
|
|
|
|
<el-button type="primary" v-preventReClick @click="submitForm('form')">确 定</el-button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
|
|
|
getToken
|
|
|
|
|
|
|
|
} from '@/utils/auth';
|
|
|
|
|
|
|
|
import LxHeader from "@/components/LxHeader/index.vue";
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
|
|
|
listtrainlog,
|
|
|
|
|
|
|
|
store,
|
|
|
|
|
|
|
|
save,
|
|
|
|
|
|
|
|
get,
|
|
|
|
|
|
|
|
del
|
|
|
|
|
|
|
|
} from "../../api/training/record.js";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
|
|
|
listCommondepartment,
|
|
|
|
|
|
|
|
listCommonuser
|
|
|
|
|
|
|
|
} from "../../api/common.js"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
|
|
|
LxHeader
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
evaluateOptions: [{
|
|
|
|
|
|
|
|
id: 1,
|
|
|
|
|
|
|
|
name: "考试"
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
|
|
|
id: 2,
|
|
|
|
|
|
|
|
name: "课堂评价"
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
|
|
|
id: 3,
|
|
|
|
|
|
|
|
name: "事后检查"
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
|
|
|
id: 4,
|
|
|
|
|
|
|
|
name: "实际操作"
|
|
|
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
paginations: {
|
|
|
|
|
|
|
|
page: 1,
|
|
|
|
|
|
|
|
page_size: 15,
|
|
|
|
|
|
|
|
total: 0
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
userdata: [],
|
|
|
|
|
|
|
|
filterMethod(query, item) {
|
|
|
|
|
|
|
|
return item.name.indexOf(query) > -1;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
tableHeight: 0,
|
|
|
|
|
|
|
|
dialogFormVisible: false,
|
|
|
|
|
|
|
|
formLabelWidth: "120px",
|
|
|
|
|
|
|
|
clientHeight: 0,
|
|
|
|
|
|
|
|
form: {
|
|
|
|
|
|
|
|
name: "",
|
|
|
|
|
|
|
|
time: "",
|
|
|
|
|
|
|
|
period: "",
|
|
|
|
|
|
|
|
address: "",
|
|
|
|
|
|
|
|
unit: "",
|
|
|
|
|
|
|
|
teacher: "",
|
|
|
|
|
|
|
|
content: "",
|
|
|
|
|
|
|
|
evaluate: "",
|
|
|
|
|
|
|
|
result_evaluate: "",
|
|
|
|
|
|
|
|
evaluate_person: "",
|
|
|
|
|
|
|
|
people_list: [],
|
|
|
|
|
|
|
|
files_list: [],
|
|
|
|
|
|
|
|
id: ""
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
fileList: [],
|
|
|
|
|
|
|
|
tableData: [],
|
|
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
|
|
name: [{
|
|
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
|
|
message: '请填写培训名称',
|
|
|
|
|
|
|
|
trigger: 'blur'
|
|
|
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
time: [{
|
|
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
|
|
message: '请选择培训时间',
|
|
|
|
|
|
|
|
trigger: 'change'
|
|
|
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
period: [{
|
|
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
|
|
message: '请输入课时',
|
|
|
|
|
|
|
|
trigger: 'blur'
|
|
|
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
address: [{
|
|
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
|
|
message: '请输入培训地点',
|
|
|
|
|
|
|
|
trigger: 'blur'
|
|
|
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
unit: [{
|
|
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
|
|
message: '请选择单位科室',
|
|
|
|
|
|
|
|
trigger: 'change'
|
|
|
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
teacher: [{
|
|
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
|
|
message: '请输入授课人',
|
|
|
|
|
|
|
|
trigger: 'blur'
|
|
|
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
tableHeight: 900,
|
|
|
|
|
|
|
|
searchFields: {
|
|
|
|
|
|
|
|
KeyWord: ""
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
columns: [{
|
|
|
|
|
|
|
|
field: "name",
|
|
|
|
|
|
|
|
title: "培训名称",
|
|
|
|
|
|
|
|
type: "string"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
field: "time",
|
|
|
|
|
|
|
|
title: "培训时间",
|
|
|
|
|
|
|
|
type: "string",
|
|
|
|
|
|
|
|
width: 180
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
field: "unit",
|
|
|
|
|
|
|
|
title: "科室",
|
|
|
|
|
|
|
|
type: "string",
|
|
|
|
|
|
|
|
width: 180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
field: "period",
|
|
|
|
|
|
|
|
title: "课时",
|
|
|
|
|
|
|
|
type: "int",
|
|
|
|
|
|
|
|
width: 80,
|
|
|
|
|
|
|
|
align: "center"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
field: "created_at",
|
|
|
|
|
|
|
|
title: "创建信息",
|
|
|
|
|
|
|
|
type: "string",
|
|
|
|
|
|
|
|
width: 180,
|
|
|
|
|
|
|
|
align: "center"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
field: "操作",
|
|
|
|
|
|
|
|
title: "操作",
|
|
|
|
|
|
|
|
width: 220,
|
|
|
|
|
|
|
|
type: "opt",
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
uploadOther: {
|
|
|
|
|
|
|
|
token: ""
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
deptOptions: []
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.uploadOther.token = getToken();
|
|
|
|
|
|
|
|
this.loadDeptOptions();
|
|
|
|
|
|
|
|
this.loadUser();
|
|
|
|
|
|
|
|
this.initLoad();
|
|
|
|
|
|
|
|
this.load();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
loadDeptOptions() {
|
|
|
|
|
|
|
|
listCommondepartment().
|
|
|
|
|
|
|
|
then((res) => {
|
|
|
|
|
|
|
|
this.deptOptions = res.data;
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
console.log(error)
|
|
|
|
|
|
|
|
reject(error)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
loadUser() {
|
|
|
|
|
|
|
|
listCommonuser({
|
|
|
|
|
|
|
|
page_size: 999
|
|
|
|
|
|
|
|
}).
|
|
|
|
|
|
|
|
then((res) => {
|
|
|
|
|
|
|
|
this.userdata = res.data;
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
console.log(error)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleCheckAllChange(val) {
|
|
|
|
|
|
|
|
console.log(val)
|
|
|
|
|
|
|
|
let options = [];
|
|
|
|
|
|
|
|
for (var m of this.deptOptions) {
|
|
|
|
|
|
|
|
options.push(m.id);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.form.department_list = val ? options : [];
|
|
|
|
|
|
|
|
this.isIndeterminate = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleCheckedDeptChange(value) {
|
|
|
|
|
|
|
|
let checkedCount = value.length;
|
|
|
|
|
|
|
|
this.checkAll = checkedCount === this.deptOptions.length;
|
|
|
|
|
|
|
|
this.isIndeterminate = checkedCount > 0 && checkedCount < this.deptOptions.length;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
initLoad() {
|
|
|
|
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
var clientHeight = document.documentElement.clientHeight
|
|
|
|
|
|
|
|
var lxHeader_height = 96.5; //查询 头部
|
|
|
|
|
|
|
|
var paginationHeight = 37; //分页的高度
|
|
|
|
|
|
|
|
var topHeight = 50; //页面 头部
|
|
|
|
|
|
|
|
let tableHeight = clientHeight - lxHeader_height - topHeight - paginationHeight - 20;
|
|
|
|
|
|
|
|
that.tableHeight = tableHeight;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleCurrentChange(page) {
|
|
|
|
|
|
|
|
this.paginations.page = page;
|
|
|
|
|
|
|
|
this.load();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
search() {
|
|
|
|
|
|
|
|
this.paginations.page = 1;
|
|
|
|
|
|
|
|
this.load();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
load() {
|
|
|
|
|
|
|
|
listtrainlog({
|
|
|
|
|
|
|
|
page: this.paginations.page,
|
|
|
|
|
|
|
|
page_size: this.paginations.page_size,
|
|
|
|
|
|
|
|
}).then(response => {
|
|
|
|
|
|
|
|
this.tableData = response.data;
|
|
|
|
|
|
|
|
this.paginations.total = response.total;
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
console.log(error)
|
|
|
|
|
|
|
|
reject(error)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
del(obj) {
|
|
|
|
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
if (obj) {
|
|
|
|
|
|
|
|
this.$Modal.confirm({
|
|
|
|
|
|
|
|
title: '确认要删除数据?',
|
|
|
|
|
|
|
|
onOk: () => {
|
|
|
|
|
|
|
|
del(obj.id).then(response => {
|
|
|
|
|
|
|
|
this.$Message.success('操作成功');
|
|
|
|
|
|
|
|
that.load();
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
console.log(error)
|
|
|
|
|
|
|
|
reject(error)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
onCancel: () => {
|
|
|
|
|
|
|
|
//this.$Message.info('Clicked cancel');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
show(obj) {
|
|
|
|
|
|
|
|
this.clientHeight = document.documentElement.clientHeight - 84 - 110;
|
|
|
|
|
|
|
|
this.dialogViewVisible = true;
|
|
|
|
|
|
|
|
this.info(obj);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
info(obj) {
|
|
|
|
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
get(obj.id).then(res => {
|
|
|
|
|
|
|
|
let result = Object.assign(that.form, res);
|
|
|
|
|
|
|
|
that.form = result;
|
|
|
|
|
|
|
|
for (var m of res.people) {
|
|
|
|
|
|
|
|
if (m.admin)
|
|
|
|
|
|
|
|
that.form.people_list.push(m.admin.id)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
//reject(error)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
edit(obj) {
|
|
|
|
|
|
|
|
this.form = this.$options.data().form;
|
|
|
|
|
|
|
|
this.clientHeight = document.documentElement.clientHeight - 84 - 110;
|
|
|
|
|
|
|
|
if (obj) {
|
|
|
|
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
that.info(obj);
|
|
|
|
|
|
|
|
} else {}
|
|
|
|
|
|
|
|
this.dialogFormVisible = true;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
submitForm(formName) {
|
|
|
|
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.$refs[formName].validate((valid) => {
|
|
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
|
|
var arr = [];
|
|
|
|
|
|
|
|
for (var m of this.form.people_list) {
|
|
|
|
|
|
|
|
arr.push({
|
|
|
|
|
|
|
|
admin_id: m
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.form.people_list = arr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (that.form.id) {
|
|
|
|
|
|
|
|
that.form.id = that.form.id;
|
|
|
|
|
|
|
|
save(that.form).then(response => {
|
|
|
|
|
|
|
|
//console.log(response)
|
|
|
|
|
|
|
|
this.$Message.success('操作成功');
|
|
|
|
|
|
|
|
that.load();
|
|
|
|
|
|
|
|
that.dialogFormVisible = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
//reject(error)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
store(that.form).then(response => {
|
|
|
|
|
|
|
|
//console.log(response)
|
|
|
|
|
|
|
|
this.$Message.success('操作成功');
|
|
|
|
|
|
|
|
that.load();
|
|
|
|
|
|
|
|
that.dialogFormVisible = false;
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
//reject(error)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
that.fileList = [];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.$Message.error('数据校验失败');
|
|
|
|
|
|
|
|
console.log('error submit!!');
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
|
|
|
let listUrl = [];
|
|
|
|
|
|
|
|
for (var m of fileList) {
|
|
|
|
|
|
|
|
if (m.response)
|
|
|
|
|
|
|
|
listUrl.push({
|
|
|
|
|
|
|
|
"upload_id": m.response.id
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
listUrl.push({
|
|
|
|
|
|
|
|
"upload_id": m.id
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.form.file_list = listUrl;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleExceed(files, fileList) {},
|
|
|
|
|
|
|
|
beforeRemove(file, fileList) {
|
|
|
|
|
|
|
|
return this.$confirm(`确定移除 ${ file.name }?`);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handlesuccess(response, file, fileList) {
|
|
|
|
|
|
|
|
let listUrl = [];
|
|
|
|
|
|
|
|
for (var m of fileList) {
|
|
|
|
|
|
|
|
if (m.response)
|
|
|
|
|
|
|
|
listUrl.push({
|
|
|
|
|
|
|
|
"upload_id": m.response.id
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
listUrl.push({
|
|
|
|
|
|
|
|
"upload_id": m.id
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.form.file_list = listUrl;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
resetForm(formName) {
|
|
|
|
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
that.fileList = [];
|
|
|
|
|
|
|
|
this.$refs[formName].resetFields();
|
|
|
|
|
|
|
|
that.dialogFormVisible = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
.dialogConcent {
|
|
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.form-sub-title {
|
|
|
|
|
|
|
|
padding: 20px 0px;
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|
|