|
|
@@ -2,12 +2,12 @@
|
|
|
<div>
|
|
|
<el-breadcrumb class="heading">
|
|
|
<el-breadcrumb-item :to="{ path: '/' }">平台首页</el-breadcrumb-item>
|
|
|
- <el-breadcrumb-item>物资类-增项审核</el-breadcrumb-item>
|
|
|
+ <el-breadcrumb-item>增项审核-物资类</el-breadcrumb-item>
|
|
|
</el-breadcrumb>
|
|
|
<el-card class="box-card">
|
|
|
<div slot="header">
|
|
|
<span>
|
|
|
- <i class="icon icon-table2"></i>
|
|
|
+ <i class="icon icon-table2"></i> {{supplierData.SupplierName}}
|
|
|
</span>
|
|
|
<span style="float: right;">
|
|
|
<el-popover>
|
|
|
@@ -41,7 +41,7 @@
|
|
|
v-model="activeName"
|
|
|
style="margin-top: -10px">
|
|
|
<el-tab-pane label="企业信息">
|
|
|
- <el-form label-width="135px" ref="supplierData" :model="supplierData" :readonly="true">
|
|
|
+ <el-form class="formDataInfo" label-width="135px" ref="supplierData" :model="supplierData" :readonly="true">
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="16">
|
|
|
@@ -49,11 +49,11 @@
|
|
|
<!-- <el-autocomplete class="inline-input" v-model="formData.SupplierName" :readonly="companyReadonly" :fetch-suggestions="querySearch"
|
|
|
:maxlength="255" placeholder="请输入内容" style="width: 100%" @select="handleSelect" v-if="authUser && authUser.Profile.IsCompanyUser == 1">
|
|
|
</el-autocomplete> -->
|
|
|
- <el-input :class="changedForm['SupplierName'] ? 'modified-form-input' : ''"
|
|
|
+ <el-input :class="changedForm['SupplierName'] ? 'modified-form-input' : ''" :readonly="formData.Status > 0"
|
|
|
v-model="supplierData.SupplierName" :maxlength="255" placeholder="请输入" style="width: 100%"
|
|
|
v-if="authUser && authUser.Profile.IsCompanyUser == 1">
|
|
|
</el-input>
|
|
|
- <el-input v-model="supplierData.SupplierName" :maxlength="255"
|
|
|
+ <el-input v-model="supplierData.SupplierName" :maxlength="255" :readonly="formData.Status > 0"
|
|
|
placeholder="请输入" style="width: 100%" v-if="!authUser || authUser.Profile.IsCompanyUser == 0">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -82,7 +82,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="单位关系">
|
|
|
- <el-select ref="SpecType" v-model="supplierData.SpecTypeCode"
|
|
|
+ <el-select ref="SpecType" v-model="supplierData.SpecTypeCode" :disabled="formData.Status > 0"
|
|
|
:class="changedForm['SpecTypeCode'] ? 'modified-form-input' : ''" placeholder="请选择"
|
|
|
style="width: 100%">
|
|
|
<el-option v-for="item in UnitRelationOptions" :key="item.Id" :label="item.Key" :value="item.Value">
|
|
|
@@ -92,7 +92,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="国家" prop="Country">
|
|
|
- <el-select v-model="supplierData.Country" filterable placeholder="请选择" style="width: 100%"
|
|
|
+ <el-select v-model="supplierData.Country" filterable placeholder="请选择" style="width: 100%" :disabled="formData.Status > 0"
|
|
|
:class="changedForm['Country'] ? 'modified-form-input' : ''">
|
|
|
<el-option v-for="item in countryListOptions" :key="item.key" :label="item.value"
|
|
|
:value="item.value">
|
|
|
@@ -155,7 +155,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="三证合一">
|
|
|
- <el-select v-model="supplierData.CredentialFlag" placeholder="请选择" @change="showorhid" style="width: 100%"
|
|
|
+ <el-select v-model="supplierData.CredentialFlag" placeholder="请选择" @change="showorhid" style="width: 100%" :disabled="formData.Status > 0"
|
|
|
:class="changedForm['CredentialFlag'] ? 'modified-form-input' : ''">
|
|
|
<el-option v-for="item in selectoptions" :key="item.value" :label="item.label" :value="item.value">
|
|
|
</el-option>
|
|
|
@@ -174,7 +174,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="税务登记证编号" prop="CountryTaxNo" v-if="showorhidflag=='show'">
|
|
|
- <el-input v-model="supplierData.CountryTaxNo" maxlength="50"
|
|
|
+ <el-input v-model="supplierData.CountryTaxNo" maxlength="50" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['CountryTaxNo'] ? 'modified-form-input' : ''" placeholder="请输入"
|
|
|
style="width: 100%">
|
|
|
</el-input>
|
|
|
@@ -183,7 +183,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="组织机构代码" prop="OrganCode" v-if="showorhidflag=='show'">
|
|
|
- <el-input v-model="supplierData.OrganCode" maxlength="50" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.OrganCode" maxlength="50" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['OrganCode'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -194,13 +194,13 @@
|
|
|
<el-form-item label="注册地址" prop="Province">
|
|
|
<el-row>
|
|
|
<el-col :span="10">
|
|
|
- <el-cascader ref="cascaderAdd" :options="countryoptions" :props="countryprops" maxlength="20" filterable
|
|
|
+ <el-cascader ref="cascaderAdd" :options="countryoptions" :props="countryprops" maxlength="20" filterable :disabled="formData.Status > 0"
|
|
|
:class="changedForm['Province'] || changedForm['City'] || changedForm['Street'] ? 'modified-form-input' : ''"
|
|
|
placeholder="省市区" v-model="CityAry" style="width: 100%" @change="handleAreaChange">
|
|
|
</el-cascader>
|
|
|
</el-col>
|
|
|
<el-col :span="14">
|
|
|
- <el-input v-model="supplierData.Address" maxlength="500" placeholder="详细地址" style="width: 100%"
|
|
|
+ <el-input v-model="supplierData.Address" maxlength="500" placeholder="详细地址" style="width: 100%" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['Address'] ? 'modified-form-input' : ''">
|
|
|
</el-input>
|
|
|
</el-col>
|
|
|
@@ -209,7 +209,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="邮编" prop="ZipCode">
|
|
|
- <el-input v-model="supplierData.ZipCode" maxlength="20" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.ZipCode" maxlength="20" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['ZipCode'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -219,14 +219,14 @@
|
|
|
<el-form-item label="通信地址" prop="LinkProvince">
|
|
|
<el-row>
|
|
|
<el-col :span="10">
|
|
|
- <el-cascader ref="cascaderAddrLink" :options="countryoptions" :props="countryprops" filterable
|
|
|
+ <el-cascader ref="cascaderAddrLink" :options="countryoptions" :props="countryprops" filterable :disabled="formData.Status > 0"
|
|
|
:class="changedForm['LinkProvince'] || changedForm['LinkCity'] || changedForm['LinkStreet'] ? 'modified-form-input' : ''"
|
|
|
placeholder="省市区" v-model="LinkCityAry" maxlength="20" style="width: 100%"
|
|
|
@change="handleLinkAreaChange">
|
|
|
</el-cascader>
|
|
|
</el-col>
|
|
|
<el-col :span="14">
|
|
|
- <el-input v-model="supplierData.LinkAddress" maxlength="500" placeholder="详细地址" style="width: 100%"
|
|
|
+ <el-input v-model="supplierData.LinkAddress" maxlength="500" placeholder="详细地址" style="width: 100%" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['LinkAddress'] ? 'modified-form-input' : ''">
|
|
|
</el-input>
|
|
|
</el-col>
|
|
|
@@ -235,7 +235,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="邮编" prop="LinkZipCode">
|
|
|
- <el-input v-model="supplierData.LinkZipCode" maxlength="20" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.LinkZipCode" maxlength="20" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['LinkZipCode'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -245,7 +245,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="法定代表人姓名" prop="LegalPerson">
|
|
|
- <el-input v-model="supplierData.LegalPerson" maxlength="20" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.LegalPerson" maxlength="20" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['LegalPerson'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -254,7 +254,7 @@
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="公司类型" prop="CompanyType">
|
|
|
<!--<el-input v-model="supplierData.CompanyType" placeholder="请输入" style="width: 100%"></el-input>-->
|
|
|
- <el-select v-model="supplierData.CompanyType" maxlength="50" filterable allow-create
|
|
|
+ <el-select v-model="supplierData.CompanyType" maxlength="50" filterable allow-create :disabled="formData.Status > 0"
|
|
|
:class="changedForm['CompanyType'] ? 'modified-form-input' : ''"
|
|
|
placeholder="请选择" style="width: 100%;">
|
|
|
<el-option v-for="item in CompanyTypeOptions" :key="item.Id" :label="item.Key" :value="item.Value"
|
|
|
@@ -267,7 +267,7 @@
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="注册资本" prop="RegCapital">
|
|
|
<el-input type="number" v-model="supplierData.RegCapital"
|
|
|
- :class="changedForm['RegCapital'] ? 'modified-form-input' : ''" placeholder="请输入"
|
|
|
+ :class="changedForm['RegCapital'] ? 'modified-form-input' : ''" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
style="width: 100%">
|
|
|
<template slot="append">万元</template>
|
|
|
</el-input>
|
|
|
@@ -276,7 +276,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="成立时间">
|
|
|
- <el-date-picker v-model="supplierData.SetupTime" type="date"
|
|
|
+ <el-date-picker v-model="supplierData.SetupTime" type="date" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['SetupTime'] ? 'modified-form-input' : ''" format="yyyy 年 MM 月 dd 日"
|
|
|
value-format="yyyy-MM-dd" placeholder="选择日期" style="width: 100%">
|
|
|
</el-date-picker>
|
|
|
@@ -285,7 +285,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="开户银行" prop="DepositBank">
|
|
|
- <el-input v-model="supplierData.DepositBank" maxlength="50" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.DepositBank" maxlength="50" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['DepositBank'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -293,7 +293,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="银行账号" prop="BankAccount">
|
|
|
- <el-input v-model="supplierData.BankAccount" maxlength="50" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.BankAccount" maxlength="50" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['BankAccount'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -301,7 +301,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="联系人姓名" prop="ContactName">
|
|
|
- <el-input v-model="supplierData.ContactName" maxlength="20" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.ContactName" maxlength="20" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['ContactName'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -309,14 +309,14 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="移动电话" prop="Mobile">
|
|
|
- <el-input v-model="supplierData.Mobile" maxlength="20" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.Mobile" maxlength="20" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['Mobile'] ? 'modified-form-input' : ''" style="width: 100%"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="固定电话" prop="Telphone">
|
|
|
- <el-input v-model="supplierData.Telphone" maxlength="20" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.Telphone" maxlength="20" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['Telphone'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -324,28 +324,28 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="传真" prop="Fax">
|
|
|
- <el-input v-model="supplierData.Fax" maxlength="20" placeholder="区号-0000000"
|
|
|
+ <el-input v-model="supplierData.Fax" maxlength="20" placeholder="区号-0000000" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['Fax'] ? 'modified-form-input' : ''" style="width: 100%"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="财务电话" prop="CompanyTel">
|
|
|
- <el-input v-model="supplierData.CompanyTel" placeholder="区号-0000000" maxlength="20"
|
|
|
+ <el-input v-model="supplierData.CompanyTel" placeholder="区号-0000000" maxlength="20" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['CompanyTel'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="电子邮箱" prop="EMail">
|
|
|
- <el-input v-model="supplierData.EMail" maxlength="50" placeholder="请输入"
|
|
|
+ <el-input v-model="supplierData.EMail" maxlength="50" placeholder="请输入" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['EMail'] ? 'modified-form-input' : ''" style="width: 100%"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="银行信用等级">
|
|
|
- <el-input v-model="supplierData.BankCreditRating" maxlength="10"
|
|
|
+ <el-input v-model="supplierData.BankCreditRating" maxlength="10" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['BankCreditRating'] ? 'modified-form-input' : ''" placeholder="请输入"
|
|
|
style="width: 100%">
|
|
|
</el-input>
|
|
|
@@ -355,7 +355,7 @@
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="HSE审查培训">
|
|
|
<!--<el-input v-model="supplierData.HseTraining" placeholder="请输入" style="width: 100%"></el-input>-->
|
|
|
- <el-select v-model="supplierData.HseTraining" placeholder="请选择"
|
|
|
+ <el-select v-model="supplierData.HseTraining" placeholder="请选择" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['HseTraining'] ? 'modified-form-input' : ''" style="width: 100%;">
|
|
|
<el-option v-for="item in HSEOptions" :key="item.value" :label="item.label" :value="item.value"
|
|
|
style="width: 100%">
|
|
|
@@ -368,31 +368,31 @@
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
|
|
|
- <el-form label-position="top" ref="EntityFormCert" :model="supplierData">
|
|
|
+ <el-form class="formDataInfo" label-position="top" ref="EntityFormCert" :model="supplierData">
|
|
|
<el-row :gutter="60">
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="质量管理体系认证情况及认证机构">
|
|
|
- <el-input v-model="supplierData.QualitySystemCert" maxlength="200" placeholder="请输入" type="textarea"
|
|
|
+ <el-input v-model="supplierData.QualitySystemCert" maxlength="200" placeholder="请输入" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['QualitySystemCert'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="产品质量认证情况及认证机构">
|
|
|
- <el-input v-model="supplierData.ProductQualityCert" placeholder="请输入" maxlength="200" type="textarea"
|
|
|
+ <el-input v-model="supplierData.ProductQualityCert" placeholder="请输入" maxlength="200" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['ProductQualityCert'] ? 'modified-form-input' : ''">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="生产/制造许可证获证情况及编号">
|
|
|
- <el-input v-model="supplierData.MaunLicense" placeholder="请输入" maxlength="200" type="textarea"
|
|
|
+ <el-input v-model="supplierData.MaunLicense" placeholder="请输入" maxlength="200" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['MaunLicense'] ? 'modified-form-input' : ''"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="所代理制造商名称">
|
|
|
- <el-input v-model="supplierData.MaunAgent" maxlength="255" placeholder="请输入" type="textarea"
|
|
|
+ <el-input v-model="supplierData.MaunAgent" maxlength="255" placeholder="请输入" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['MaunAgent'] ? 'modified-form-input' : ''">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -400,7 +400,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="中石油物资供应商证书">
|
|
|
- <el-input v-model="supplierData.SupplierCertificate" maxlength="255" placeholder="请输入" style="width: 100%"
|
|
|
+ <el-input v-model="supplierData.SupplierCertificate" maxlength="255" placeholder="请输入" style="width: 100%" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['SupplierCertificate'] ? 'modified-form-input' : ''">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -408,7 +408,7 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="安全生产许可证">
|
|
|
- <el-input v-model="supplierData.SafetyLicense" maxlength="200" placeholder="请输入" type="textarea"
|
|
|
+ <el-input v-model="supplierData.SafetyLicense" maxlength="200" placeholder="请输入" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['SafetyLicense'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
@@ -416,21 +416,21 @@
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="行业特殊要求的认证证书">
|
|
|
- <el-input v-model="supplierData.SpecIndustryCert" placeholder="请输入" maxlength="200" type="textarea"
|
|
|
+ <el-input v-model="supplierData.SpecIndustryCert" placeholder="请输入" maxlength="200" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['SpecIndustryCert'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="备注">
|
|
|
- <el-input v-model="supplierData.Remark" maxlength="500" placeholder="请输入" type="textarea"
|
|
|
+ <el-input v-model="supplierData.Remark" maxlength="500" placeholder="请输入" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['Remark'] ? 'modified-form-input' : ''" style="width: 100%">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="16">
|
|
|
<el-form-item label="营业范围" prop="BusinessScope">
|
|
|
- <el-input v-model="supplierData.BusinessScope" maxlength="200" placeholder="营业执照上的信息" type="textarea"
|
|
|
+ <el-input v-model="supplierData.BusinessScope" maxlength="200" placeholder="营业执照上的信息" :autosize="{minRows: 3, maxRows: 6}" type="textarea" :readonly="formData.Status > 0"
|
|
|
:class="changedForm['BusinessScope'] ? 'modified-form-input' : ''" style="width: 100%"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -441,13 +441,13 @@
|
|
|
<el-tab-pane label="增项信息">
|
|
|
<el-card class="box-card">
|
|
|
<div slot="header">
|
|
|
- <span><i class="icon icon-table2"></i> 增项信息</span>
|
|
|
+ <span><i class="icon icon-table2"></i> 增项信息</span>
|
|
|
</div>
|
|
|
- <el-form label-width="150px" ref="EntityForm" :rules="appendRules" :model="formData" :disabled="true">
|
|
|
+ <el-form class="formDataInfo" label-width="150px" ref="EntityForm" :rules="appendRules" :model="formData">
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="供应方公司名称" prop="checkSelectedSupplier">
|
|
|
- <el-select v-model="supplierOptions" filterable placeholder="请选择供应方公司" style="width: 100%">
|
|
|
+ <el-select v-model="supplierOptions" filterable :disabled="formData.Status > 0" placeholder="请选择供应方公司" style="width: 100%">
|
|
|
<el-option v-for="item in supplierList" :key="item.SupplierId" :label="item.SupplierName"
|
|
|
:value="item.SupplierId">
|
|
|
</el-option>
|
|
|
@@ -457,6 +457,7 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="准入方式">
|
|
|
<el-select ref="inStyle" v-model="formData.InStyle"
|
|
|
+ :disabled="formData.Status > 0"
|
|
|
placeholder="请选择"
|
|
|
style="width: 100%">
|
|
|
<el-option v-for="item in InOptions"
|
|
|
@@ -469,7 +470,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="24">
|
|
|
<el-form-item label="备注" prop="Remark">
|
|
|
- <el-input type="textarea" v-model="formData.Remark" placeholder="请输入"></el-input>
|
|
|
+ <el-input type="textarea" v-model="formData.Remark" :readonly="formData.Status > 0" placeholder="请输入"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
@@ -2483,4 +2484,27 @@
|
|
|
width:140px;
|
|
|
height: 60px;
|
|
|
}
|
|
|
+ .formDataInfo .el-input__inner[readonly]:focus {
|
|
|
+ border-color: #dcdfe6;
|
|
|
+ }
|
|
|
+
|
|
|
+ .formDataInfo .el-textarea__inner[readonly] {
|
|
|
+ border-color: #dcdfe6;
|
|
|
+ }
|
|
|
+
|
|
|
+ .formDataInfo .el-textarea__inner[readonly]:focus {
|
|
|
+ border-color: #dcdfe6;
|
|
|
+ }
|
|
|
+
|
|
|
+ .formDataInfo .el-input__inner[disabled] {
|
|
|
+ color: black;
|
|
|
+ opacity: 1;
|
|
|
+ background-color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ .formDataInfo .el-textarea__inner[disabled] {
|
|
|
+ color: black;
|
|
|
+ opacity: 1;
|
|
|
+ background-color: white;
|
|
|
+ }
|
|
|
</style>
|