还原代码

dev
黄泽腾 2 years ago
parent c60e10aa41
commit dd5ce87aee

@ -177,22 +177,6 @@
></pagination> ></pagination>
</el-card> </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> </div>
</template> </template>
@ -280,23 +264,10 @@ export default {
selectUdiDialogVisible: false, selectUdiDialogVisible: false,
selectErpDialogVisible: false, selectErpDialogVisible: false,
selectLocalVisible: false, selectLocalVisible: false,
//
dialogFormVisible: false,
currentCert: null,
certList: [],
}; };
}, },
methods: { methods: {
selectCert() {
if (this.currentCert == null) {
this.$message.error("请先选择对应的注册证!");
} else {
this.multipleSelection.zczbhhzbapzbh = this.currentCert;
//this.combine();
this.closeSelDialog(this.multipleSelection);
}
},
onReset() { onReset() {
this.$router.push({ this.$router.push({
path: "", path: "",
@ -380,15 +351,8 @@ export default {
this.$message.warning("请先选入物资字典信息!"); this.$message.warning("请先选入物资字典信息!");
return; 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() { allExport() {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;

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

Loading…
Cancel
Save