|
|
|
@ -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;
|
|
|
|
|