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>
<view v-for="(item, index) in configSet" :key="index"> <view v-for="(item, index) in configSet" :key="index">
<view class="big-title">{{ item.title }}</view> <view class="big-title">{{ item.status_name }}</view>
<view v-for="(value, idx) in item.check_conf_msg" :key="idx" class="cyxj-content"> <view v-for="(value, idx) in item.product_tcq_conf" :key="idx" class="cyxj-content">
<view class="cyxj-content-card" v-if="item.check_conf_msg[idx].status == 1"> <view class="cyxj-content-card">
<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="tx-ul"> <view class="tx-ul">
<view class="tx-title">{{ value.title }}</view> <view class="tx-title">{{ value.spec }}</view>
<view class="tx-in-nav"> <view class="tx-in-nav">
<view>{{value.bottom}}</view> <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" <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) { if (this.CyInfo.check != 0 && this.type != 1) {
this.getInfo(); this.getInfo();
}else{
this.getConfig();
} }
bad({}).then(res => { bad({}).then(res => {
for (let b in res) { for (let b in res) {
this.methList.push(res[b]); this.methList.push(res[b]);
} }
}); });
this.getConfig();
}, },
methods: { methods: {
getArr() { getArr() {
@ -198,17 +178,18 @@
return this.jurisdiction.includes(title); return this.jurisdiction.includes(title);
}, },
inputListener(e, index, idx) { 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) { if (!item.input) {
this.configSet[index].check_conf_msg[idx].inputState = false; this.configSet[index].product_tcq_conf[idx].inputState = false;
} else { } else {
if (item.input < item.top || item.input > item.bottom) { if (item.input < item.bottom || item.input > item.top) {
this.configSet[index].check_conf_msg[idx].inputState = false; this.configSet[index].product_tcq_conf[idx].inputState = false;
} }
else { else {
this.configSet[index].check_conf_msg[idx].inputState = true; this.configSet[index].product_tcq_conf[idx].inputState = true;
} }
} }
}, },
getConfig() { getConfig() {
productTcqConf({ productTcqConf({
@ -216,34 +197,25 @@
product_id: this.CyInfo.product_id product_id: this.CyInfo.product_id
}).then(res => { }).then(res => {
this.configSet = res.map(item => { 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 this.matchingConfig(value);
}); });
return item; return item;
}); });
}); });
console.log("选项",this.configSet)
}, },
matchingConfig(value) { matchingConfig(value) {
value.choice = 'OK';
value.content = '';
value.situation = '';
value.input = ''; value.input = '';
value.inputState = true; value.inputState = true;
let CheckCyMsg = this.info.CheckCyMsg ? this.info.CheckCyMsg : []; let CheckCyMsg = this.info.CheckCyMsg ? this.info.CheckCyMsg : [];
for (let b in 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); let json = JSON.parse(CheckCyMsg[b].json);
value.choice = json.choice;
value.content = json.content;
value.situation = json.situation;
value.input = json.input; value.input = json.input;
break; break;
} }
} }
return value; return value;
}, },
@ -258,7 +230,7 @@
this.froms.model = res.model; this.froms.model = res.model;
this.froms.frequency = res.frequency; this.froms.frequency = res.frequency;
this.froms.remake = res.remake; this.froms.remake = res.remake;
this.getConfig();
}); });
}, },
bindline: function(e) { bindline: function(e) {
@ -267,33 +239,24 @@
}, },
pickerChange(e, index, idx) { 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() { submits() {
if (!this.buttonState) { if (!this.buttonState) {
return false; return false;
} }
for (let b in this.configSet) { for (let b in this.configSet) {
for (let i in this.configSet[b].check_conf_msg) { for (let i in this.configSet[b].product_tcq_conf) {
let items = this.configSet[b].check_conf_msg[i]; let items = this.configSet[b].product_tcq_conf[i];
if (this.configSet[b].check_conf_msg[i].status == 1) { if (!items.input) {
if (items.choice == 'NG' && (!items.content || !items.situation)) { this.$functions.error('请完整填写信息');
this.$functions.error('请完整填写信息'); return false;
return false;
}
} else {
if (!items.input) {
this.$functions.error('请完整填写信息');
return false;
}
} }
this.froms.item.push({ this.froms.item.push({
check_conf_id: items.id, check_tcq_id: items.id,
status:this.configSet[b].status,
json: { json: {
choice: items.choice,
content: items.content,
situation: items.situation,
input: items.input input: items.input
} }
}); });

Loading…
Cancel
Save