|
@@ -18,7 +18,7 @@
|
|
|
<el-form-item label-width="0" prop="license">
|
|
|
<el-input type="text" @change="validLicense"
|
|
|
v-model="form.license"
|
|
|
- placeholder="请输入统一社会信用代码">
|
|
|
+ placeholder="请输入统一社会信用代码" :disabled="licenseDisabled">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</td>
|
|
@@ -363,6 +363,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ licenseDisabled: false,
|
|
|
date: "",
|
|
|
action: process.env.VUE_APP_BASE_API + "/common/attach/upload", // 上传的图片服务器地址
|
|
|
headers: {
|
|
@@ -573,6 +574,7 @@ export default {
|
|
|
this.form.id = this.$route.params.id || undefined;
|
|
|
this.type = this.$route.query.type || undefined
|
|
|
if(this.form.id) {
|
|
|
+ this.licenseDisabled = true
|
|
|
this.disabledVisible = true
|
|
|
this.params.dataId = this.$route.params.id
|
|
|
this.getData().then(res => {
|