51bd0d5c by 蔡俊立
2 parents 66d929fa 87f7496e
...@@ -21,7 +21,7 @@ Vue.prototype.$endLoading = endLoadingSubCount ...@@ -21,7 +21,7 @@ Vue.prototype.$endLoading = endLoadingSubCount
21 import { popupDialog, popupCacel } from "./utils/popup.js"; 21 import { popupDialog, popupCacel } from "./utils/popup.js";
22 // 全局加载 22 // 全局加载
23 Vue.prototype.$popupDialog = popupDialog 23 Vue.prototype.$popupDialog = popupDialog
24 Vue.prototype.$popupCacel = popupDialog 24 Vue.prototype.$popupCacel = popupCacel
25 25
26 26
27 import { theme } from "@/directive/theme.js" 27 import { theme } from "@/directive/theme.js"
......
1 /deep/.el-dialog__header {
2 margin-bottom: 10px;
3 color: #4A4A4A;
4 background: linear-gradient(3deg, #409EFF, #a7cbee);
5 border-bottom: 1px solid #E4EBF4;
6 }
7
8 .el-dialog__body {
9 padding-top: 10px;
10 padding-bottom: 0;
11 }
12
13 /deep/.el-dialog__headerbtn .el-dialog__close {
14 color: #6B7A99 !important;
15 position: relative;
16 top: -6px;
17 }
...@@ -210,6 +210,7 @@ export default { ...@@ -210,6 +210,7 @@ export default {
210 }; 210 };
211 </script> 211 </script>
212 <style scoped lang="scss"> 212 <style scoped lang="scss">
213 @import "~@/styles/dialogBoxheader.scss";
213 .submit-button { 214 .submit-button {
214 text-align: center; 215 text-align: center;
215 height: 52px; 216 height: 52px;
......
...@@ -191,12 +191,22 @@ export default { ...@@ -191,12 +191,22 @@ export default {
191 191
192 // 修改 192 // 修改
193 editClick (index, row) { 193 editClick (index, row) {
194 // popupDialog("申请人信息", "workflow/components/addQlr", {
195 // showButton: this.$route.query.viewtype ? false : true,
196 // dataIndex :index,
197 // details :row,
198 // isaddupdate :false
199 // });
194 this.dataIndex = index 200 this.dataIndex = index
195 this.dialog = true 201 this.dialog = true
196 this.details = row 202 this.details = row
197 this.isaddupdate = false 203 this.isaddupdate = false
198 }, 204 },
199 queryViewClick (index, row) { 205 queryViewClick (index, row) {
206 // popupDialog("申请人信息", "workflow/components/addQlr", {
207 // showButton: this.$route.query.viewtype ? false : true,
208 // details: row,
209 // });
200 this.dialog = true 210 this.dialog = true
201 this.details = row 211 this.details = row
202 } 212 }
...@@ -205,4 +215,4 @@ export default { ...@@ -205,4 +215,4 @@ export default {
205 </script> 215 </script>
206 <style scoped lang='scss'> 216 <style scoped lang='scss'>
207 217
208 </style>
...\ No newline at end of file ...\ No newline at end of file
218 </style>
......