|
|
@@ -25,6 +25,12 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item :label="$t(`是否对外`)+':'">
|
|
|
+ <el-radio v-model="form.isout" :label="1">{{$t(`是`)}}</el-radio>
|
|
|
+ <el-radio v-model="form.isout" :label="0">{{$t(`否`)}}</el-radio>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="24">
|
|
|
<el-form-item :label="$t(`资料说明`)+':'">
|
|
|
<el-input type="textarea" rows="5" v-model="form.remarks" :placeholder="$t(`输入资料说明`)"></el-input>
|
|
|
@@ -66,6 +72,7 @@ export default {
|
|
|
form:{
|
|
|
type:'',
|
|
|
remarks:'',
|
|
|
+ isout:0,
|
|
|
attinfos:[]
|
|
|
},
|
|
|
options: [],
|
|
|
@@ -111,7 +118,8 @@ export default {
|
|
|
"content": {
|
|
|
"plm_technicalinfoid":0,
|
|
|
"type":this.form.type,
|
|
|
- "remarks":this.form.remarks
|
|
|
+ "remarks":this.form.remarks,
|
|
|
+ "isout":this.form.isout
|
|
|
}
|
|
|
})
|
|
|
this.tool.showMessage(res,() => {
|
|
|
@@ -123,7 +131,8 @@ export default {
|
|
|
this.form = {
|
|
|
type:'',
|
|
|
remarks:'',
|
|
|
- attinfos:[]
|
|
|
+ attinfos:[],
|
|
|
+ isout:0,
|
|
|
}
|
|
|
this.$emit('onSuccess')
|
|
|
})
|
|
|
@@ -139,7 +148,8 @@ export default {
|
|
|
this.form = {
|
|
|
type:'',
|
|
|
remarks:'',
|
|
|
- attinfos:[]
|
|
|
+ attinfos:[],
|
|
|
+ isout:0,
|
|
|
}
|
|
|
this.listFiles = this.$refs.list.list
|
|
|
this.batchDeletion()
|