|
@@ -382,11 +382,11 @@ export default {
|
|
|
"/marking/mark_setting_fast/" +
|
|
|
this.$route.params.workId +
|
|
|
"/" +
|
|
|
- this.$route.params.name +
|
|
|
+ encodeURIComponent(this.$route.params.name) +
|
|
|
"/" +
|
|
|
- row.code +
|
|
|
+ encodeURIComponent(row.code) +
|
|
|
"/" +
|
|
|
- row.name;
|
|
|
+ encodeURIComponent(row.name);
|
|
|
this.$router.push({
|
|
|
path: url,
|
|
|
});
|