93585f91 by renchao@pashanhoo.com

style:证书分发

1 parent a289545f
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
51 <el-input type="textarea" v-model="ruleForm.bz" :rows="4" :disabled="!readOnly"></el-input> 51 <el-input type="textarea" v-model="ruleForm.bz" :rows="4" :disabled="!readOnly"></el-input>
52 </el-form-item> 52 </el-form-item>
53 53
54 <el-form-item v-if="readOnly"> 54 <el-form-item v-if="readOnly" style="text-align:center">
55 <el-button type="primary" @click="submitForm">保存</el-button> 55 <el-button type="primary" @click="submitForm">保存</el-button>
56 <el-button @click="closeDialog">取消</el-button> 56 <el-button @click="closeDialog">取消</el-button>
57 </el-form-item> 57 </el-form-item>
...@@ -138,7 +138,6 @@ ...@@ -138,7 +138,6 @@
138 this.getreceiver() 138 this.getreceiver()
139 }, 139 },
140 methods: { 140 methods: {
141 //领取人列表
142 /** 141 /**
143 * @description: 领取人列表 142 * @description: 领取人列表
144 * @author: renchao 143 * @author: renchao
...@@ -151,7 +150,6 @@ ...@@ -151,7 +150,6 @@
151 }) 150 })
152 }) 151 })
153 }, 152 },
154 //表单提交
155 /** 153 /**
156 * @description: 表单提交 154 * @description: 表单提交
157 * @author: renchao 155 * @author: renchao
...@@ -161,9 +159,9 @@ ...@@ -161,9 +159,9 @@
161 zsff(this.ruleForm).then(res => { 159 zsff(this.ruleForm).then(res => {
162 if (res.code == 200) { 160 if (res.code == 200) {
163 this.$message.success('保存成功') 161 this.$message.success('保存成功')
164 this.$emit("input", false);
165 this.$refs['ruleForm'].resetFields(); 162 this.$refs['ruleForm'].resetFields();
166 this.resetTableFields(); 163 this.resetTableFields();
164 this.$popupCacel()
167 store.dispatch("user/refreshPage", true); 165 store.dispatch("user/refreshPage", true);
168 } else { 166 } else {
169 this.$message.error(res.message) 167 this.$message.error(res.message)
...@@ -203,7 +201,6 @@ ...@@ -203,7 +201,6 @@
203 } 201 }
204 }) 202 })
205 }, 203 },
206 //初始化开始序列号
207 /** 204 /**
208 * @description: 初始化开始序列号 205 * @description: 初始化开始序列号
209 * @author: renchao 206 * @author: renchao
...@@ -241,7 +238,6 @@ ...@@ -241,7 +238,6 @@
241 this.updateRuleForm('', 0, item); 238 this.updateRuleForm('', 0, item);
242 } 239 }
243 }, 240 },
244 //更新表单数据
245 /** 241 /**
246 * @description: 更新表单数据 242 * @description: 更新表单数据
247 * @param {*} endno 243 * @param {*} endno
...@@ -297,6 +293,9 @@ ...@@ -297,6 +293,9 @@
297 <style scoped lang="scss"> 293 <style scoped lang="scss">
298 @import "~@/styles/mixin.scss"; 294 @import "~@/styles/mixin.scss";
299 @import "~@/styles/dialogBoxheader.scss"; 295 @import "~@/styles/dialogBoxheader.scss";
296 /deep/.cell .el-form-item {
297 margin-bottom: 0;
298 }
300 299
301 .font-red { 300 .font-red {
302 color: red; 301 color: red;
......
...@@ -294,7 +294,9 @@ ...@@ -294,7 +294,9 @@
294 <style scoped lang="scss"> 294 <style scoped lang="scss">
295 @import "~@/styles/mixin.scss"; 295 @import "~@/styles/mixin.scss";
296 @import "~@/styles/dialogBoxheader.scss"; 296 @import "~@/styles/dialogBoxheader.scss";
297 297 /deep/.cell .el-form-item {
298 margin-bottom: 0;
299 }
298 .font-red { 300 .font-red {
299 color: red; 301 color: red;
300 } 302 }
......