8564e161 by xukangle

fix : 修复标签管理编辑未传classifyGuid

1 parent d329ecf5
...@@ -1301,7 +1301,7 @@ onActivated(async () => { ...@@ -1301,7 +1301,7 @@ onActivated(async () => {
1301 <div class="btns-area"> 1301 <div class="btns-area">
1302 <div class="left-btns"> 1302 <div class="left-btns">
1303 <el-button type="primary" @click="addStandardSet">查看已生产报告</el-button> 1303 <el-button type="primary" @click="addStandardSet">查看已生产报告</el-button>
1304 <el-button @click="btnClick()">导出</el-button> 1304 <el-button @click="btnClick">导出</el-button>
1305 <el-button @click="batchControlRules">批量配置业务规则</el-button> 1305 <el-button @click="batchControlRules">批量配置业务规则</el-button>
1306 </div> 1306 </div>
1307 </div> 1307 </div>
......
...@@ -256,6 +256,7 @@ const tableInfo = ref({ ...@@ -256,6 +256,7 @@ const tableInfo = ref({
256 console.log('编辑', scope); 256 console.log('编辑', scope);
257 newCreateGradeStandardDialogInfo.value.submitBtnLoading = false; 257 newCreateGradeStandardDialogInfo.value.submitBtnLoading = false;
258 newCreateGradeStandardDialogInfo.value.title = '编辑标签'; 258 newCreateGradeStandardDialogInfo.value.title = '编辑标签';
259 classifyGuid.value = scope.row.classifyGuid;
259 await getGradeListData(scope.row.gradeGuid); 260 await getGradeListData(scope.row.gradeGuid);
260 // 遍历classGradeTreeData 找到对应的guid item的refGradeGuid 261 // 遍历classGradeTreeData 找到对应的guid item的refGradeGuid
261 classGradeTreeData.value.forEach((element: any) => { 262 classGradeTreeData.value.forEach((element: any) => {
...@@ -401,6 +402,7 @@ const tableBtnClick = async (scope, value) => { ...@@ -401,6 +402,7 @@ const tableBtnClick = async (scope, value) => {
401 // newCreateGradeStandardDialogInfo.value.visible = true; 402 // newCreateGradeStandardDialogInfo.value.visible = true;
402 newCreateGradeStandardDialogInfo.value.submitBtnLoading = false; 403 newCreateGradeStandardDialogInfo.value.submitBtnLoading = false;
403 newCreateGradeStandardDialogInfo.value.title = '编辑标签'; 404 newCreateGradeStandardDialogInfo.value.title = '编辑标签';
405 classifyGuid.value = scope.row.classifyGuid;
404 await getGradeListData(scope.row.gradeGuid); 406 await getGradeListData(scope.row.gradeGuid);
405 // 遍历classGradeTreeData 找到对应的guid item的refGradeGuid 407 // 遍历classGradeTreeData 找到对应的guid item的refGradeGuid
406 classGradeTreeData.value.forEach((element: any) => { 408 classGradeTreeData.value.forEach((element: any) => {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!