浏览代码

批量修改

su 1 年之前
父节点
当前提交
4427136d79
共有 3 个文件被更改,包括 835 次插入39 次删除
  1. 22 0
      src/api/mes/job.js
  2. 726 0
      src/view/job/dictionaries/dictionaries.vue
  3. 87 39
      src/view/job/piece/piece.vue

+ 22 - 0
src/api/mes/job.js

@@ -148,3 +148,25 @@ export const editAllParams = (data) => {
     data
   })
 }
+
+export const dictionaryTab = (params) => {
+  return service({
+    url: '/mes_server/dictionary/getTab',
+    method: 'get',
+    params
+  })
+}
+export const dictionaryList = (params) => {
+  return service({
+    url: '/mes_server/dictionary/getEditList',
+    method: 'get',
+    params
+  })
+}
+export const dictionaryEdit = (data) => {
+  return service({
+    url: '/mes_server/dictionary/edit',
+    method: 'post',
+    data
+  })
+}

+ 726 - 0
src/view/job/dictionaries/dictionaries.vue

@@ -0,0 +1,726 @@
+<template>
+  <div>
+    <el-container>
+      <el-aside width="350px">
+        <div class="JKWTree-tree">
+          <h3>计件定额管理</h3>
+          <el-tree :data="treeData" :props="defaultProps" @node-click="handleNodeClick"></el-tree>
+        </div>
+      </el-aside>
+      <el-container>
+        <el-main>
+          <div class="gva-search-box">
+            <!-- <el-form ref="elSearchFormRef" :inline="true" :model="searchInfo" class="demo-form-inline" :rules="searchRule" @keyup.enter="onSubmit">
+              <el-form-item label="创建日期" prop="createdAt">
+                <template #label>
+        <span>
+          创建日期
+          <el-tooltip content="搜索范围是开始日期(包含)至结束日期(不包含)">
+            <el-icon><QuestionFilled /></el-icon>
+          </el-tooltip>
+        </span>
+                </template>
+                <el-date-picker v-model="searchInfo.startCreatedAt" type="datetime" placeholder="开始日期" :disabled-date="time=> searchInfo.endCreatedAt ? time.getTime() > searchInfo.endCreatedAt.getTime() : false"></el-date-picker>
+                —
+                <el-date-picker v-model="searchInfo.endCreatedAt" type="datetime" placeholder="结束日期" :disabled-date="time=> searchInfo.startCreatedAt ? time.getTime() < searchInfo.startCreatedAt.getTime() : false"></el-date-picker>
+              </el-form-item>
+              <el-form-item>
+                <el-button type="primary" icon="search" @click="onSubmit">查询</el-button>
+                <el-button icon="refresh" @click="onReset">重置</el-button>
+              </el-form-item>
+            </el-form> -->
+			<div class="gva-btn-list">
+			  <el-button type="primary" icon="upload" @click="bacthEditClick">定额参数批量修改excel</el-button>
+			  <el-button type="primary" icon="plus" @click="bacthSubmit">更新</el-button>
+			</div>
+          </div>
+          <div class="gva-table-box">
+            <!-- <div class="gva-btn-list">
+			  <el-button type="primary" icon="upload" @click="">导出到excel</el-button>
+			  <el-button type="primary" icon="plus" @click="getDetails(2)">详情</el-button>
+            </div> -->
+            <el-table
+                ref="multipleTable"
+				stripe
+            	border
+                style="width: 100%"
+                tooltip-effect="dark"
+                :data="tableData"
+                row-key="ID"
+                @selection-change="handleSelectionChange"
+            	@row-dblclick="updateCompanyFunc"
+            	:show-overflow-tooltip="true"
+            	highlight-current-row="true"
+            >
+              <el-table-column align="left" label="定额代号" prop="sys_bh" width="120" />
+              <el-table-column align="left" label="名称备注" prop="sys_mc" width="210" />
+              <el-table-column align="left" label="使用工序" prop="use_gx" width="88" />
+			  <el-table-column align="left" label="适用机型" prop="use_machine" width="88" />
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="日定额" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.daily_quota" :clearable="false"/>
+			  </el-table-column>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="千件工价" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.thousand_piece" :clearable="false"/>
+			  </el-table-column>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="补产标准" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.production_standard" :clearable="false"/>
+			  </el-table-column>
+			 <!-- <el-table-column align="left" label="原日定额" prop="daily_quota" width="90" />
+			  <el-table-column align="left" label="原千件工价" prop="thousand_piece" width="100" />
+			  <el-table-column align="left" label="原补产标准" prop="production_standard" width="100" /> -->
+			 <!-- <el-table-column fixed="right" v-slot="scope" align="left" label="新日定额" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.daily_quota" :clearable="false"/>
+			  </el-table-column>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="新千件工价" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.thousand_piece" :clearable="false"/>
+			  </el-table-column>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="新补产标准" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.production_standard" :clearable="false"/>
+			  </el-table-column> -->
+			  <!-- <el-table-column v-slot="scope" align="left" label="新补产标准" width="100">
+				  	<el-form-item :prop="'tableData.'+scope.row+'.production_standard'">
+				  		<el-input v-model="scope.row.production_standard" :clearable="true"/>
+				  	</el-form-item>
+              </el-table-column> -->
+			  <el-table-column v-slot="scope" v-if="false" align="left" label="UniqId" width="100" >
+			      <el-input v-model="scope.row.UniqId" :clearable="false"/>
+			  </el-table-column>
+            </el-table>
+            <!-- <div class="gva-pagination">
+              <el-pagination
+                  layout="total, sizes, prev, pager, next, jumper"
+                  :current-page="page"
+                  :page-size="pageSize"
+                  :page-sizes="[10, 30, 50, 100]"
+                  :total="total"
+                  @current-change="handleCurrentChange"
+                  @size-change="handleSizeChange"
+				  :row-style="{ height: '20px' }"
+				  :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
+				  :header-cell-style="{ padding: '0px' }"
+              />
+            </div> -->
+          </div>
+          <el-dialog v-model="dialogFormVisible" :before-close="closeDialog" :title="type==='create'?'添加':'修改'" destroy-on-close>
+            <el-scrollbar height="500px">
+              <el-form :model="formData" label-position="right" ref="elFormRef" :rules="rule" label-width="80px">
+                <el-form-item label="address字段:"  prop="address" >
+                  <el-input v-model="formData.address" :clearable="true"  placeholder="请输入address字段" />
+                </el-form-item>
+                <el-form-item label="image字段:"  prop="image" >
+                  <el-input v-model="formData.image" :clearable="true"  placeholder="请输入image字段" />
+                </el-form-item>
+                <el-form-item label="name字段:"  prop="name" >
+                  <el-input v-model="formData.name" :clearable="true"  placeholder="请输入name字段" />
+                </el-form-item>
+              </el-form>
+            </el-scrollbar>
+            <template #footer>
+              <div class="dialog-footer">
+                <el-button @click="closeDialog">取 消</el-button>
+                <el-button type="primary" @click="enterDialog">确 定</el-button>
+              </div>
+            </template>
+          </el-dialog>
+
+          <el-dialog v-model="detailShow" style="width: 800px" lock-scroll :before-close="closeDetailShow" :title="`当前编码:${pieceData.sys_bh}`" destroy-on-close>
+            <el-scrollbar height="300px">
+              <el-descriptions column="1" border>
+                <el-descriptions-item label="编号">
+                  {{ pieceData.sys_bh }}
+                </el-descriptions-item>
+                <el-descriptions-item label="名称">
+                  {{ pieceData.sys_mc }}
+                </el-descriptions-item>
+                <el-descriptions-item label="适用工序">
+                  {{ pieceData.sygx }}
+                </el-descriptions-item>
+				<el-descriptions-item label="适用机型">
+				  {{ pieceData.syjx }}
+				</el-descriptions-item>
+              </el-descriptions>
+			  <el-descriptions column="3" border>
+			  	<el-descriptions-item label="日定额">
+			  	  {{ pieceData.daily_quota }}
+			  	</el-descriptions-item>
+				<el-descriptions-item label="千件工价">
+				  {{ pieceData.thousand_piece }}
+				</el-descriptions-item>
+				<el-descriptions-item label="小时补产标准">
+				  {{ pieceData.production_standard }}
+				</el-descriptions-item>
+			  </el-descriptions>
+			  <el-descriptions column="10" direction="vertical" border>
+			    <el-descriptions-item label="机长">
+			      {{ pieceData.fir_proportion }}
+			    </el-descriptions-item>
+			    <el-descriptions-item label="副机">
+			      {{ pieceData.sec_proportion }}
+			    </el-descriptions-item>
+			    <el-descriptions-item label="调墨">
+			      {{ pieceData.ink_proportion }}
+			    </el-descriptions-item>
+			  	<el-descriptions-item label="二手">
+			  	  {{ pieceData.second_hand_proportion }}
+			  	</el-descriptions-item>
+			  	<el-descriptions-item label="飞达">
+			  	  {{ pieceData.feeder_proportion }}
+			  	</el-descriptions-item>
+				<el-descriptions-item label="辅助">
+				  {{ pieceData.auxiliary_proportion }}
+				</el-descriptions-item>
+				<el-descriptions-item label="放卷">
+				  {{ pieceData.unwinder_proportion }}
+				</el-descriptions-item>
+				<el-descriptions-item label="分切1">
+				  {{ pieceData.cutting_one_proportion }}
+				</el-descriptions-item>
+				<el-descriptions-item label="分切2">
+				  {{ pieceData.cutting_two_proportion }}
+				</el-descriptions-item>
+				<el-descriptions-item label="检验">
+				  {{ pieceData.inspect_proportion }}
+				</el-descriptions-item>
+			  </el-descriptions>
+            </el-scrollbar>
+          </el-dialog>
+        </el-main>
+      </el-container>
+    </el-container>
+  </div>
+</template>
+
+<script setup>
+import {
+  dictionaryTab,
+  dictionaryList,
+  dictionaryEdit,
+  getOnePieceWork,
+  getPieceWork,
+  getPieceParams,
+  editAllParams
+} from '@/api/mes/job'
+import {
+  createCompany,
+  deleteCompany,
+  deleteCompanyByIds,
+  updateCompany,
+  findCompany,
+  getCompanyList
+} from '@/api/company'
+
+// 全量引入格式化工具 请按需保留
+import { getDictFunc, formatDate, formatBoolean, filterDict, ReturnArrImg, onDownloadFile } from '@/utils/format'
+import { ElMessage, ElMessageBox } from 'element-plus'
+import { ref, reactive } from 'vue'
+
+defineOptions({
+    name: 'Company'
+})
+
+// const process_data = async(data) => {
+// 	tree_data = []
+// 	for(key, values in data.items()){
+// 		node = {
+// 		    'label': key,
+// 		    'children': []
+// 		}
+// 		if(isinstance(values, dict)){
+// 			for(sub_key, sub_values in values.items()){
+// 				if(isinstance(sub_values, list)){
+// 					children = list(filter(None, sub_values))
+// 					if(children){
+// 						node_children = {
+// 						    'label': sub_key,
+// 						    'children': [{'label': child} for child in children]
+// 						}
+// 						node['children'].append(node_children)
+// 					}else if(isinstance(sub_values, dict)){
+// 						grandchildren = process_data(sub_values)
+// 						if(grandchildren){
+// 							node_children = {
+// 							    'label': sub_key,
+// 							    'children': grandchildren
+// 							}
+// 							node['children'].append(node_children)
+// 						}
+// 					}
+// 					tree_data.append(node)
+// 				}
+// 			}
+// 		}
+// 	}
+// }
+var mzstr = ''
+var mzarr=[]
+var gystr = ''
+var gyarr=[]
+var fpstr = ''
+var fparr=[]
+var gzstr = ''
+var gzarr=[]
+var jbstr = ''
+var jbarr=[]
+var xlstr = ''
+var xlarr=[]
+const treeData=ref([])
+const treeTab = async() => {
+  const dictionaryTabs = await dictionaryTab()
+  if (dictionaryTabs.code === 0) {
+	  for(let key in dictionaryTabs.data.民族){
+		  mzstr+=key+','
+	  }
+	  mzstr=mzstr.substring(0,mzstr.length-1)
+	  mzarr=mzstr.split(',')
+	  const 民族=mzarr.map(item=>({
+		  label:item,
+		  cate:`民族`
+	  }))
+	   
+	   for(let key in dictionaryTabs.data.标准工艺){
+	   		  gystr+=key+'-'
+			  for(let keys in dictionaryTabs.data.标准工艺[key]){
+				  gystr+=dictionaryTabs.data.标准工艺[key][keys]+'-'
+			  }
+			  gystr+=','
+	   }
+	   gystr=gystr.substring(0,gystr.length-1)
+	   gyarr=gystr.split(',')
+	    const 标准工艺=gyarr.map(item=>({
+	    		  label:item.substring(0,gystr.length-1).split('-')[0],
+	    		  cate:`标准工艺`,
+	   			  children:item.substring(0,gystr.length-1).split('-').splice(1,item.substring(0,gystr.length-1).split('-').length-2).map(items=>({
+	   		   label:items,
+			   cate:`标准工艺`,
+	    }))
+	    }))
+		
+		for(let key in dictionaryTabs.data.废品分类){
+				  fpstr+=key+'+'
+					  for(let keys in dictionaryTabs.data.废品分类[key]){
+						  fpstr+=dictionaryTabs.data.废品分类[key][keys]+'+'
+					  }
+					  fpstr+=','
+		}
+		fpstr=fpstr.substring(0,fpstr.length-1)
+		fparr=fpstr.split(',')
+		 const 废品分类=fparr.map(item=>({
+		 		  label:item.substring(0,fpstr.length-1).split('+')[0],
+		 		  cate:`废品分类`,
+					  children:item.substring(0,fpstr.length-1).split('+').splice(1,item.substring(0,fpstr.length-1).split('+').length-2).map(items=>({
+				   label:items,
+					   cate:`废品分类`,
+		 }))
+		 }))
+	   
+	   for(let key in dictionaryTabs.data.工资表){
+	   		  gzstr+=key+','
+	   }
+	   gzstr=gzstr.substring(0,gzstr.length-1)
+	   gzarr=gzstr.split(',')
+	   const 工资表=gzarr.map(item=>({
+	   		  label:item,
+	   		  cate:`工资表`
+	   }))
+	   
+	   for(let key in dictionaryTabs.data.级别){
+	   		  jbstr+=key+','
+	   }
+	   jbstr=jbstr.substring(0,jbstr.length-1)
+	   jbarr=jbstr.split(',')
+	   const 级别=jbarr.map(item=>({
+	   		  label:item,
+	   		  cate:`级别`
+	   }))
+	   
+	   for(let key in dictionaryTabs.data.学历){
+	   		  xlstr+=key+','
+	   }
+	   xlstr=xlstr.substring(0,xlstr.length-1)
+	   xlarr=xlstr.split(',')
+	   const 学历=xlarr.map(item=>({
+	   		  label:item,
+	   		  cate:`学历`
+	   }))
+	  //  console.log(dictionaryTabs.data.标准工艺.外发加工.map(items=>({
+		 //   lable:items
+	  //  })))
+	  
+	  //  const 标准工艺=gyarr.map(item=>({
+	  //  		  lable:item,
+	  //  		  cate:`标准工艺`,
+			//   children:dictionaryTabs.data.标准工艺.item.map(items=>({
+		 //   lable:items
+	  //  }))
+	  //  }))
+	   treeData.value = [
+	   	{
+	   		label: '民族',
+	   		children:民族,
+	   		cate:'民族'
+	   	},
+	   	{
+	   		label: '标准工艺',
+	   		children:标准工艺,
+	   		cate:'标准工艺'
+	   	},
+		{
+			label: '废品分类',
+			children:废品分类,
+			cate:'废品分类'
+		},
+		{
+			label: '工资表',
+			children:工资表,
+			cate:'工资表'
+		},
+		{
+			label: '级别',
+			children:级别,
+			cate:'级别'
+		},
+		{
+			label: '学历',
+			children:学历,
+			cate:'学历'
+		}
+	   ]
+  }
+}
+treeTab()
+const handleNodeClick = (node,check) => {
+  //存放当前节点的nodeId
+  // if (node.paramss) {
+  // 		sys_bh.value = node.paramss.code;
+  // 		getDetails();
+		// return false;
+  // 	}
+  // if (node.params) {
+  // 		sys_bh.value = node.params.code;
+  // 		getDetails();
+  // 	}
+  // if(node.children==null){
+  // 	sys_bh.value = node.params.code;
+  // 	getDetails();
+  // }else{
+  // 	if(node.children.length==0){
+  // 		sys_bh.value = node.params.code;
+  // 		getDetails();
+  // 	}
+  // }
+  if(node){
+	  cate.value=node.cate
+	  search.value=node.label
+  }
+  // console.log(class.value);
+  // console.log(node,check);
+}
+// 自动化生成的字典(可能为空)以及字段
+const formData = ref({
+        address: '',
+        image: '',
+        name: '',
+        })
+
+
+// 验证规则
+const rule = reactive({
+})
+
+const searchRule = reactive({
+  createdAt: [
+    { validator: (rule, value, callback) => {
+      if (searchInfo.value.startCreatedAt && !searchInfo.value.endCreatedAt) {
+        callback(new Error('请填写结束日期'))
+      } else if (!searchInfo.value.startCreatedAt && searchInfo.value.endCreatedAt) {
+        callback(new Error('请填写开始日期'))
+      } else if (searchInfo.value.startCreatedAt && searchInfo.value.endCreatedAt && (searchInfo.value.startCreatedAt.getTime() === searchInfo.value.endCreatedAt.getTime() || searchInfo.value.startCreatedAt.getTime() > searchInfo.value.endCreatedAt.getTime())) {
+        callback(new Error('开始日期应当早于结束日期'))
+      } else {
+        callback()
+      }
+    }, trigger: 'change' }
+  ],
+})
+
+const elFormRef = ref()
+const elSearchFormRef = ref()
+
+// =========== 表格控制部分 ===========
+const page = ref(1)
+const total = ref(0)
+const pageSize = ref(10)
+const tableData = ref([])
+const searchInfo = ref({})
+const sys_bh = ref()
+const cate = ref()
+const search = ref()
+const pieceData = ref([])
+const isSubmit = ref(0)
+
+// 重置
+const onReset = () => {
+  searchInfo.value = {}
+  getTableData()
+}
+
+// 搜索
+const onSubmit = () => {
+  elSearchFormRef.value?.validate(async(valid) => {
+    if (!valid) return
+    page.value = 1
+    pageSize.value = 10
+    getTableData()
+  })
+}
+
+// 分页
+const handleSizeChange = (val) => {
+  pageSize.value = val
+  getTableData()
+}
+
+// 修改页面容量
+const handleCurrentChange = (val) => {
+  page.value = val
+  getTableData()
+}
+
+
+const inputClick = async() => {
+	isSubmit.value=1
+}
+const bacthEditClick = async() => {
+		const dictionaryLists = await dictionaryList({class:cate.value,search:search.value})
+		if (dictionaryLists.code === 0) {
+			tableData.value = dictionaryLists.data
+			isSubmit.value=0
+		}
+}
+const bacthSubmit = async() => {
+	if(isSubmit.value===1){
+		const dictionaryEdits = await dictionaryEdit(tableData.value)
+		if (dictionaryEdits.code === 0) {
+			  ElMessage({
+			          type: 'success',
+			          message: '更新成功'
+			      })
+				  isSubmit.value=0
+		}
+		// console.log(tableData.value)
+	}
+	
+}
+// 查询
+// const getTableData = async() => {
+//   const table = await getCompanyList({ page: page.value, pageSize: pageSize.value, ...searchInfo.value })
+//   if (table.code === 0) {
+//     tableData.value = table.data.list
+//     total.value = table.data.total
+//     page.value = table.data.page
+//     pageSize.value = table.data.pageSize
+//   }
+// }
+
+// getTableData()
+
+// ============== 表格控制部分结束 ===============
+
+// 获取需要的字典 可能为空 按需保留
+const setOptions = async () =>{
+}
+
+// 获取需要的字典 可能为空 按需保留
+setOptions()
+
+
+// 多选数据
+const multipleSelection = ref([])
+// 多选
+const handleSelectionChange = (val) => {
+    multipleSelection.value = val
+}
+
+// 删除行
+const deleteRow = (row) => {
+    ElMessageBox.confirm('确定要删除吗?', '提示', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+    }).then(() => {
+            deleteCompanyFunc(row)
+        })
+    }
+
+
+// 批量删除控制标记
+const deleteVisible = ref(false)
+
+// 多选删除
+const onDelete = async() => {
+      const ids = []
+      if (multipleSelection.value.length === 0) {
+        ElMessage({
+          type: 'warning',
+          message: '请选择要删除的数据'
+        })
+        return
+      }
+      multipleSelection.value &&
+        multipleSelection.value.map(item => {
+          ids.push(item.ID)
+        })
+      const res = await deleteCompanyByIds({ ids })
+      if (res.code === 0) {
+        ElMessage({
+          type: 'success',
+          message: '删除成功'
+        })
+        if (tableData.value.length === ids.length && page.value > 1) {
+          page.value--
+        }
+        deleteVisible.value = false
+        getTableData()
+      }
+    }
+
+// 行为控制标记(弹窗内部需要增还是改)
+const type = ref('')
+
+// 更新行
+const updateCompanyFunc = async(row) => {
+    // const res = await findCompany({ ID: row.ID })
+    // type.value = 'update'
+    // if (res.code === 0) {
+    //     formData.value = res.data.recompany
+    //     dialogFormVisible.value = true
+    // }
+}
+
+
+// 删除行
+const deleteCompanyFunc = async (row) => {
+    const res = await deleteCompany({ ID: row.ID })
+    if (res.code === 0) {
+        ElMessage({
+                type: 'success',
+                message: '删除成功'
+            })
+            if (tableData.value.length === 1 && page.value > 1) {
+            page.value--
+        }
+        getTableData()
+    }
+}
+
+// 弹窗控制标记
+const dialogFormVisible = ref(false)
+
+
+// 查看详情控制标记
+const detailShow = ref(false)
+
+
+// 打开详情弹窗
+const openDetailShow = () => {
+  detailShow.value = true
+}
+
+
+// 打开详情
+const getDetails = async () => {
+	const getOnePieceWorks = await getOnePieceWork({code:sys_bh.value})
+	if (getOnePieceWorks.code === 0) {
+	  // getProcessLosss.data[0].forEach(function(i,index){
+	  // 	console.log(i)
+	  // })
+	  pieceData.value=getOnePieceWorks.data[0]
+	  openDetailShow()
+	}
+	openDetailShow()
+  // 打开弹窗
+  // const res = await findCompany({ ID: row })
+  // if (res.code === 0) {
+  //   formData.value = res.data.recompany
+  //   openDetailShow()
+  // }
+}
+
+
+// 关闭详情弹窗
+const closeDetailShow = () => {
+  detailShow.value = false
+  formData.value = {
+          address: '',
+          image: '',
+          name: '',
+          }
+}
+
+
+// 打开弹窗
+const openDialog = () => {
+    // type.value = 'create'
+    dialogFormVisible.value = true
+}
+
+// 关闭弹窗
+const closeDialog = () => {
+    dialogFormVisible.value = false
+    formData.value = {
+        address: '',
+        image: '',
+        name: '',
+        }
+}
+// 弹窗确定
+const enterDialog = async () => {
+     elFormRef.value?.validate( async (valid) => {
+             if (!valid) return
+              let res
+              switch (type.value) {
+                case 'create':
+                  res = await createCompany(formData.value)
+                  break
+                case 'update':
+                  res = await updateCompany(formData.value)
+                  break
+                default:
+                  res = await createCompany(formData.value)
+                  break
+              }
+              if (res.code === 0) {
+                ElMessage({
+                  type: 'success',
+                  message: '创建/更改成功'
+                })
+                closeDialog()
+                getTableData()
+              }
+      })
+}
+
+</script>
+
+<style>
+.JKWTree-container {
+  display: flex;
+}
+
+.JKWTree-tree {
+  width: 350px;
+  background-color: #fff;
+  padding: 10px;
+  margin-right: 20px;
+}
+
+.JKWTree-tree h3 {
+  font-size: 15px;
+  font-weight: 700;
+  margin: 10px 0;
+}
+
+.JKWTree-content {
+  flex: 1;
+}
+</style>

+ 87 - 39
src/view/job/piece/piece.vue

@@ -30,8 +30,8 @@
               </el-form-item>
             </el-form> -->
 			<div class="gva-btn-list">
-			  <el-button type="primary" icon="upload" @click="">定额参数批量修改excel</el-button>
-			  <el-button type="primary" icon="plus" @click="">更新</el-button>
+			  <el-button type="primary" icon="upload" @click="bacthEditClick">定额参数批量修改excel</el-button>
+			  <el-button type="primary" icon="plus" @click="bacthSubmit">更新</el-button>
 			</div>
           </div>
           <div class="gva-table-box">
@@ -41,6 +41,7 @@
             </div> -->
             <el-table
                 ref="multipleTable"
+				stripe
             	border
                 style="width: 100%"
                 tooltip-effect="dark"
@@ -51,27 +52,41 @@
             	:show-overflow-tooltip="true"
             	highlight-current-row="true"
             >
-              <el-table-column align="left" label="定额代号" prop="address" width="90" />
-              <el-table-column align="left" label="名称备注" prop="image" width="90" />
-              <el-table-column align="left" label="使用工序" prop="name" width="90" />
-			  <el-table-column align="left" label="适用机型" prop="address" width="90" />
-			  <el-table-column align="left" label="原日定额" prop="image" width="90" />
-			  <el-table-column align="left" label="原千件工价" prop="name" width="100" />
-			  <el-table-column align="left" label="原补产标准" prop="address" width="100" />
-			  <el-table-column align="left" label="新日定额" prop="image" width="100" >
-			      <el-input v-model="formData.daily_quota" :clearable="true"/>
+              <el-table-column align="left" label="定额代号" prop="sys_bh" width="120" />
+              <el-table-column align="left" label="名称备注" prop="sys_mc" width="210" />
+              <el-table-column align="left" label="使用工序" prop="use_gx" width="88" />
+			  <el-table-column align="left" label="适用机型" prop="use_machine" width="88" />
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="日定额" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.daily_quota" :clearable="false"/>
 			  </el-table-column>
-			  <el-table-column align="left" label="千件工价" prop="name" width="100" >
-			      <el-input v-model="formData.thousand_piece" :clearable="true"/>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="千件工价" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.thousand_piece" :clearable="false"/>
 			  </el-table-column>
-			  <el-table-column align="left" label="新补产标准" prop="address" width="100">
-				  <el-input v-model="formData.production_standard" :clearable="true"/>
-              </el-table-column>
-			  <el-table-column align="left" v-if="false" label="新补产标准" prop="UniqId" width="100">
-			  	  <el-input v-model="formData.UniqId" :clearable="true"/>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="补产标准" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.production_standard" :clearable="false"/>
+			  </el-table-column>
+			 <!-- <el-table-column align="left" label="原日定额" prop="daily_quota" width="90" />
+			  <el-table-column align="left" label="原千件工价" prop="thousand_piece" width="100" />
+			  <el-table-column align="left" label="原补产标准" prop="production_standard" width="100" /> -->
+			 <!-- <el-table-column fixed="right" v-slot="scope" align="left" label="新日定额" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.daily_quota" :clearable="false"/>
+			  </el-table-column>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="新千件工价" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.thousand_piece" :clearable="false"/>
+			  </el-table-column>
+			  <el-table-column fixed="right" v-slot="scope" align="left" label="新补产标准" width="100" >
+			      <el-input @input="inputClick" v-model="scope.row.production_standard" :clearable="false"/>
+			  </el-table-column> -->
+			  <!-- <el-table-column v-slot="scope" align="left" label="新补产标准" width="100">
+				  	<el-form-item :prop="'tableData.'+scope.row+'.production_standard'">
+				  		<el-input v-model="scope.row.production_standard" :clearable="true"/>
+				  	</el-form-item>
+              </el-table-column> -->
+			  <el-table-column v-slot="scope" v-if="false" align="left" label="UniqId" width="100" >
+			      <el-input v-model="scope.row.UniqId" :clearable="false"/>
 			  </el-table-column>
             </el-table>
-            <div class="gva-pagination">
+            <!-- <div class="gva-pagination">
               <el-pagination
                   layout="total, sizes, prev, pager, next, jumper"
                   :current-page="page"
@@ -80,8 +95,11 @@
                   :total="total"
                   @current-change="handleCurrentChange"
                   @size-change="handleSizeChange"
+				  :row-style="{ height: '20px' }"
+				  :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
+				  :header-cell-style="{ padding: '0px' }"
               />
-            </div>
+            </div> -->
           </div>
           <el-dialog v-model="dialogFormVisible" :before-close="closeDialog" :title="type==='create'?'添加':'修改'" destroy-on-close>
             <el-scrollbar height="500px">
@@ -175,7 +193,9 @@
 <script setup>
 import {
   getOnePieceWork,
-  getPieceWork
+  getPieceWork,
+  getPieceParams,
+  editAllParams
 } from '@/api/mes/job'
 import {
   createCompany,
@@ -278,7 +298,7 @@ const handleNodeClick = (node,check) => {
   }else{
 	  code.value=node.code
   }
-  console.log(node.code);
+  // console.log(code.value);
   // console.log(node,check);
 }
 // 自动化生成的字典(可能为空)以及字段
@@ -321,6 +341,7 @@ const searchInfo = ref({})
 const sys_bh = ref()
 const code = ref()
 const pieceData = ref([])
+const isSubmit = ref(0)
 
 // 重置
 const onReset = () => {
@@ -350,18 +371,45 @@ const handleCurrentChange = (val) => {
   getTableData()
 }
 
-// 查询
-const getTableData = async() => {
-  const table = await getCompanyList({ page: page.value, pageSize: pageSize.value, ...searchInfo.value })
-  if (table.code === 0) {
-    tableData.value = table.data.list
-    total.value = table.data.total
-    page.value = table.data.page
-    pageSize.value = table.data.pageSize
-  }
-}
 
-getTableData()
+const inputClick = async() => {
+	isSubmit.value=1
+}
+const bacthEditClick = async() => {
+	if(code.value.length>2){
+		const getPieceParamss = await getPieceParams({code:code.value})
+		if (getPieceParamss.code === 0) {
+			tableData.value = getPieceParamss.data
+			isSubmit.value=0
+		}
+	}
+}
+const bacthSubmit = async() => {
+	if(isSubmit.value===1){
+		const editAllParamss = await editAllParams(tableData.value)
+		if (editAllParamss.code === 0) {
+			  ElMessage({
+			          type: 'success',
+			          message: '更新成功'
+			      })
+				  isSubmit.value=0
+		}
+		console.log(tableData.value)
+	}
+	
+}
+// 查询
+// const getTableData = async() => {
+//   const table = await getCompanyList({ page: page.value, pageSize: pageSize.value, ...searchInfo.value })
+//   if (table.code === 0) {
+//     tableData.value = table.data.list
+//     total.value = table.data.total
+//     page.value = table.data.page
+//     pageSize.value = table.data.pageSize
+//   }
+// }
+
+// getTableData()
 
 // ============== 表格控制部分结束 ===============
 
@@ -428,12 +476,12 @@ const type = ref('')
 
 // 更新行
 const updateCompanyFunc = async(row) => {
-    const res = await findCompany({ ID: row.ID })
-    type.value = 'update'
-    if (res.code === 0) {
-        formData.value = res.data.recompany
-        dialogFormVisible.value = true
-    }
+    // const res = await findCompany({ ID: row.ID })
+    // type.value = 'update'
+    // if (res.code === 0) {
+    //     formData.value = res.data.recompany
+    //     dialogFormVisible.value = true
+    // }
 }