|
@@ -178,6 +178,14 @@
|
|
|
style="width: 100%;"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="备注:" prop="remark">
|
|
|
+ <el-input
|
|
|
+ v-model="form.remark"
|
|
|
+ placeholder="该字段主要用于相同团队的区分,请谨慎填写"
|
|
|
+ clearable
|
|
|
+ style="width: 100%;"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -349,6 +357,7 @@ export default {
|
|
|
this.$set(this.form, 'checkRemark', obj.checkRemark);
|
|
|
this.$set(this.form, 'haveContract', obj.haveContract);
|
|
|
this.$set(this.form, 'contractReason', obj.contractReason);
|
|
|
+ this.$set(this.form, 'remark', obj.remark);
|
|
|
this.changeType(this.form.type)
|
|
|
if(obj.contractImg){
|
|
|
if(obj.contractImg.indexOf(',') > -1){
|
|
@@ -424,6 +433,7 @@ export default {
|
|
|
this.$set(this.form, 'checkRemark', '');
|
|
|
this.$set(this.form, 'haveContract', '');
|
|
|
this.$set(this.form, 'contractReason', '');
|
|
|
+ this.$set(this.form, 'remark', '');
|
|
|
},
|
|
|
/**
|
|
|
* 关闭弹框
|