diff --git a/src/components/drawers/AddCase.vue b/src/components/drawers/AddCase.vue index bb2481a0..86eec845 100644 --- a/src/components/drawers/AddCase.vue +++ b/src/components/drawers/AddCase.vue @@ -79,11 +79,11 @@ const columns1 = [ { title: "案例标题", - width: "35%", + width: "40%", dataIndex: "title", key: "num", align: "center", - ellipsis: true, + ellipsis: true, }, { title: "作者", @@ -94,7 +94,7 @@ }, { title: "导入时间", - width: "40%", + width: "35%", dataIndex: "time", key: "time", align: "center", diff --git a/src/views/learningpath/LevelAddDetail.vue b/src/views/learningpath/LevelAddDetail.vue index 09a7a8d3..3f8642c4 100644 --- a/src/views/learningpath/LevelAddDetail.vue +++ b/src/views/learningpath/LevelAddDetail.vue @@ -247,7 +247,7 @@
-
批量删除
+
批量删除
@@ -374,7 +374,7 @@ - +
@@ -459,6 +459,36 @@ + + +
+
+
+
+
+ 提示 +
+
+
+ 请确认是否批量删除学员 +
+
+
+
取消
+
+
+
确定
+
+
+
+
+
@@ -799,6 +829,8 @@ export default { modal: false, clos: false, stm_hs: false, + deleteAll: false, + closeDeleteAll: false, value1: "", value2: "", selectedRowKeys: [], @@ -1060,6 +1092,12 @@ export default { const gqxy_hShow = () => { state.gqxy_hs = !state.gqxy_hs; }; + const showDeleteALLModal = () => { + state.deleteAll = true; + }; + const delete_exit = () => { + state.deleteAll = false + } return { ...toRefs(state), tableDataFunc, @@ -1075,6 +1113,8 @@ export default { onSelectChange, changebgc, gqxy_hShow, + showDeleteALLModal, + delete_exit, }; }, }; @@ -2088,4 +2128,115 @@ export default { } } } +.CopyModal { + .ant-modal { + width: 424px !important; + height: 258px !important; + .ant-modal-content { + width: 424px !important; + height: 258px !important; + .ant-modal-body { + width: 424px !important; + height: 258px !important; + padding: 0 !important; + .delete { + z-index: 999; + width: 424px; + height: 258px; + background: #ffffff; + box-shadow: 0px 1px 35px 0px rgba(118, 136, 166, 0.21); + border-radius: 4px; + // position: absolute; + // left: 50%; + // top: 10%; + // transform: translate(-50%, -50%); + .del_header { + position: absolute; + width: calc(100%); + height: 40px; + background: linear-gradient( + rgba(78, 166, 255, 0.2) 0%, + rgba(78, 166, 255, 0) 100% + ); + } + .del_main { + width: 100%; + position: relative; + .header { + display: flex; + align-items: center; + padding-top: 20px; + padding-left: 26px; + font-size: 16px; + .icon { + width: 16px; + height: 16px; + margin-right: 10px; + background-image: url(@/assets/images/coursewareManage/QR.png); + background-size: 100% 100%; + } + .close_exit { + position: absolute; + right: 42px; + cursor: pointer; + width: 20px; + height: 20px; + background-image: url(@/assets/images/coursewareManage/close.png); + background-size: 100% 100%; + } + } + .body { + width: 100%; + margin: 34px auto 56px auto; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + // background-color: red; + position: relative; + .back { + position: absolute; + top: 30px; + font-size: 12px; + font-weight: 400; + color: #666666; + } + } + .del_btnbox { + display: flex; + margin: 30px auto; + justify-content: center; + .del_btn { + width: 100px; + height: 40px; + background: rgba(64, 158, 255, 0); + border-radius: 8px; + display: flex; + align-items: center; + justify-content: center; + + flex-shrink: 0; + cursor: pointer; + .btnText { + font-size: 14px; + font-weight: 400; + line-height: 40px; + } + } + .btn1 { + border: 1px solid rgba(64, 158, 255, 1); + color: #4ea6ff; + margin-right: 14px; + } + .btn2 { + background-color: #4ea6ff; + color: #ffffff; + } + } + } + } + } + } + } +}