123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- <template>
- <div class="create-container">
- <div class="create-body">
- <div class="title">测评机构认证</div>
- <el-form :model="authentication" :rules="rules" ref="authentication" label-width="12%" class="demo-report">
- <el-form-item label="机构名称" prop="name">
- <el-input v-if="isModifyMode" v-model="authentication.name"></el-input>
- <!--<span v-if="!isModifyMode">{{authentication.name}}</span>-->
- </el-form-item>
- <el-form-item label="机构电话" prop="name">
- <el-input v-if="isModifyMode" v-model="authentication.mobile"></el-input>
- <!--<span v-if="!isModifyMode">{{authentication.name}}</span>-->
- </el-form-item>
- <el-form-item label="银行卡账户" prop="name">
- <el-input v-if="isModifyMode" v-model="authentication.bankAccount"></el-input>
- <!--<span v-if="!isModifyMode">{{authentication.bankAccount}}</span>-->
- </el-form-item>
- <el-form-item label="地址" prop="name">
- <el-input v-if="isModifyMode" v-model="authentication.address"></el-input>
- <!--<span v-if="!isModifyMode">{{authentication.address}}</span>-->
- </el-form-item>
- <el-form-item label="测评机构能力" prop="name">
- <el-checkbox-group v-if="isModifyMode" v-model="authentication.ability">
- <span v-for="(item,index) in serviceTypes" :key="index">
- <el-checkbox :label="item" name="type">{{item}} </el-checkbox>
- </span>
- </el-checkbox-group>
- <!--<span v-if="!isModifyMode">{{authentication.ability}}</span>-->
- </el-form-item>
- <el-form-item label="测评机构资源" prop="name">
- <span v-for="item in authentication.resource" :key="item.id">
- 资源类型: <el-select v-model="item.type" placeholder="请选择" style="width: 150px" :value="item.type">
- <el-option
- v-for="item in resourceTypes"
- :key="item"
- :label="item"
- :value="item">
- </el-option>
- </el-select>
- 资源名称: <el-input v-model="item.name" style="width: 150px"></el-input>
- 总量: <el-input-number :min="0" v-model="item.totalNum"></el-input-number>
- 可用数量: <el-input-number :min="0" :max="item.totalNum" v-model="item.availableNum"></el-input-number>
- <el-button type="danger" icon="el-icon-delete" @click="removeAgencyResource(item.id)"></el-button>
- <br/>
- </span>
- <el-button type="primary" icon="el-icon-circle-plus" plain size="small" @click="addAgencyResource">添加资源
- </el-button>
- <!--<span v-if="!isModifyMode">{{authentication.resource}}</span>-->
- </el-form-item>
- <el-form-item prop="file" label="头像">
- <el-upload
- v-if="isModifyMode"
- drag
- class="upload-demo"
- action="https://jsonplaceholder.typicode.com/posts/"
- :on-remove="handleRemove"
- :before-remove="beforeRemove"
- multiple
- :limit="1"
- :show-file-list="false"
- :on-exceed="handleExceed"
- :before-upload="beforeFileUpload"
- :http-request="uploadFile"
- :file-list="authentication.photo"
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- 将文件拖到此处,或
- <em>点击上传</em>
- </div>
- <div class="el-upload__tip" slot="tip">请上传头像</div>
- </el-upload>
- <!--<div v-if="!isModifyMode">-->
- <!--<span v-if="authentication.photo==null">暂无文件</span>-->
- <!--<a :href="authentication.photo" v-if="authentication.photo!=null"><i class="fa fa-file-text-o"></i>-->
- <!--{{authentication.photo}}</a>-->
- <!--</div>-->
- </el-form-item>
- <!--<el-form-item v-if="!isModifyMode">-->
- <!--<div class="btn btn-medium btn-info" @click="modifyInfo()">修改</div>-->
- <!--<div class="btn btn-medium" @click="cancelModify()">返回</div>-->
- <!--</el-form-item>-->
- <el-form-item v-if="isModifyMode">
- <div class="btn btn-primary btn-info" @click="submitInfo()">提交</div>
- <!--<div class="btn btn-primary" @click="cancelModify()">取消</div>-->
- </el-form-item>
- </el-form>
- </div>
- </div>
- </template>
- <script>
- import Http from '@/js/http'
- import Apis from '@/js/api'
- import {notify} from '@/constants/index'
- import {getAllAgencyResourceTypes, getAllServiceTypes} from '@/js/index'
- export default {
- name: 'Authentication',
- data () {
- return {
- userId: 0,
- isModifyMode: true,
- resourceTypes: [],
- serviceTypes: [],
- authentication: {
- mobile: '',
- name: '',
- bankAccount: '',
- address: '',
- ability: '',
- resource: [],
- photo: [],
- photoUrl: '',
- },
- rules: {
- // name: [
- // {required: true, message: '请输入报告名称', trigger: 'blur'}
- // // { min: 3, max: 5, message: "长度在 3 到 5 个字符", trigger: "blur" }
- // ],
- // abstract: [
- // {
- // required: true,
- // message: '请输入摘要信息',
- // trigger: 'change'
- // }
- // ],
- // type: [
- // {required: true, message: '请选择报告类型', trigger: 'change'}
- // ],
- // conclusion: [
- // {required: true, message: '请输入报告结论', trigger: 'blur'}
- // ]
- }
- }
- },
- mounted () {
- this.$nextTick(() => {
- this.init()
- })
- },
- methods: {
- init () {
- this.setServiceTypes()
- this.setResourceTypes()
- },
- //加载数据
- loadData: function () {
- },
- modifyInfo () {
- this.isModifyMode = true
- },
- submitInfo () {
- //this.isModifyMode = false
- const newAuthentication = {
- mobile: this.authentication.mobile,
- evaluationAgencyName: this.authentication.name,
- bankAccount: this.authentication.bankAccount,
- address: this.authentication.address,
- abilities: this.authentication.ability,
- resources: this.authentication.resource,
- agencyPhoto: this.authentication.photoUrl,
- }
- Http.post(Apis.USER.AGENCY_AUTHENTICATION.replace('{userId}', 3), newAuthentication).then((res) => {
- console.log(res)
- notify('success', '测评机构成功')
- }).catch(error => {
- notify('error', error.data.msg)
- })
- },
- cancelModify () {
- this.isModifyMode = false
- },
- handleRemove (file, fileList) {
- console.log(file, fileList)
- },
- handleExceed (files, fileList) {
- this.$message.warning(
- `当前限制选择 1 个文件,本次选择了 ${
- files.length
- } 个文件,共选择了 ${files.length + fileList.length} 个文件`
- )
- },
- beforeRemove (file, fileList) {
- //return this.$confirm(`确定移除 ${file.name}?`)
- },
- beforeFileUpload () {
- },
- uploadFile (param) {
- const formData = new FormData()
- let config = {
- //添加请求头
- headers: {'Content-Type': 'multipart/form-data'},
- }
- formData.append('file', param.file)
- Http.upload(Apis.FILE.UPLOAD_IMAGE.replace('{userId}', 3), formData, config).then((res) => {
- console.log('上传成功')
- this.authentication.photoUrl = res.data
- console.log(res.data)
- notify('success', '上传成功')
- }).catch(error => {
- notify('error', error.data.msg)
- })
- },
- setServiceTypes () {
- this.serviceTypes = getAllServiceTypes()
- },
- setResourceTypes () {
- this.resourceTypes = getAllAgencyResourceTypes()
- },
- addAgencyResource () {
- const tmpResource = {
- id: this.authentication.resource.length,
- type: this.resourceTypes[0],
- name: '',
- totalNum: 0,
- availableNum: 0,
- }
- this.authentication.resource.push(tmpResource)
- },
- removeAgencyResource (id) {
- this.authentication.resource.splice(id, 1)
- for (var i = 0; i < this.authentication.resource.length; i++) {
- this.authentication.resource[i].id = i
- }
- },
- checkAgencyResourceVaild () {
- if (this.authentication.resource.length === 0) {
- return true
- }
- for (var i = 0; i < this.authentication.resource.length; i++) {
- const item = this.authentication.resource[i]
- if (item.type === '') {
- notify('error', '资源类型不能为空')
- return false
- }
- if (item.name === '') {
- notify('error', '资源名称不能为空')
- return false
- }
- if (item.totalNum < item.availableNum) {
- notify('error', '资源总数量不能低于可用数量')
- return false
- }
- }
- return true
- }
- },
- created: function () {
- }
- }
- </script>
- <style scoped>
- .el-radio {
- margin: 10px 20px 10px 0;
- }
- .el-form-item /deep/ .el-tabs__content {
- max-height: 120px !important;
- overflow: auto;
- }
- .el-row {
- margin-bottom: 10px;
- }
- .el-input {
- width: 400px;
- }
- </style>
|