|
@@ -79,7 +79,7 @@
|
|
|
</el-col>
|
|
|
|
|
|
<!--新增界面-->
|
|
|
- <el-dialog title="新建模具" v-if="addFormVisible" :visible.sync="addFormVisible" :close-on-click-modal="false" customClass="customWidth">
|
|
|
+ <el-dialog title="新建云模盒" v-if="addFormVisible" :visible.sync="addFormVisible" :close-on-click-modal="false" customClass="customWidth">
|
|
|
<el-form
|
|
|
:model="newAllocation"
|
|
|
label-width="100px"
|
|
@@ -89,7 +89,7 @@
|
|
|
class="demo-form-inline"
|
|
|
>
|
|
|
<el-form-item label="云模盒编号" prop="equipmentNo">
|
|
|
- <el-input v-model="newAllocation.equipmentNo" autocomplete="off" placeholder="请填写云模盒编号"></el-input>
|
|
|
+ <el-input v-model="newAllocation.equipmentNo" autocomplete="off" placeholder="请输入云模盒编号"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="所属公司" prop="belongCompanyId">
|
|
|
<el-select
|
|
@@ -112,14 +112,14 @@
|
|
|
v-model.number="newAllocation.useLife"
|
|
|
type="age"
|
|
|
autocomplete="off"
|
|
|
- placeholder="请填写使用年限"
|
|
|
+ placeholder="请输入使用年限"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="代理商" prop="agent">
|
|
|
<el-input
|
|
|
v-model="newAllocation.agent"
|
|
|
autocomplete="off"
|
|
|
- placeholder="请填写代理商"
|
|
|
+ placeholder="请输入代理商"
|
|
|
style="width: 202px"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
@@ -132,7 +132,7 @@
|
|
|
|
|
|
<!--修改界面-->
|
|
|
<el-dialog
|
|
|
- title="修改模具"
|
|
|
+ title="修改云模盒"
|
|
|
v-if="editFormVisible"
|
|
|
:visible.sync="editFormVisible"
|
|
|
:close-on-click-modal="false"
|
|
@@ -147,7 +147,7 @@
|
|
|
class="demo-form-inline"
|
|
|
>
|
|
|
<el-form-item label="云模盒编号" prop="equipmentNo">
|
|
|
- <el-input v-model="newAllocation.equipmentNo" autocomplete="off" placeholder="请填写"></el-input>
|
|
|
+ <el-input v-model="newAllocation.equipmentNo" autocomplete="off" placeholder="请输入云模盒编号"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="所属公司" prop="belongCompanyId">
|
|
|
<el-select
|
|
@@ -171,14 +171,14 @@
|
|
|
v-model.number="newAllocation.useLife"
|
|
|
type="age"
|
|
|
autocomplete="off"
|
|
|
- placeholder="请填写使用年限"
|
|
|
+ placeholder="请输入使用年限"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="代理商" prop="agent">
|
|
|
<el-input
|
|
|
v-model="newAllocation.agent"
|
|
|
autocomplete="off"
|
|
|
- placeholder="请填写代理商"
|
|
|
+ placeholder="请输入代理商"
|
|
|
style="width: 202px"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
@@ -241,7 +241,7 @@
|
|
|
{ required: true, message: "请选择所属公司", trigger: ["blur", "change"] }
|
|
|
],
|
|
|
agent: [
|
|
|
- { required: true, message: "请填写代理商", trigger: "blur" }
|
|
|
+ { required: true, message: "请输入代理商", trigger: "blur" }
|
|
|
]
|
|
|
},
|
|
|
|
|
@@ -454,7 +454,7 @@
|
|
|
enable() {
|
|
|
if(this.allocations[this.activeIndex].belongCompanyId == null){
|
|
|
this.$message({
|
|
|
- message: "填写所属公司后才能启用模具",
|
|
|
+ message: "输入所属公司后才能启用模具",
|
|
|
type: "error"
|
|
|
});
|
|
|
}else{
|