Merge branch 'dev_20241202_xukangle' into develop
Showing
2 changed files
with
3 additions
and
1 deletions
| ... | @@ -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) => { | ... | ... |
-
Please register or sign in to post a comment