소스 검색

修改跳转

lex-xin 4 년 전
부모
커밋
d6fa5e42f3

+ 2 - 2
src/views/app/entryOperation.vue

@@ -351,7 +351,7 @@ export default {
         this.$message.success(title + "成功");
         this.$store.dispatch('delVisitedViews', this.$route)
         this.$router.push({
-          path: "/insideSetting/entryActivities"
+          path: "/systemManager/sysBasics/entryActivities"
         });
       } else {
         this.$message.error(res.msg);
@@ -360,7 +360,7 @@ export default {
     onCancel () {
       this.$store.dispatch('delVisitedViews', this.$route)
       this.$router.push({
-        path: "/insideSetting/entryActivities"
+        path: "/systemManager/sysBasics/entryActivities"
       });
     },
     handleSuccess (res) {

+ 8 - 8
src/views/businessManager/orderManager/businessStatement.vue

@@ -215,14 +215,14 @@
               </div>
             </template>
           </el-table-column>
-          <el-table-column label="操作">
+          <el-table-column label="操作" fixed="right">
             <template slot-scope="scope">
-              <el-button
-                type="text"
-                v-permission="'/businessStatementDetail'"
-                @click="lookDetail(scope.row)"
-                >查看</el-button
-              >
+              <auth auths="/businessStatementDetail">
+                <el-button
+                  type="text"
+                  @click="lookDetail(scope.row)"
+                  >查看</el-button>
+              </auth>
             </template>
           </el-table-column>
         </el-table>
@@ -382,7 +382,7 @@ export default {
     },
     lookDetail(row) {
       this.$router.push({
-        path: "/orderList/businessStatementDetail",
+        path: "/financialManager/orderManager/businessStatementDetail",
         query: {
           organId: row.organId,
           organName: row.organName,

+ 1 - 1
src/views/businessManager/orderManager/businessStatementDetail.vue

@@ -346,7 +346,7 @@ export default {
       // searchForm: this.searchForm,
       // pageInfo: this.pageInfo
        this.$store.dispatch('delVisitedViews', this.$route)
-      this.$router.push({ path: '/orderList/businessStatement' })
+      this.$router.push({ path: '/financialManager/orderManager/businessStatement' })
     }
   }
 }