|
@@ -149,6 +149,7 @@
|
|
v-model="infoData.isFas"
|
|
v-model="infoData.isFas"
|
|
placeholder="请选择是否集采"
|
|
placeholder="请选择是否集采"
|
|
clearable
|
|
clearable
|
|
|
|
+ @change="clearType"
|
|
>
|
|
>
|
|
<el-option
|
|
<el-option
|
|
v-for="item in iFjcData"
|
|
v-for="item in iFjcData"
|
|
@@ -160,7 +161,7 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</div>
|
|
</div>
|
|
<div class="flex-css">
|
|
<div class="flex-css">
|
|
- <el-form-item label="带量批次" prop="fasBtch">
|
|
|
|
|
|
+ <el-form-item label="带量批次" prop="fasBtch" v-if="infoData.isFas == '0'" :rules="rules.required">
|
|
<el-input
|
|
<el-input
|
|
v-model="infoData.fasBtch"
|
|
v-model="infoData.fasBtch"
|
|
placeholder="请输入带量批次"
|
|
placeholder="请输入带量批次"
|
|
@@ -461,7 +462,10 @@ export default {
|
|
}
|
|
}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+ // 集采类型
|
|
|
|
+ clearType() {
|
|
|
|
+ this.infoData.fasBtch = "";
|
|
|
|
+ },
|
|
// getData() {
|
|
// getData() {
|
|
// selectMcsListById({ id: this.$route.query.id })
|
|
// selectMcsListById({ id: this.$route.query.id })
|
|
// .then((response) => {
|
|
// .then((response) => {
|