| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <template>
- <div>
- <el-form ref="problemForm" :rules="rules" :model="problemForm" label-width="80px">
- <el-form-item>
- <el-button type="text" @click="selectPblm" style="float: left;">选择问题</el-button>
- </el-form-item>
- <el-form-item label="问题类别" style="text-align:left">
- <el-select v-model="t1" value-key="inspPblmsName" placeholder="请选择" disabled>
- <el-option v-for="(item,index) in problemList" :key="index" :label="item.inspPblmsName" :value="item">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="检查项目" style="text-align:left">
- <el-select v-model="t2" placeholder="请选择" value-key="checkPointName" disabled>
- <el-option v-for="(item,index) in currentCheckPointList" :key="index" :label="item.checkPointName" :value="item">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="问题描述" style="text-align:left">
- <el-input v-model="t3" type="textarea" :rows="4" placeholder="" disabled></el-input>
- </el-form-item>
- <el-form-item label="详细描述">
- <el-input type="textarea" :rows="2" placeholder="请输入内容" v-model="problemForm.inspPblmDesc" required>
- </el-input>
- </el-form-item>
- <el-form-item label="整改建议">
- <el-input
- type="textarea"
- :rows="2"
- placeholder="请输入内容"
- v-model="problemForm.pblmSggtn">
- </el-input>
- </el-form-item>
- <!-- <el-form-item label="严重程度:" style="text-align:left" prop="inspPblmCate">-->
- <!-- <p v-if="inspPblmCate == 0" >一般</p>-->
- <!-- <p v-if="inspPblmCate == 1" >较重</p>-->
- <!-- <p v-if="inspPblmCate == 2" >严重</p>-->
- <!-- <p v-if="inspPblmCate == 3" >特别严重</p>-->
- <!-- </el-form-item>-->
- <!-- <el-form-item label="典型问题" label-width="80px" style=" text-align:left">-->
- <!-- <el-radio v-model="problemForm.ifCasePblm" label="1">是</el-radio>-->
- <!-- <el-radio v-model="problemForm.ifCasePblm" label="0">否</el-radio>-->
- <!-- </el-form-item>-->
- <el-form-item label="上传照片">
- <upload ref="uploadFile" :url="`/pdcApi/file/insert?bizId=`" @uploadOver="removeNewSupervision"></upload>
- </el-form-item>
- <el-form-item style="margin-top: 50px">
- <el-button type="primary" @click="onSubmit('problemForm')" style="width: 100px;float:right">保存</el-button>
- </el-form-item>
- </el-form>
- <el-dialog
- class="pblmEascader"
- title="选择问题"
- width="60%"
- append-to-body
- :visible.sync="pblmEascaderVisible">
- <pblmEascader :objType="84" @modelData="modelData" :vmodelData="newPblmValue" :t3="t3" v-if="pblmEascaderVisible"></pblmEascader>
- <span slot="footer">
- <el-button @click="pblmEascaderVisible=false">返 回</el-button>
- <el-button type="primary" @click="submitEascader">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import request from '../../../utils/gw_ajax_request.js'
- import pblmEascader from '../../duChaTianBao/project/pblmEascader'
- import {
- submitUpload
- } from "../../../api/duChaAPI.js";
- export default {
- props: ['objId', 'objName', 'villType', 'objType', 'problemMiddleType', 'problemSmallType', 'engId', 'currentObjectRgstrId','newModelData'],
- data() {
- return {
- problemForm: {
- pblmSggtn:"",
- t1: '',
- t2: '',
- t3: '',
- villType: '',
- objId: "",
- regid: '',
- objType: "",
- inspPblmCate: "",
- inspPblmDesc: "",
- ifCasePblm: '0',
- pblmStat: "",
- dataStat: "",
- nm: "",
- recPers: "",
- note: "",
- gwComFiles: [{
- id: "",
- filePath: "",
- bizId: ""
- }]
- },
- inspPblmCate:"",
- inspPlamCatelist: ['一般', '较重', '严重'],
- imgList: [],
- videoList: [],
- audioList: [],
- pblmStat: '',
- gwComFiles: [],
- problemList: [],
- currentCheckPointList: [],
- currentProblemDescList: [],
- t1: '',
- t2: '',
- t3: '',
- xiangqingmiaoshu: '',
- wenTiLeiBie:"",
- jianChaXiangMu:"",
- rules: {
- inspPblmDesc: [{
- required: true,
- message: '请输入描述',
- trigger: 'blur'
- },
- ],
- },
- pblmEascaderVisible: false,
- newPblmValue: []
- }
- },
- components: {
- upload: resolve => {
- require(["../../../widgets/uploadFile.vue"], resolve);
- },
- pblmEascader
- },
- computed: {
- recPers() {
- return localStorage.getItem('userid') ? localStorage.getItem('userid') : '';
- }
- },
- mounted() {
- this.newPblmValue = this.newModelData;
- if(this.newPblmValue){
- this.t1 = this.newPblmValue.model[0];
- this.t2 = this.newPblmValue.model[1];
- this.t3 = this.newPblmValue.label;
- this.getYanZhongChengDu();
- }
- },
- methods:{
- getYanZhongChengDu(){
- request.post('/dc/insp/pblms/getByPblms', {
- inspPblmsName:this.t1,
- checkPoint:this.t2,
- pblmDesc:this.t3,
- type: this.objType
- }).then(res => {
- if (res.success) {
- console.log("验证"+res);
- this.inspPblmCate=res.data.inspPblmCate;
- }
- })
- },
- onSubmit(problemForm) {
- this.$refs[problemForm].validate((valid) => {
- if (valid) {
- this.problemForm.villType = '0';
- this.problemForm.recPers = this.recPers
- this.problemForm.objId = this.objId;
- this.problemForm.regid = this.currentObjectRgstrId;
- this.problemForm.nm = this.objName
- this.problemForm.objType = this.objType;
- this.problemForm.pblmStat = "0";
- this.problemForm['inspPblmName'] = this.t1;
- this.problemForm['inspPblmDesc'] = this.problemForm.inspPblmDesc;
- this.problemForm['inspPlbmType'] = this.t2;
- // this.problemForm['inspPblmName'] = this.t3.pblmDesc;
- this.problemForm['inspPblmCode'] = this.t3;
- this.problemForm['pblmsTypeId'] = this.newPblmValue.model[2];
- this.problemForm.inspPblmCate = this.inspPblmCate;
- if (!this.problemForm.inspPblmName) {
- this.$message.info('问题类别不能为空')
- return
- }
- if (!this.problemForm.inspPlbmType) {
- this.$message.info('检查项目不能为空')
- return
- }
- if (!this.problemForm.inspPblmCode) {
- this.$message.info('问题描述不能为空')
- return
- }
- request.post('/dc/insp/pblm', this.problemForm).then(res => {
- if (res.success) {
- this.pblmId = res.data.pblmId;
- this.gwComFiles = [];
- this.pblmStat = res.data.pblmStat;
- if (this.$refs.uploadFile.submitUpload(res.data.pblmId)) {
- this.removeNewSupervision();
- }
- }
- })
- } else {
- console.log('error submit!!');
- return false;
- }
- });
- },
- // 文件上传
- submitUpload() {
- this.$refs.upload.submit();
- },
- updatefilelist(arg) {
- request.post('/dc/insp/pblm/update', {
- pblmId: this.pblmId,
- gwComFiles: arg,
- pblmStat: this.pblmStat
- }).then(res => {
- this.removeNewSupervision()
- });
- },
- removeNewSupervision(arg) {
- if (arg) {
- console.log(arg);
- var args = this.gwComFiles.concat(arg);
- this.updatefilelist(args);
- }
- this.$message.success('保存成功')
- this.$emit('closeDialog')
- this.gwComFiles = [];
- this.$refs.uploadFile.init();
- },
- problemListChange: function (item) {
- this.currentCheckPointList = item.checkPoints;
- },
- currentCheckPointListChange: function (item) {
- this.currentProblemDescList = item.pblmDescs;
- },
- // currentProblemDescListChange: function (item) {
- // console.log(item);
- // },
- modelData(val){
- this.newPblmValue = val;
- this.t1 = this.newPblmValue.model[0];
- this.t2 = this.newPblmValue.model[1];
- this.t3 = this.newPblmValue.label;
- this.getYanZhongChengDu();
- },
- selectPblm(){
- this.pblmEascaderVisible = true;
- },
- submitEascader(){
- if(!this.newPblmValue.model.length){
- this.$message.warning('问题不能为空');
- return;
- }
- this.pblmEascaderVisible = false;
- }
- },
- watch: {
- },
- }
- </script>
- <style>
- .media_item {
- float: left;
- width: 60px;
- font-size: 32px;
- }
- /*.el-select--mini {*/
- /*width: 100%;*/
- /*}*/
- .pblmEascader .el-dialog__body {
- height: 15vh;
- overflow: auto;
- }
- </style>
|