Browse Source

tijiaoi

master
865118801@qq.com 4 years ago
parent
commit
69e4f231f3
  1. 87
      pages/tcqInfo/tcqInfo.vue

87
pages/tcqInfo/tcqInfo.vue

@ -61,33 +61,11 @@
</view>
<view v-for="(item, index) in configSet" :key="index">
<view class="big-title">{{ item.title }}</view>
<view v-for="(value, idx) in item.check_conf_msg" :key="idx" class="cyxj-content">
<view class="cyxj-content-card" v-if="item.check_conf_msg[idx].status == 1">
<view class="xx-card">
<view class="xx-title">{{ value.title }}</view>
<view class="xx-ul">
<view class="xx-list" v-for="(va, i) in ifcomplete" :key="i" @tap="value.choice = va">
<image :src="va == value.choice ? '../../static/xz.png' : '../../static/wxz.png'"
mode=""></image>
<text>{{ va }}</text>
</view>
</view>
<view class="czyj-text" v-show="value.choice == 'NG'"><textarea v-model="value.content"
placeholder="不良情况分析" /></view>
<view class="xx-title" v-show="value.choice == 'NG'">不良处置情况</view>
<picker :value="value.choiceIndex" v-show="value.choice == 'NG'"
@change="pickerChange($event, index, idx)" :range="methList">
<view class="slect-list">
<text>{{ value.situation || '请选择' }}</text>
<image src="../../static/xiala.png"></image>
</view>
</picker>
</view>
</view>
<view class="cyxj-content-card" v-else>
<view class="big-title">{{ item.status_name }}</view>
<view v-for="(value, idx) in item.product_tcq_conf" :key="idx" class="cyxj-content">
<view class="cyxj-content-card">
<view class="tx-ul">
<view class="tx-title">{{ value.title }}</view>
<view class="tx-title">{{ value.spec }}</view>
<view class="tx-in-nav">
<view>{{value.bottom}}</view>
<input :class="value.inputState==false?'re-bor':''" :disabled="type==2?true:false" type="number" @input="inputListener($event,index, idx)" v-model="value.input"
@ -172,13 +150,15 @@
if (this.CyInfo.check != 0 && this.type != 1) {
this.getInfo();
}else{
this.getConfig();
}
bad({}).then(res => {
for (let b in res) {
this.methList.push(res[b]);
}
});
this.getConfig();
},
methods: {
getArr() {
@ -198,17 +178,18 @@
return this.jurisdiction.includes(title);
},
inputListener(e, index, idx) {
let item = this.configSet[index].check_conf_msg[idx];
let item = this.configSet[index].product_tcq_conf[idx];
if (!item.input) {
this.configSet[index].check_conf_msg[idx].inputState = false;
this.configSet[index].product_tcq_conf[idx].inputState = false;
} else {
if (item.input < item.top || item.input > item.bottom) {
this.configSet[index].check_conf_msg[idx].inputState = false;
if (item.input < item.bottom || item.input > item.top) {
this.configSet[index].product_tcq_conf[idx].inputState = false;
}
else {
this.configSet[index].check_conf_msg[idx].inputState = true;
this.configSet[index].product_tcq_conf[idx].inputState = true;
}
}
},
getConfig() {
productTcqConf({
@ -216,34 +197,25 @@
product_id: this.CyInfo.product_id
}).then(res => {
this.configSet = res.map(item => {
item.check_conf_msg = item.check_conf_msg.map(value => {
item.product_tcq_conf = item.product_tcq_conf.map(value => {
return this.matchingConfig(value);
});
return item;
});
});
console.log("选项",this.configSet)
},
matchingConfig(value) {
value.choice = 'OK';
value.content = '';
value.situation = '';
value.input = '';
value.inputState = true;
let CheckCyMsg = this.info.CheckCyMsg ? this.info.CheckCyMsg : [];
for (let b in CheckCyMsg) {
if (CheckCyMsg[b].check_conf_id == value.id) {
if (CheckCyMsg[b].check_tcq_id == value.id) {
let json = JSON.parse(CheckCyMsg[b].json);
value.choice = json.choice;
value.content = json.content;
value.situation = json.situation;
value.input = json.input;
break;
}
}
return value;
},
@ -258,7 +230,7 @@
this.froms.model = res.model;
this.froms.frequency = res.frequency;
this.froms.remake = res.remake;
this.getConfig();
});
},
bindline: function(e) {
@ -267,33 +239,24 @@
},
pickerChange(e, index, idx) {
this.configSet[index].check_conf_msg[idx].situation = this.methList[e.detail.value];
this.configSet[index].product_tcq_conf[idx].situation = this.methList[e.detail.value];
},
submits() {
if (!this.buttonState) {
return false;
}
for (let b in this.configSet) {
for (let i in this.configSet[b].check_conf_msg) {
let items = this.configSet[b].check_conf_msg[i];
if (this.configSet[b].check_conf_msg[i].status == 1) {
if (items.choice == 'NG' && (!items.content || !items.situation)) {
this.$functions.error('请完整填写信息');
return false;
}
} else {
if (!items.input) {
this.$functions.error('请完整填写信息');
return false;
}
for (let i in this.configSet[b].product_tcq_conf) {
let items = this.configSet[b].product_tcq_conf[i];
if (!items.input) {
this.$functions.error('请完整填写信息');
return false;
}
this.froms.item.push({
check_conf_id: items.id,
check_tcq_id: items.id,
status:this.configSet[b].status,
json: {
choice: items.choice,
content: items.content,
situation: items.situation,
input: items.input
}
});

Loading…
Cancel
Save