zuozhengqing
2024-01-04 f45b159864ad79f326884ab3644269ef9eb7ee9d
src/components/makepager/CommonFormTableView.vue
@@ -643,19 +643,14 @@
    // 设置子位置
    async setLocationList(jointName) {
      await getLocationList({
        // keyword: "",
        jointName: jointName,
        page: 1,
        pageSize: 100
      }).then((res) => {
        if (res.code === 200) {
          const list = res.data ? res.data : []
          this.selSonLocationOptions = list
          // if (this.isReorder) {
          //   this.locacionName = list[0]?.name
          //   this.locacionId = list[0]?.id
          //   this.$emit("selLocationClick", list[0], "locacionName")
          // }
          // const list = res.data ? res.data : []
          this.selSonLocationOptions = res.data
          console.log(this.selSonLocationOptions,"看看变了没")
        }
      })
    },