还原代码

dev
黄泽腾 2 years ago
parent c60e10aa41
commit dd5ce87aee

@ -177,22 +177,6 @@
></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>
@ -280,23 +264,10 @@ 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: "",
@ -380,15 +351,8 @@ export default {
this.$message.warning("请先选入物资字典信息!");
return;
}
//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);
}
this.closeSelDialog(selectData.id);
},
allExport() {
this.filterQuery.customerId = store.getters.customerId;

@ -164,7 +164,6 @@
placeholder="请输入内容"
v-model="inputQuery.recordCode"
@input="change()"
disabled
></el-input>
</el-form-item>
</el-col>
@ -552,7 +551,12 @@ export default {
}
}
if(val==3){
this.$confirm( "已审核通过,是否需要重新提交变更", {
confirmButtonText: "确定",
type: "warning",
showCancelButton: false,
})
.then(() => {
this.$refs['inputQuery'].validate(valid => {
if (valid) {
// this.inputQuery.auditStatus = val;
@ -576,6 +580,7 @@ export default {
return false;
}
});
});
}else{
this.$refs['inputQuery'].validate(valid => {
if (valid) {
@ -658,19 +663,19 @@ export default {
'png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff'].indexOf(ext.toLowerCase()) !== -1;
},
showImgViewer(row) {
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.imgList = [];
previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => {
if (response.code === 20000) {
this.imgList=response.data;
}
});
this.imgViewerVisible = true;
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove", m, false); //
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.imgList = [];
previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => {
if (response.code === 20000) {
this.imgList=response.data;
}
});
this.imgViewerVisible = true;
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove", m, false); //
},
closeImgViewer() {
this.imgViewerVisible = false;
@ -683,10 +688,9 @@ export default {
closeSelDialog(val) {
if (val != null) {
let query = {
productId: this.inputQuery.productId,
relIdFk: val.id,
relIdFk: val,
manufacturerId: this.inputQuery.manufacturerId,
customerId: this.inputQuery.customerId,
companyName: this.inputQuery.companyName,
@ -699,13 +703,10 @@ 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