Lou
2023-11-10 197f13dbcf007eac8dd9a307aae992df677ea8f6
subPackage/workbench/views/csjl.vue
@@ -42,15 +42,15 @@
      data() {
         return {
            tabsList: [{
                  type: 1,
                  type: 0,
                  name: '全部'
               },
               {
                  type: 2,
                  type: 1,
                  name: '待完善'
               },
               {
                  type: 3,
                  type: 2,
                  name: '已完善'
               }
            ],
@@ -118,17 +118,15 @@
            this.iptContext = ''
            this.searchConfirm()
         },
         pushPage({
            houseCode
         }) {
            if (!houseCode) {
         pushPage({ id }) {
            if (!id) {
               uni.showToast({
                  title: "关键参数为空",
                  icon: "error"
               })
               return
            }
            let url = "/subPackage/workbench/views/cscj?stdId=" + houseCode
            let url = "/subPackage/workbench/views/cscj?id=" + id
            this.$u.func.globalNavigator(url)
         }
      }