|  | @@ -22,16 +22,17 @@
 | 
	
		
			
				|  |  |                :maxlength="50"
 | 
	
		
			
				|  |  |                placeholder="请输入履职内容库名称"
 | 
	
		
			
				|  |  |                clearable
 | 
	
		
			
				|  |  | +              style="width: 280px"
 | 
	
		
			
				|  |  |              />
 | 
	
		
			
				|  |  |            </el-form-item>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |            <el-form-item prop="type" label="履职类型:">
 | 
	
		
			
				|  |  |              <el-select
 | 
	
		
			
				|  |  |                label="履职类型"
 | 
	
		
			
				|  |  | -              style="width: 100%"
 | 
	
		
			
				|  |  |                v-model="formData.type"
 | 
	
		
			
				|  |  |                placeholder="请选择履职类型"
 | 
	
		
			
				|  |  |                clearable
 | 
	
		
			
				|  |  | +              style="width: 280px"
 | 
	
		
			
				|  |  |              >
 | 
	
		
			
				|  |  |                <el-option
 | 
	
		
			
				|  |  |                  v-for="item in ruleTypeOptions"
 | 
	
	
		
			
				|  | @@ -45,7 +46,7 @@
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |            <el-form-item prop="orgType" label="履职机构类型:">
 | 
	
		
			
				|  |  |              <el-select
 | 
	
		
			
				|  |  | -              style="width: 100%"
 | 
	
		
			
				|  |  | +              style="width: 280px"
 | 
	
		
			
				|  |  |                prop="orgType"
 | 
	
		
			
				|  |  |                label="履职机构类型"
 | 
	
		
			
				|  |  |                v-model="formData.orgType"
 | 
	
	
		
			
				|  | @@ -64,7 +65,7 @@
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |            <el-form-item prop="status" label="状态:">
 | 
	
		
			
				|  |  |              <el-select
 | 
	
		
			
				|  |  | -              style="width: 100%"
 | 
	
		
			
				|  |  | +              style="width: 280px"
 | 
	
		
			
				|  |  |                prop="status"
 | 
	
		
			
				|  |  |                label="状态"
 | 
	
		
			
				|  |  |                v-model="formData.status"
 | 
	
	
		
			
				|  | @@ -81,13 +82,13 @@
 | 
	
		
			
				|  |  |              </el-select>
 | 
	
		
			
				|  |  |            </el-form-item>
 | 
	
		
			
				|  |  |            <el-form-item prop="remark" label="备注">
 | 
	
		
			
				|  |  | -            <el-input v-model="formData.remark" :maxlength="255" clearable />
 | 
	
		
			
				|  |  | +            <el-input v-model="formData.remark" :maxlength="255" clearable  style="width:280px;" type="textarea" :rows="3"/>
 | 
	
		
			
				|  |  |            </el-form-item>
 | 
	
		
			
				|  |  |          </el-form>
 | 
	
		
			
				|  |  |        </div>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |        <div slot="footer" class="dialog-footer">
 | 
	
		
			
				|  |  | -        <el-button @click="isShow=false">取消</el-button>
 | 
	
		
			
				|  |  | +        <el-button @click="isShow = false">取消</el-button>
 | 
	
		
			
				|  |  |          <el-button type="primary" @click="onSubmit">确定</el-button>
 | 
	
		
			
				|  |  |        </div>
 | 
	
		
			
				|  |  |      </DialogCom>
 | 
	
	
		
			
				|  | @@ -150,14 +151,14 @@ export default {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      // 事件
 | 
	
		
			
				|  |  |      onHide() {
 | 
	
		
			
				|  |  | -      this.formData=this.reset();
 | 
	
		
			
				|  |  | +      this.formData = this.reset();
 | 
	
		
			
				|  |  |        this.$refs.form.resetFields();
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      onSubmit() {
 | 
	
		
			
				|  |  |        this.$refs.form.validate(async (isValidate) => {
 | 
	
		
			
				|  |  |          if (!isValidate) return;
 | 
	
		
			
				|  |  |          await api.update(this.formData);
 | 
	
		
			
				|  |  | -        this.$message.info("保存成功")
 | 
	
		
			
				|  |  | +        this.$message.info("保存成功");
 | 
	
		
			
				|  |  |          this.$emit("success");
 | 
	
		
			
				|  |  |          this.isShow = false;
 | 
	
		
			
				|  |  |        });
 |