|
|
@@ -608,8 +608,8 @@
|
|
|
<el-table-column
|
|
|
label="是否为制造商" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-tag type="info" v-if="scope.row.IsManufacturer == 2">非制造商</el-tag>
|
|
|
- <el-tag type="success" v-else-if="scope.row.IsManufacturer == 1">制造商</el-tag>
|
|
|
+ <el-tag type="info" size="small" v-if="scope.row.IsManufacturer == 2">非制造商</el-tag>
|
|
|
+ <el-tag type="success" size="small" v-else-if="scope.row.IsManufacturer == 1">制造商</el-tag>
|
|
|
<span v-else>——</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
@@ -657,8 +657,8 @@
|
|
|
<el-table-column
|
|
|
label="是否为制造商" width="110">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="primary" plain size="mini" v-if="scope.row.IsManufacturer == 2" :disabled="isDisabledBtn()" @click="type_change(scope)">非制造商</el-button>
|
|
|
- <el-button type="primary" plain size="mini" v-if="scope.row.IsManufacturer == 1" :disabled="isDisabledBtn()" @click="type_change(scope)">制造商</el-button>
|
|
|
+ <el-button type="primary" plain size="small" v-if="scope.row.IsManufacturer == 2" :disabled="isDisabledBtn()" @click="type_change(scope)">非制造商</el-button>
|
|
|
+ <el-button type="primary" plain size="small" v-if="scope.row.IsManufacturer == 1" :disabled="isDisabledBtn()" @click="type_change(scope)">制造商</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="Remark" label="备注" show-overflow-tooltip></el-table-column>
|
|
|
@@ -670,12 +670,12 @@
|
|
|
</el-card>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <div style="float: right; margin: 20px;">
|
|
|
+ <div style="float: right; margin: 20px;" v-if="formData.Id !='' && currentStatus <= 0 && currentStatus != -5 ">
|
|
|
<el-button type="primary" size="mini" style="margin-right: 8px" @click="separateUnitSubmitClick"
|
|
|
- v-if="formData.Id !='' && currentStatus <= 0 && currentStatus != -5 && IsCompanyUser == 0">提交审核
|
|
|
+ v-if="IsCompanyUser == 0">提交审核
|
|
|
</el-button>
|
|
|
<el-button type="primary" size="mini" style="margin-right: 8px" @click="comSubmitToSeparateUnitClick"
|
|
|
- v-if="formData.Id !='' && currentStatus <= 0 && currentStatus != -5 && IsCompanyUser == 1">提交
|
|
|
+ v-if="IsCompanyUser == 1">提交
|
|
|
</el-button>
|
|
|
</div>
|
|
|
</el-tab-pane>
|