From 897faa2d11f5a64d0c5e0f3d802e363430f8bdc0 Mon Sep 17 00:00:00 2001
From: gaoluyang <gaoluyang@rengu.cc>
Date: 星期五, 28 六月 2024 13:36:13 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/components/do/b1-ins-order/fiberoptic-config.vue | 44 ++++++++++++++++++++++----------------------
1 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/src/components/do/b1-ins-order/fiberoptic-config.vue b/src/components/do/b1-ins-order/fiberoptic-config.vue
index 1377575..1d2db8e 100644
--- a/src/components/do/b1-ins-order/fiberoptic-config.vue
+++ b/src/components/do/b1-ins-order/fiberoptic-config.vue
@@ -2,7 +2,7 @@
<div class="ins_order_config">
<div>
<el-row class="title">
- <el-col :span="6" style="padding-left: 20px;">鍏夌氦閰嶇疆</el-col>
+ <el-col :span="6" style="padding-left: 20px;text-align: left;">鍏夌氦閰嶇疆</el-col>
<el-col :span="18" style="text-align: right;">
<el-button size="medium" type="primary" @click="save" :loading="saveLoad" v-if="active==1">淇� 瀛�</el-button>
<el-button size="medium" @click="outConfig">
@@ -53,7 +53,7 @@
</el-table-column>
<el-table-column label="绠¤壊鏍�" show-overflow-tooltip>
<template slot-scope="scope">
- <el-select v-model="scope.row.color" size="mini" :disabled="active!=1">
+ <el-select v-model="scope.row.color" size="mini" :disabled="active!=1" allow-create filterable >
<el-option v-for="(color,i) in colors" :key="i" :label="color.lable"
:value="color.value"></el-option>
</el-select>
@@ -187,7 +187,7 @@
</el-table-column>
<el-table-column prop="color" label="鍏夌氦鑹叉爣" width="120">
<template slot-scope="scope">
- <el-select v-model="scope.row.color" size="mini" :disabled="active!=1">
+ <el-select v-model="scope.row.color" size="mini" :disabled="active!=1" allow-create filterable >
<el-option v-for="(color,i) in colors" :key="i" :label="color.lable"
:value="color.value"></el-option>
</el-select>
@@ -588,12 +588,12 @@
this.$message.error('鏈�夋嫨鍏夌氦甯�')
return
}
- this.selectFibers.forEach(a => {
+ this.selectFibers.forEach((a,index) => {
a.fiber = []
for (var i = 0; i < parseInt(a.num); i++) {
let fiber = {
bushColor: a.color,
- color: colors2[i].label,
+ color: colors2[(i+(parseInt(a.num)*index))>colors2.length?0:i+(parseInt(a.num)*index)*index].label,
model: model,
standard: standard,
productList: this.HaveJson(this.productList)
@@ -603,12 +603,12 @@
}
})
} else {
- this.selectBushing.forEach(a => {
+ this.selectBushing.forEach((a,index) => {
a.fiber = []
for (var i = 0; i < parseInt(a.testNum); i++) {
let fiber = {
bushColor: a.color,
- color: colors2[i].label,
+ color: colors2[(i+(parseInt(a.testNum))*index)>colors2.length?0:i+(parseInt(a.testNum))*index].label,
model: model,
standard: standard,
productList: this.HaveJson(this.productList)
@@ -765,12 +765,12 @@
this.bsm2 = false
}
}
- if (p.ask.includes('RTS')&&p.state === 1) {
- p.rts = ''
- this.bsm3Val = ''
- this.bsm3Dia = true
- this.bsmRow3.push(p)
- }
+ // if (p.ask.includes('RTS')&&p.state === 1) {
+ // p.rts = ''
+ // this.bsm3Val = ''
+ // this.bsm3Dia = true
+ // this.bsmRow3.push(p)
+ // }
})
if (e.length > 0) {
@@ -842,15 +842,15 @@
}else{
this.bsm1Dia = false
}
- if (row.ask.includes('RTS')&&row.state === 1) {
- this.bsmRow3 = null;
- row.rts = ''
- this.bsm3Val = ''
- this.bsm3Dia = true
- this.bsmRow3 = row
- }else{
- this.bsm3Dia = false
- }
+ // if (row.ask.includes('RTS')&&row.state === 1) {
+ // this.bsmRow3 = null;
+ // row.rts = ''
+ // this.bsm3Val = ''
+ // this.bsm3Dia = true
+ // this.bsmRow3 = row
+ // }else{
+ // this.bsm3Dia = false
+ // }
},
computationalPairing(n){
const nums = [];
--
Gitblit v1.9.3