123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <template>
- <a-spin :spinning="confirmLoading">
- <j-form-container :disabled="formDisabled">
- <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
- <div class="cmms-dialog-item-title">巡检项目基本信息</div>
- <a-row>
- <!-- <a-col :span="24">
- <a-form-model-item label="巡检项目编号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="contentcode">
- <a-input v-model="model.contentcode" placeholder="请输入巡检项目编号" ></a-input>
- </a-form-model-item>
- </a-col> -->
- <a-col :span="24">
- <a-form-model-item label="巡检项类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="classification">
- <j-dict-select-tag type="radio" v-model="model.classification" dictCode="inspect_item_type" placeholder="请选择巡检类型" @input="inspectTypeChange()" />
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="巡检项目名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="contentname">
- <a-input v-model="model.contentname" placeholder="请输入巡检项目名称" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="12" v-if="model.classification === '1'">
- <a-form-model-item label="选择设备" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="equipmentid">
- <div class="u-flex select-equipment">
- <j-search-select-tag v-model="model.equipmentid" dict="tpm_equipment,equipmentname,id" />
- <div class="u-flex-jac search-btn" @click="chooseEquipment">
- <a-icon type="search" style="color: #fff;font-size: 18px;" />
- </div>
- </div>
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="状态" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="status">
- <j-dict-select-tag type="radio" v-model="model.status" dictCode="inspect_content_status" placeholder="请选择状态" />
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark">
- <a-input v-model="model.remark" placeholder="请输入备注"></a-input>
- </a-form-model-item>
- </a-col>
- <!-- <j-popup v-model="model.jPopup" code="demo" field="name" orgFields="name" destFields="name" :multi="true"/> -->
- </a-row>
- <div class="cmms-dialog-item-title u-flex-jab">
- <div>设备巡检设置</div>
- <div @click="addInspectItem"><a-icon type="plus"/>巡检项</div>
- </div>
- <a-table
- ref="table"
- size="middle"
- :scroll="{x:true}"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="model.cmmsInspectContentItemList"
- :pagination="false"
- class="j-table-force-nowrap">
- <!-- :loading="loading" -->
- </a-table>
- </a-form-model>
- <inspect-content-modal-add ref="addItemRef" :equipmentId="model.equipmentid" :selectData="model.cmmsInspectContentItemList" @ok="handleOk"></inspect-content-modal-add>
- </j-form-container>
- </a-spin>
- </template>
- <script>
- // import '@/assets/less/TableExpand.less'
- // import { mixinDevice } from '@/utils/mixin'
- // import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import { httpAction, getAction } from '@/api/manage'
- import { validateDuplicateValue } from '@/utils/util'
- import InspectContentModalAdd from './InspectContentModalAdd.vue'
- export default {
- name: 'InspectContentForm',
- // mixins:[JeecgListMixin, mixinDevice],
- components: {
- InspectContentModalAdd
- },
- props: {
- //表单禁用
- disabled: {
- type: Boolean,
- default: false,
- required: false
- }
- },
- data () {
- return {
- model:{
- cmmsInspectContentItemList: []
- },
- labelCol: {
- xs: { span: 24 },
- sm: { span: 5 },
- },
- wrapperCol: {
- xs: { span: 24 },
- sm: { span: 16 },
- },
- confirmLoading: false,
- validatorRules: {
- classification: [
- { required: true, message: '请先选择巡检项目类型!'},
- ],
- contentname: [
- { required: true, message: '请输入巡检项目名称!'},
- ],
- equipmentid: [
- { required: true, message: '请选择设备!'},
- ],
- status: [
- { required: true, message: '请选择状态!'},
- ],
- },
- url: {
- add: "/cmmsInspectContent/cmmsInspectContent/add",
- edit: "/cmmsInspectContent/cmmsInspectContent/edit",
- queryById: "/cmmsInspectContent/cmmsInspectContent/queryById"
- },
- columns: [
- // {
- // title: '序号',
- // dataIndex: '',
- // key:'rowIndex',
- // width:60,
- // align:"center",
- // customRender:function (t,r,index) {
- // return parseInt(index)+1;
- // }
- // },
- // {
- // title:'id',
- // align:"center",
- // dataIndex: 'id'
- // },
- // {
- // title:'inspectcheckitemid',
- // align:"center",
- // dataIndex: 'inspectcheckitemid'
- // },
- {
- title:'点检项编号',
- align:"center",
- dataIndex: 'itemcode'
- },
- {
- title:'点检项名称',
- align:"center",
- dataIndex: 'itemname'
- },
- {
- title:'标准',
- align:"center",
- dataIndex: 'inspectionstandards',
- },
- {
- title:'备注',
- align:"center",
- dataIndex: 'remark'
- }
- ],
- }
- },
- computed: {
- formDisabled(){
- return this.disabled
- },
- },
- created () {
- //备份model原始值
- this.modelDefault = JSON.parse(JSON.stringify(this.model));
- },
- methods: {
- inspectTypeChange(){
- this.model.cmmsInspectContentItemList = []
- this.$refs.addItemRef.type = this.model.classification
- },
- chooseEquipment(){
- },
- addInspectItem(){
- if (this.model.classification === '1' && this.model.equipmentid == undefined) {
- this.$message.error("请先选择设备!");
- } else {
- this.$refs.addItemRef.type = this.model.classification
- this.$refs.addItemRef.add();
- this.$refs.addItemRef.title = "选择巡检项";
- }
- },
- add () {
- // this.edit(this.modelDefault);
- this.visible = true
- },
- edit (record) {
- this.visible = true;
- this.confirmLoading = true
- // this.model = Object.assign({}, record);
- getAction(this.url.queryById, {id: record.id}).then((res) => {
- this.model = res.result
- this.model.cmmsInspectContentItemList.forEach(item => {
- item.id = item.inspectcheckitemid
- });
- console.log(this.model.cmmsInspectContentItemList)
- this.confirmLoading = false
- })
- },
- submitForm () {
- const that = this;
- // 触发表单验证
- this.$refs.form.validate(valid => {
- if (valid) {
- that.confirmLoading = true;
- let httpurl = '';
- let method = '';
- if(!this.model.id){
- httpurl+=this.url.add;
- method = 'post';
- }else{
- httpurl+=this.url.edit;
- method = 'put';
- }
- this.model.cmmsInspectContentItemList.forEach(item => {
- item.inspectcheckitemid = item.id
- });
- httpAction(httpurl,this.model,method).then((res)=>{
- if(res.success){
- that.$message.success(res.message);
- that.$emit('ok');
- }else{
- that.$message.warning(res.message);
- }
- }).finally(() => {
- that.confirmLoading = false;
- })
- }
- })
- },
- handleOk(data){
- console.log('handleOk-data', data)
- this.model.cmmsInspectContentItemList = data
- }
- }
- }
- </script>
- <style scoped>
- @import '~@/assets/less/uStyle.less';
- </style>
- <style lang="less" scoped>
- .select-equipment{
- /deep/ .ant-select-selection{
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- border-right: none;
- }
- .search-btn{
- background-color: #1890FF;
- width: 50px;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- border: 1px solid #1890FF;
- cursor: pointer;
- }
- }
- // .select-equipment:focus .search-btn{
- // border-right-width: 1px !important;
- // outline: 0;
- // box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
- // }
- </style>
|