123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <template>
- <a-spin :spinning="confirmLoading">
- <j-form-container :disabled="formDisabled">
- <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
- <a-row>
- <a-col :span="24">
- <a-form-model-item label="设备名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="equipmentname">
- <!-- <j-search-select-tag v-model="model.equipmentid" placeholder="请选择设备" dict="tpm_equipment,equipmentname,id" /> -->
- <a-select
- v-model="model.equipmentid"
- placeholder="请输入设备名称或设备编号"
- show-search
- :filterOption="filterOptions"
- @search="searchDevice"
- @change="handleInput"
- allowClear>
- <a-select-option v-for="(item, index) in deviceOptions" :key="index" :value="item.equipmentcode" :label="item.equipmentname">
- <span>{{item.equipmentname}}</span>
- <span style="position: absolute;right: 2%;">{{ item.equipmentcode }}</span>
- </a-select-option>
- </a-select>
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="参数名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="tagname">
- <a-input v-model="model.tagname" placeholder="请输入参数名称" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="参数符号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="symbol">
- <a-input v-model="model.symbol" placeholder="请输入参数符号" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="最小值" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="minv">
- <a-input-number v-model="model.minv" placeholder="请输入最小值" style="width: 100%" />
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="最大值" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="maxv">
- <a-input-number v-model="model.maxv" placeholder="请输入最大值" style="width: 100%" />
- </a-form-model-item>
- </a-col>
- <a-col :span="12">
- <a-form-model-item label="参数类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="valuetype">
- <a-select
- placeholder="请选择"
- default-value="0"
- v-model="model.valuetype">
- <a-select-option value="int">int</a-select-option>
- <a-select-option value="timestamp">timestamp</a-select-option>
- <a-select-option value="float">float</a-select-option>
- </a-select>
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-form-model>
- </j-form-container>
- </a-spin>
- </template>
- <script>
- import { httpAction, getAction } from '@/api/manage'
- import { validateDuplicateValue } from '@/utils/util'
- export default {
- name: 'TpmParamsForm',
- components: {
- },
- props: {
- //表单禁用
- disabled: {
- type: Boolean,
- default: false,
- required: false
- }
- },
- data () {
- return {
- model:{
- },
- deviceOptions: [],
- deviceOptionsAll: [],
- labelCol: {
- xs: { span: 24 },
- sm: { span: 5 },
- },
- wrapperCol: {
- xs: { span: 24 },
- sm: { span: 16 },
- },
- confirmLoading: false,
- validatorRules: {
- equipmentname: [
- { required: true, message: '请输入设备名称!'},
- ],
- equipmentcode: [
- { required: true, message: '请输入设备编号!'},
- ],
- tagname: [
- { required: true, message: '请输入参数名称!'},
- ],
- symbol: [
- { required: true, message: '请输入参数符号!'},
- ],
- },
- url: {
- add: "/tpmParams/tpmParams/add",
- edit: "/tpmParams/tpmParams/edit",
- queryById: "/tpmParams/tpmParams/queryById"
- }
- }
- },
- computed: {
- formDisabled(){
- return this.disabled
- },
- },
- created () {
- //备份model原始值
- this.modelDefault = JSON.parse(JSON.stringify(this.model));
- this.getDeviceOption();
- },
- methods: {
- handleInput(e) {
- var _this = this;
- this.deviceOptions.forEach(element => {
- if (element.equipmentcode === e) {
- _this.model.equipmentcode = e;
- _this.model.equipmentname = element.equipmentname;
- return;
- }
- });
- },
- // 获取设备下拉列表
- getDeviceOption(){
- getAction(`/tpmEquipment/tpmEquipment/selectEquipmentList`).then(res=>{
- this.deviceOptions = res.result.map((res) => {
- return {
- id: res.id,
- equipmentname: res.equipmentname,
- equipmentcode: res.equipmentcode,
- }
- })
- // 存一个完整的设备表
- this.deviceOptionsAll = this.deviceOptions
- })
- },
- // 筛选设备
- searchDevice(value) {
- // 若输入的值删除,则重新赋完整的设备列表
- if (value.trim().length === 0) {
- this.deviceOptions = this.deviceOptionsAll
- }
- // 通过判断字符串中是数字还是文字进而判断是通过设备名筛选还是设备编号筛选
- let panDuan = isNaN(parseFloat(value))
- if (!panDuan) {
- // 数字
- let filteredArray = this.deviceOptionsAll.filter(item => item.equipmentcode.includes(value));
- this.deviceOptions = filteredArray
- } else {
- let filteredArray = this.deviceOptionsAll.filter(item => item.equipmentname.includes(value));
- this.deviceOptions = filteredArray
- }
- },
- // 解决筛选后option不回显问题
- filterOptions(input, option) {
- return this.deviceOptions
- },
- // 解决筛选后删除option不回显问题
- clearOptions() {
- this.deviceOptions = this.deviceOptionsAll
- },
- add () {
- this.edit(this.modelDefault);
- },
- 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;
- })
- }
-
- })
- },
- }
- }
- </script>
|