选入物资字典选择单个注册证件备案号

dev
薛宇 2 years ago
parent 94b713dd5a
commit 087eaf70a6

@ -177,6 +177,22 @@
></pagination>
</el-card>
<el-dialog title="请选择对应的注册/备案证" :visible.sync="dialogFormVisible" append-to-body width="40%">
<el-form :model="form">
<el-form-item label="" prop="isGive">
<el-radio-group v-model="currentCert">
<el-radio style="width: 100%; margin-top: 10px;" :label="item" :key="item" v-for="item in certList">{{
item
}}
</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="selectCert"> </el-button>
<el-button @click="dialogFormVisible = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
@ -264,10 +280,23 @@ export default {
selectUdiDialogVisible: false,
selectErpDialogVisible: false,
selectLocalVisible: false,
//
dialogFormVisible: false,
currentCert: null,
certList: [],
};
},
methods: {
selectCert() {
if (this.currentCert == null) {
this.$message.error("请先选择对应的注册证!");
} else {
this.multipleSelection.zczbhhzbapzbh = this.currentCert;
//this.combine();
this.closeSelDialog(this.multipleSelection);
}
},
onReset() {
this.$router.push({
path: "",
@ -351,8 +380,15 @@ export default {
this.$message.warning("请先选入物资字典信息!");
return;
}
this.closeSelDialog(selectData.id);
//this.closeSelDialog(selectData.id);
let str = this.multipleSelection.zczbhhzbapzbh;
if (this.$isNotBlank(str) && str.search(",") != -1) {
this.currentCert = null;
this.certList = str.split(',');
this.dialogFormVisible = true;
} else {
this.closeSelDialog(selectData);
}
},
allExport() {
this.filterQuery.customerId = store.getters.customerId;

@ -164,6 +164,7 @@
placeholder="请输入内容"
v-model="inputQuery.recordCode"
@input="change()"
disabled
></el-input>
</el-form-item>
</el-col>
@ -688,9 +689,10 @@ export default {
closeSelDialog(val) {
if (val != null) {
let query = {
productId: this.inputQuery.productId,
relIdFk: val,
relIdFk: val.id,
manufacturerId: this.inputQuery.manufacturerId,
customerId: this.inputQuery.customerId,
companyName: this.inputQuery.companyName,
@ -703,10 +705,13 @@ export default {
this.inputQuery = response.data;
this.inputQuery.manufacturerId=this.inputQuery.manufacturerIdFk
this.selectSingleProductVisible = false;
this.inputQuery.recordCode = val.zczbhhzbapzbh
} else {
this.$message.error(response.message);
}
});
console.log("1111"+this.inputQuery.recordCode)
}
},

Loading…
Cancel
Save