123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <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="linecode">
- <a-input v-model="model.linecode" placeholder="请输入巡检路线编号" ></a-input>
- </a-form-model-item>
- </a-col> -->
- <a-col :span="24">
- <a-form-model-item label="巡检路线名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="linename">
- <a-input v-model="model.linename" placeholder="请输入巡检路线名称" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="24">
- <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>
- </a-row>
- <div class="cmms-dialog-item-title u-flex-jab">
- <div>巡检点设置</div>
- <div @click="addInspectSpot"><a-icon type="plus"/>巡检点</div>
- </div>
- <a-table
- ref="table"
- size="middle"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="model.inspectSpotList"
- :pagination="false"
- class="j-table-force-nowrap">
- <div slot="expandedRowRender" slot-scope="record">
- <a-table
- ref="table"
- size="middle"
- bordered
- rowKey="id"
- :columns="innerColumns"
- :dataSource="record.inspectContentList"
- :pagination="false"
- class="j-table-force-nowrap">
- </a-table>
- </div>
- </a-table>
- </a-form-model>
- <inspect-line-modal-add ref="addSpotRef" :selectData="model.inspectSpotList" @ok="handleOk"></inspect-line-modal-add>
- </j-form-container>
- </a-spin>
- </template>
- <script>
- import { httpAction, getAction } from '@/api/manage'
- import { validateDuplicateValue } from '@/utils/util'
- import InspectLineModalAdd from './InspectLineModalAdd.vue'
- export default {
- name: 'InspectLineForm',
- components: {
- InspectLineModalAdd,
- },
- props: {
- //表单禁用
- disabled: {
- type: Boolean,
- default: false,
- required: false
- }
- },
- data () {
- return {
- model:{
- inspectSpotList: []
- },
- labelCol: {
- xs: { span: 24 },
- sm: { span: 5 },
- },
- wrapperCol: {
- xs: { span: 24 },
- sm: { span: 16 },
- },
- confirmLoading: false,
- validatorRules: {
- },
- url: {
- add: "/cmmsInspectLine/cmmsInspectLine/add",
- edit: "/cmmsInspectLine/cmmsInspectLine/edit",
- queryById: "/cmmsInspectLine/cmmsInspectLine/queryById"
- },
- columns: [
- // {
- // title: '',
- // dataIndex: '',
- // key:'rowIndex',
- // width:60,
- // align:"center",
- // customRender:function (t,r,index) {
- // return parseInt(index)+1;
- // }
- // },
- {
- title:'巡检点编号',
- align:"center",
- dataIndex: 'contentcode'
- },
- {
- title:'巡检点名称',
- align:"center",
- dataIndex: 'contentname'
- },
- {
- title:'备注',
- align:"center",
- dataIndex: 'remark'
- },
- ],
- innerColumns: [
- // {
- // title: '#',
- // dataIndex: '',
- // key:'rowIndex',
- // width:60,
- // align:"center",
- // customRender:function (t,r,index) {
- // return parseInt(index)+1;
- // }
- // },
- {
- title:'巡检项目编号',
- align:"center",
- dataIndex: 'contentcode'
- },
- {
- title:'巡检项目名称',
- align:"center",
- dataIndex: 'contentname'
- },
- {
- title:'巡检项目类型',
- align:"center",
- dataIndex: 'itemname'
- },
- {
- title:'巡检设备',
- align:"center",
- dataIndex: 'equipmentname'
- },
- // {
- // 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: {
- add () {
- this.edit(this.modelDefault);
- },
- addInspectSpot(){
- this.$refs.addSpotRef.add();
- this.$refs.addSpotRef.title = "选择巡检点";
- },
- edit (record) {
- this.model = Object.assign({}, record);
- this.visible = true;
- },
- 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';
- }
- 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(data)
- data.map(res=>{
- })
- this.model.inspectSpotList = data;
- },
- }
- }
- </script>
- <style scoped>
- @import '~@/assets/less/uStyle.less';
- </style>
|