标准评估流程,选择标准之后,分解单来源带出英文
This commit is contained in:
@@ -554,7 +554,31 @@ export default {
|
||||
standNumber: ""
|
||||
},
|
||||
taskIds: this.$route.query.taskIds,
|
||||
decomposeOptions: [], //分解单数据
|
||||
decomposeOptions: [{
|
||||
value: "CA",
|
||||
label: "草稿",
|
||||
item: "CA"
|
||||
},
|
||||
{
|
||||
value: "ZQYJG",
|
||||
label: "征求意见稿",
|
||||
item: "ZQYJG"
|
||||
},
|
||||
{
|
||||
value: "BPG",
|
||||
label: "报批稿",
|
||||
item: "BPG"
|
||||
},
|
||||
{
|
||||
value: "SSG",
|
||||
label: "送审稿",
|
||||
item: "SSG"
|
||||
},
|
||||
{
|
||||
value: "FBGBJBD",
|
||||
label: "发布稿(必读)",
|
||||
item: "FBGBJBD"
|
||||
}], //分解单数据
|
||||
standardTypeOptions: [
|
||||
{
|
||||
value: "INLAND",
|
||||
@@ -728,11 +752,11 @@ export default {
|
||||
this.roleForm.ministerUserName = item.form.ministerUserName
|
||||
this.submitFlag = '修改节点'
|
||||
this.dataList.distributePerson = this.listForm.dataList[0].distributePerson
|
||||
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
standId: item.standId
|
||||
}, {}, res => {
|
||||
this.decomposeOptions = res.data;
|
||||
});
|
||||
// this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
// standId: item.standId
|
||||
// }, {}, res => {
|
||||
// this.decomposeOptions = res.data;
|
||||
// });
|
||||
}else{
|
||||
this.hisListForm = JSON.parse(JSON.stringify(item))
|
||||
this.listForm = JSON.parse(JSON.stringify(item))
|
||||
@@ -751,11 +775,11 @@ export default {
|
||||
this.qualityEngineer = item.qualityEngineer
|
||||
this.submitFlag = '修改节点'
|
||||
this.dataList.distributePerson = this.listForm.dataList[0].distributePerson
|
||||
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
standId: item.standId
|
||||
}, {}, res => {
|
||||
this.decomposeOptions = res.data;
|
||||
});
|
||||
// this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
// standId: item.standId
|
||||
// }, {}, res => {
|
||||
// this.decomposeOptions = res.data;
|
||||
// });
|
||||
}
|
||||
})
|
||||
},
|
||||
@@ -1114,11 +1138,11 @@ export default {
|
||||
this.listForm.XCXSSRQ = this.selectedList[0].xcxssrqgj;
|
||||
this.listForm.ZCCSSRQ = this.selectedList[0].zccssrqgj;
|
||||
this.listForm.id = this.selectedList[0].id;
|
||||
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
standId: this.selectedList[0].id
|
||||
}, {}, res => {
|
||||
this.decomposeOptions = res.data;
|
||||
});
|
||||
// this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
// standId: this.selectedList[0].id
|
||||
// }, {}, res => {
|
||||
// this.decomposeOptions = res.data;
|
||||
// });
|
||||
this.ListModel = false;
|
||||
} else if (this.selectedList.length > 1) {
|
||||
this.$message.warning("您只能选择一条数据进行带入");
|
||||
@@ -1258,21 +1282,21 @@ export default {
|
||||
this.dataList = mes.form.dataList;
|
||||
this.roleForm = mes.roleForm
|
||||
this.commentText = mes.commentText
|
||||
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
standId: mes.form.standId
|
||||
}, {}, res => {
|
||||
this.decomposeOptions = res.data;
|
||||
});
|
||||
// this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
// standId: mes.form.standId
|
||||
// }, {}, res => {
|
||||
// this.decomposeOptions = res.data;
|
||||
// });
|
||||
}else{
|
||||
this.listForm = mes.json.form;
|
||||
this.dataList = mes.json.form.dataList
|
||||
this.roleForm = mes.json.roleForm;
|
||||
this.commentText = mes.json.commentText;
|
||||
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
standId: mes.json.form.standId
|
||||
}, {}, res => {
|
||||
this.decomposeOptions = res.data;
|
||||
});
|
||||
// this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
// standId: mes.json.form.standId
|
||||
// }, {}, res => {
|
||||
// this.decomposeOptions = res.data;
|
||||
// });
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
<div class="table-jump" @click="changeState(scope.row)">
|
||||
<div v-if="scope.row.unCount === 0">符合</div>
|
||||
<div v-if="scope.row.unCount === 1">不符合</div>
|
||||
<div v-if="scope.row.unCount === '-1'">不涉及</div>
|
||||
<div v-if="scope.row.unCount === -1">不涉及</div>
|
||||
<div v-else ></div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user