Browse Source

no message

DESKTOP-0GD05B0\Administrator 2 years ago
parent
commit
b93b4c71d5

+ 0 - 25
src/components/zhu-yuan-yi-sheng/jian-cha-shen-qing/TianJiaJianChaJianYan.vue

@@ -139,13 +139,6 @@ const windowSize = computed(() => {
   return store.state.app.windowSize
 })
 
-const detailsOfNewInspectionItems = ref([])
-
-const jianChaFenLeiShuJu = ref({
-  currentPage: 1,
-  total: 0,
-  data: [],
-})
 const bianJiRef = ref(null)
 const baoCunMuBanRef = ref()
 const tcNameRef = $ref(null)
@@ -176,24 +169,6 @@ const tempClick = (data) => {
   }
 }
 
-const dianJiQueRenXuanZhong = () => {
-  if (xuanZhongJianCha.value.daiXuanZhong.length === 0) {
-    BizException(ExceptionEnum.MESSAGE_ERROR, "请先选中数据")
-  }
-  let tiShi = false;
-  xuanZhongJianCha.value.daiXuanZhong.forEach((item) => {
-    if (xuanZhongJianCha.value.weiBianMa.indexOf(item.orderCode) > -1) {
-      tiShi = true
-    } else {
-      xuanZhongJianCha.value.data.push(clone(item))
-      xuanZhongJianCha.value.weiBianMa.push(clone(item.orderCode))
-    }
-  })
-  if (tiShi) {
-    ElMessage.error('请勿重复添加。')
-  }
-}
-
 const dianJiBianJi = (row, index) => {
   bianJiRef.value.daKaiBenDuiHua(row, index, xuanZhongJianCha.value.data.length)
 }