ZengTao
2025-02-21 8190ef14609e5b1298a1065ff8b07ae09664fa87
UI-Project/src/views/GlassStorage/rawfilmstorage.vue
@@ -76,7 +76,8 @@
  }
};
const handleEdit = (row) => {
  window.localStorage.setItem('slotId', row.slot)
  window.localStorage.setItem('deviceId', row.deviceId)
  window.localStorage.setItem('slot', row.slot)
  Edit.value = true;
};
const handleBinda = (row) => {
@@ -256,10 +257,12 @@
};
// 修改数量
const Editclick = async () => {
  let slotId = window.localStorage.getItem('slotId')
  let slot = window.localStorage.getItem('slot')
  let deviceId = window.localStorage.getItem('deviceId')
  try {
    const response = await request.post('/glassStorage/rawGlassStorageDetails/updateQuantity', {
      slotId: slotId,
      deviceId: deviceId,
      slot: slot,
      remainQuantity: remainQuantity.value,
      filmsId: filmsId.value,
      patternThickness: patternThickness.value,
@@ -407,9 +410,9 @@
        </el-table>
      </div>
    </el-card>
    <div class="awatch">
      <img src="../../assets/ypcc.png" alt=""
           style="width: 100%;height: 120%;margin-left: -10px;position: relative;margin-top: -20px;">
    <div class="img-dlpl">
    <div class="img-car1" :style="'z-index:999;top:20px;left:' + 330 + 'px;position:absolute;'">
    </div>
    </div>
    <el-dialog v-model="dialogFormVisiblea" top="5vh" width="85%" >
    <el-table  ref="table" style="margin-top: 20px;height: 700px;"
@@ -633,4 +636,30 @@
  text-align: center;
  margin-top: -15px;
}
.img-dlpl{
  margin-left: 330px;
  margin-top: 10px;
  background-image:url('../../assets/ypcc.png');
  background-repeat: no-repeat;
  background-attachment: local;
  min-height: 700px;
  width: 800px;
  max-width: 100%;
  background-size: 800px 700px;
  overflow: hidden;
  position:relative
}
.img-car1{
  display: flex;
  background-image:url('../../assets/C1.png');
  position: absolute;
  background-repeat: no-repeat;
  background-attachment: local;
  min-height: 200px;
  width: 200px;
  max-width: 100%;
  background-size: 200px 70px;
  overflow: hidden;
  position:relative
}
</style>