|
@@ -3,17 +3,17 @@
|
|
|
|
|
|
<el-row type="flex" justify="end" style="margin-bottom: 16px;">
|
|
|
<el-col :span="1.5">
|
|
|
- <el-button type="primary" size="small" plain @click="save"
|
|
|
+ <el-button type="primary" :size="size" plain @click="save"
|
|
|
v-if="pageStu == 'add' || pageStu == 'edit' || pageStu ==='copy' ">保存
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5" style="margin: 0 10px;">
|
|
|
- <el-button type="primary" size="small" plain @click="submit"
|
|
|
+ <el-button type="primary" :size="size" plain @click="submit"
|
|
|
v-if="pageStu == 'check' && (row.status == '0' || row.status == '3')">提交
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
- <el-button type="primary" size="small" plain @click="back">返回</el-button>
|
|
|
+ <el-button type="primary" :size="size" plain @click="back">返回</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-tabs type="border-card" v-model="tabValue" @tab-click="handleClick">
|
|
@@ -535,8 +535,8 @@
|
|
|
<span>物料类别</span>
|
|
|
</el-row> -->
|
|
|
<el-row style="margin-bottom: 12px;">
|
|
|
- <el-button :disabled="disable" type="primary" size="small" plain @click="addLine">新增</el-button>
|
|
|
- <el-button :disabled="disable" type="primary" size="small" plain @click="handleDelete">删除</el-button>
|
|
|
+ <el-button :disabled="disable" type="primary" :size="size" plain @click="addLine">新增</el-button>
|
|
|
+ <el-button :disabled="disable" type="primary" :size="size" plain @click="handleDelete">删除</el-button>
|
|
|
<!-- <el-button :disabled="disable || isControl" type="primary" size="small" plain @click="testsave">暂存</el-button> -->
|
|
|
</el-row>
|
|
|
<el-row>
|
|
@@ -710,6 +710,7 @@
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ size:'mini',
|
|
|
testOptions: [],
|
|
|
factoryOptions: [],
|
|
|
unitOptions: [],
|