From 7f6af6907202cb7c9395a7020d249bd62e17d50f Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期五, 05 一月 2024 17:59:17 +0800 Subject: [PATCH] 1、解决车间看板页面因浏览器兼容性问题导致的样式不适配问题(使用浏览器86版本与其他版本做对比) 2、优化车间看板页面代码,将看板拖拽区域设置高度后再设置限制拖拽以试图解决进入页面后有概率设备无法自由拖拽问题(猜想因父子组件渲染顺序导致,父组件还未渲染完成,子组件就已限制区域,此时区域高度可能0,未在现场调试,本地调试无问题) 3、优化设备利用率、开动率及班次利用率页面代码,解决因浏览器版本问题导致表格前3列文字无法垂直排列导致的布局问题以及调整右上角区间展示区域为响应式布局 --- src/views/mdc/base/modules/mdcPassRate/mdcPassRateModal.vue | 58 +++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 49 insertions(+), 9 deletions(-) diff --git a/src/views/mdc/base/modules/mdcPassRate/mdcPassRateModal.vue b/src/views/mdc/base/modules/mdcPassRate/mdcPassRateModal.vue index 44e8c20..dffd018 100644 --- a/src/views/mdc/base/modules/mdcPassRate/mdcPassRateModal.vue +++ b/src/views/mdc/base/modules/mdcPassRate/mdcPassRateModal.vue @@ -7,7 +7,7 @@ <a-col :span="12"> <a-form-item label="璁惧缁�" :labelCol="labelCol" :wrapperCol="wrapperCol"> <a-input-search :readOnly="true" v-decorator="['equipmentIds', validatorRules.equipmentIds]" - @search="deviceSearch" enter-button/> + @search="deviceSearch" enter-button placeholder="璇烽�夋嫨璁惧"/> </a-form-item> </a-col> @@ -39,15 +39,13 @@ </a-row> </a-form> </a-spin> - <mdc-pass-rate-modal-list ref="deviceRepairListModel" @sendSelectionRows="getDeviceRows"></mdc-pass-rate-modal-list> - + <select-device-modal ref="selectDeviceModal" @selectFinished="selectOK" :title="'閫夋嫨璁惧'"/> </a-modal> </template> <script> import moment from 'moment' import pick from 'lodash.pick' - import mdcPassRateModalList from './mdcPassRateModalList' // import JDate from './JDate' import { getAction, @@ -57,10 +55,11 @@ import { duplicateCheck } from '@/api/api' + import SelectDeviceModal from '../../../../system/modules/SelectDeviceModal' export default { name: 'mdcPassRateModal', - components: {mdcPassRateModalList}, + components: { SelectDeviceModal}, props: {}, data() { return { @@ -113,6 +112,30 @@ { required:true, message: "璇烽�夋嫨璁惧" + }, + ], + }, + processQuantity:{ + rules:[ + { + required:true, + message: "璇疯緭鍏ュ姞宸ユ暟閲�" + }, + ], + }, + unqualifiedQuantity:{ + rules:[ + { + required:true, + message: "璇疯緭鍏ヤ笉鍚堟牸鏁伴噺" + }, + ], + }, + efficientDate:{ + rules:[ + { + required:true, + message: "璇烽�夋嫨鏃ユ湡" }, ], }, @@ -173,9 +196,10 @@ // }) }, deviceSearch() { - this.$refs.deviceRepairListModel.openPage() - this.$refs.deviceRepairListModel.title = '閫夋嫨璁惧' - this.$refs.deviceRepairListModel.disableSubmit = false + this.$refs.selectDeviceModal.visible = true + this.$refs.selectDeviceModal.selectedRowKeys = [] + this.$refs.selectDeviceModal.selectedRows = [] + this.$refs.selectDeviceModal.checkedKeys = this.form.getFieldValue('equipmentIds') ? this.form.getFieldValue('equipmentIds').split(',') : [] }, //绾ц仈妗唎nChange浜嬩欢 // onChange(value) { @@ -245,7 +269,7 @@ obj.then((res) => { if (res.success) { // that.$message.success("娣诲姞鎴愬姛") - that.$notification.warning({ + that.$notification.success({ message:'娑堟伅', description:"娣诲姞鎴愬姛" }); @@ -323,6 +347,22 @@ }, checkboxChange(e) { this.checked = e.target.checked + }, + + /** + * 閫夋嫨宸叉湁璁惧鍚庣偣鍑荤‘瀹氭椂瑙﹀彂 + * @param data 宸查�夋嫨鐨勮澶� + */ + selectOK(data) { + // let params = {} + // params.equipmentIdList = [] + // for (var a = 0; a < data.length; a++) { + // params.equipmentIdList.push(data[a]) + // } + console.log('data=', data) + this.form.setFieldsValue({ + equipmentIds: data.join(',') + }) } } } -- Gitblit v1.9.3