注册证号可编辑

fp_dev
anthonywj 2 years ago
parent b1626f6dd2
commit 26956d688a

@ -17,13 +17,13 @@ ENV = 'production'
# VUE_APP_BASE_API = 'http://121.204.169.96:9150/UDI_SPMS_SERVER/' # VUE_APP_BASE_API = 'http://121.204.169.96:9150/UDI_SPMS_SERVER/'
# 文明懂 # 文明懂
VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_SPMS_SERVER/' # VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_SPMS_SERVER/'
# 刘恩典 # 刘恩典
# VUE_APP_BASE_API = 'http://192.168.0.54:9150/UDI_SPMS_SERVER/' # VUE_APP_BASE_API = 'http://192.168.0.54:9150/UDI_SPMS_SERVER/'
# 漳州中医院 # 漳州中医院
# VUE_APP_BASE_API = 'http://116.204.116.198:9150/UDI_SPMS_SERVER/' VUE_APP_BASE_API = 'http://116.204.116.198:9150/UDI_SPMS_SERVER/'
# 应用访问路径 例如使用前缀 /admin/ # 应用访问路径 例如使用前缀 /admin/

@ -9,7 +9,6 @@
<el-input v-model="unionQuery.udiCode" <el-input v-model="unionQuery.udiCode"
placeholder="请扫描或输入UDI码" placeholder="请扫描或输入UDI码"
clearable="true" clearable="true"
@keyup.enter.native="keyup_submit($event)"></el-input> @keyup.enter.native="keyup_submit($event)"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>

@ -140,7 +140,10 @@
<el-form :model="form"> <el-form :model="form">
<el-form-item label="" prop="isGive"> <el-form-item label="" prop="isGive">
<el-radio-group v-model="currentCert"> <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 style="width: 100%; margin-top: 10px;" :label="item" :key="item" v-for="item in certList">{{
item
}}
</el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -282,7 +285,7 @@ export default {
return; return;
} }
let str = this.currentRow.zczbhhzbapzbh; let str = this.currentRow.zczbhhzbapzbh;
if (str.search(",") != -1) { if (this.$isNotBlank(str) && str.search(",") != -1) {
this.currentCert = null; this.currentCert = null;
this.certList = str.split(','); this.certList = str.split(',');
this.dialogFormVisible = true; this.dialogFormVisible = true;

@ -102,6 +102,12 @@
prop="certCode" prop="certCode"
show-overflow-tooltip show-overflow-tooltip
> >
<template slot-scope="scope">
<el-input v-model="scope.row.certCode"
:disabled="scope.row.index !== selectedIndex"
placeholder="注册/备案号"
></el-input>
</template>
</el-table-column> </el-table-column>
<el-table-column width="150" <el-table-column width="150"
label="生产企业" label="生产企业"

Loading…
Cancel
Save