|  | @@ -1203,8 +1203,8 @@
 | 
											
												
													
														|  |          >
 |  |          >
 | 
											
												
													
														|  |            <transition-group>
 |  |            <transition-group>
 | 
											
												
													
														|  |              <div
 |  |              <div
 | 
											
												
													
														|  | -              v-for="item in setRowList"
 |  | 
 | 
											
												
													
														|  | -              :key="item.surface"
 |  | 
 | 
											
												
													
														|  | 
 |  | +              v-for="(item, index) in setRowList"
 | 
											
												
													
														|  | 
 |  | +              :key="index"
 | 
											
												
													
														|  |                class="listStyle"
 |  |                class="listStyle"
 | 
											
												
													
														|  |              >
 |  |              >
 | 
											
												
													
														|  |                <div style="width: 500px" class="indraggable">
 |  |                <div style="width: 500px" class="indraggable">
 | 
											
										
											
												
													
														|  | @@ -6858,7 +6858,7 @@ export default {
 | 
											
												
													
														|  |        showDataElabel: null,
 |  |        showDataElabel: null,
 | 
											
												
													
														|  |      }
 |  |      }
 | 
											
												
													
														|  |    },
 |  |    },
 | 
											
												
													
														|  | -  created() {
 |  | 
 | 
											
												
													
														|  | 
 |  | +  async created() {
 | 
											
												
													
														|  |      this.setRowList = this.tableDate
 |  |      this.setRowList = this.tableDate
 | 
											
												
													
														|  |      this.getRowList = this.tableDate.filter((e) => e.checked == 0)
 |  |      this.getRowList = this.tableDate.filter((e) => e.checked == 0)
 | 
											
												
													
														|  |      this.getDicts('st_in_type').then((response) => {
 |  |      this.getDicts('st_in_type').then((response) => {
 | 
											
										
											
												
													
														|  | @@ -6901,15 +6901,6 @@ export default {
 | 
											
												
													
														|  |      })
 |  |      })
 | 
											
												
													
														|  |      this.getConfigKey('show.data_elabel').then((response) => {
 |  |      this.getConfigKey('show.data_elabel').then((response) => {
 | 
											
												
													
														|  |        this.showDataElabel = response.msg
 |  |        this.showDataElabel = response.msg
 | 
											
												
													
														|  | -      if (this.showDataElabel === '0') {
 |  | 
 | 
											
												
													
														|  | -        this.getRowList.forEach(item => {
 |  | 
 | 
											
												
													
														|  | -          this.$set(item, 'show', true)
 |  | 
 | 
											
												
													
														|  | -        })
 |  | 
 | 
											
												
													
														|  | -      } else {
 |  | 
 | 
											
												
													
														|  | -        this.getRowList.forEach(item => {
 |  | 
 | 
											
												
													
														|  | -          this.$set(item, 'show', item.label == 'fElabel' ? false : true)
 |  | 
 | 
											
												
													
														|  | -        })
 |  | 
 | 
											
												
													
														|  | -      }
 |  | 
 | 
											
												
													
														|  |      })
 |  |      })
 | 
											
												
													
														|  |      this.getConfigKey('bigData.token').then((response) => {
 |  |      this.getConfigKey('bigData.token').then((response) => {
 | 
											
												
													
														|  |        this.bigDataToken = response.msg
 |  |        this.bigDataToken = response.msg
 | 
											
										
											
												
													
														|  | @@ -7010,7 +7001,18 @@ export default {
 | 
											
												
													
														|  |      })
 |  |      })
 | 
											
												
													
														|  |      this.company = Cookies.get('companyName')
 |  |      this.company = Cookies.get('companyName')
 | 
											
												
													
														|  |      this.queryUser()
 |  |      this.queryUser()
 | 
											
												
													
														|  | -    this.getRow()
 |  | 
 | 
											
												
													
														|  | 
 |  | +    await this.getRow()
 | 
											
												
													
														|  | 
 |  | +    this.$nextTick(() => {
 | 
											
												
													
														|  | 
 |  | +      if (this.showDataElabel === '0') {
 | 
											
												
													
														|  | 
 |  | +        this.getRowList.forEach(item => {
 | 
											
												
													
														|  | 
 |  | +          this.$set(item, 'show', true)
 | 
											
												
													
														|  | 
 |  | +        })
 | 
											
												
													
														|  | 
 |  | +      } else {
 | 
											
												
													
														|  | 
 |  | +        this.getRowList.forEach(item => {
 | 
											
												
													
														|  | 
 |  | +          this.$set(item, 'show', item.label == 'fElabel' ? false : true)
 | 
											
												
													
														|  | 
 |  | +        })
 | 
											
												
													
														|  | 
 |  | +      }
 | 
											
												
													
														|  | 
 |  | +    })
 | 
											
												
													
														|  |    },
 |  |    },
 | 
											
												
													
														|  |    mounted() {
 |  |    mounted() {
 | 
											
												
													
														|  |      this.$refs.printTable.style.setProperty('--url', 'url(' + this.signature + ') bottom right no-repeat')
 |  |      this.$refs.printTable.style.setProperty('--url', 'url(' + this.signature + ') bottom right no-repeat')
 | 
											
										
											
												
													
														|  | @@ -7240,13 +7242,13 @@ export default {
 | 
											
												
													
														|  |        return this.$message.error('正在开发中')
 |  |        return this.$message.error('正在开发中')
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      //查询列数据
 |  |      //查询列数据
 | 
											
												
													
														|  | -    getRow() {
 |  | 
 | 
											
												
													
														|  | 
 |  | +    async getRow() {
 | 
											
												
													
														|  |        let that = this
 |  |        let that = this
 | 
											
												
													
														|  |        this.data = {
 |  |        this.data = {
 | 
											
												
													
														|  |          tableName: '入库明细',
 |  |          tableName: '入库明细',
 | 
											
												
													
														|  |          userId: Cookies.get('userName')
 |  |          userId: Cookies.get('userName')
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  | -      select(this.data).then((res) => {
 |  | 
 | 
											
												
													
														|  | 
 |  | +      await select(this.data).then((res) => {
 | 
											
												
													
														|  |          if (res.data.length != 0) {
 |  |          if (res.data.length != 0) {
 | 
											
												
													
														|  |            this.getRowList = res.data.filter((e) => e.checked == 0)
 |  |            this.getRowList = res.data.filter((e) => e.checked == 0)
 | 
											
												
													
														|  |            this.setRowList = res.data
 |  |            this.setRowList = res.data
 |