lex-xin hace 5 años
padre
commit
0f77d57f5b

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/index.html


+ 1 - 1
dist/static/css/chunk-026a14f8.8c14d646.css → dist/static/css/chunk-1f658728.13988f60.css

@@ -1 +1 @@
-.el-button--primary[data-v-e124187a],.el-button--primary[data-v-e124187a]:active,.el-button--primary[data-v-e124187a]:focus,.el-button--primary[data-v-e124187a]:hover{background:#14928a;border-color:#14928a;color:#fff}[data-v-e124187a] .el-date-editor.el-input,[data-v-e124187a] .el-select{width:100%!important}[data-v-e124187a] .el-form-item__content{font-size:14px!important;margin-right:5%}.infoWrap[data-v-e124187a]{margin-top:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.infoWrap .left[data-v-e124187a]{max-width:1000px;width:100%}.infoWrap .left h4[data-v-e124187a]{margin-bottom:20px}.infoWrap .right[data-v-e124187a]{margin-left:100px}.infoWrap .right .teacherIcon[data-v-e124187a]{width:150px;height:150px;border-radius:50%;overflow:hidden}.infoWrap .right .teacherIcon img[data-v-e124187a]{width:150px;height:150px}.salarySet h3[data-v-6d4f2a1c]{margin-top:10px;margin-bottom:10px;font-size:14px;color:#444;font-weight:400}.salarySet .tableList .left[data-v-6d4f2a1c],.salarySet .tableList .right[data-v-6d4f2a1c]{float:left}.salarySet .tableList .left[data-v-6d4f2a1c]{width:70%;margin-right:2%}.salarySet .tableList .right[data-v-6d4f2a1c]{width:56%;margin-left:2%}[data-v-6d4f2a1c] .el-table__body tr td:nth-child(3){border-right:1px solid #ebeef5}[data-v-6d4f2a1c] .el-input-group__append{background-color:#f5f7fa;color:#909399;vertical-align:middle;display:table-cell;position:relative;border:1px solid #dcdfe6;border-left:0}
+.el-button--primary[data-v-e124187a],.el-button--primary[data-v-e124187a]:active,.el-button--primary[data-v-e124187a]:focus,.el-button--primary[data-v-e124187a]:hover{background:#14928a;border-color:#14928a;color:#fff}[data-v-e124187a] .el-date-editor.el-input,[data-v-e124187a] .el-select{width:100%!important}[data-v-e124187a] .el-form-item__content{font-size:14px!important;margin-right:5%}.infoWrap[data-v-e124187a]{margin-top:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.infoWrap .left[data-v-e124187a]{max-width:1000px;width:100%}.infoWrap .left h4[data-v-e124187a]{margin-bottom:20px}.infoWrap .right[data-v-e124187a]{margin-left:100px}.infoWrap .right .teacherIcon[data-v-e124187a]{width:150px;height:150px;border-radius:50%;overflow:hidden}.infoWrap .right .teacherIcon img[data-v-e124187a]{width:150px;height:150px}.salarySet h3[data-v-2b546e22]{margin-top:10px;margin-bottom:10px;font-size:14px;color:#444;font-weight:400}.salarySet .tableList .left[data-v-2b546e22],.salarySet .tableList .right[data-v-2b546e22]{float:left}.salarySet .tableList .left[data-v-2b546e22]{width:70%;margin-right:2%}.salarySet .tableList .right[data-v-2b546e22]{width:56%;margin-left:2%}[data-v-2b546e22] .el-table__body tr td:nth-child(3){border-right:1px solid #ebeef5}[data-v-2b546e22] .el-input-group__append{background-color:#f5f7fa;color:#909399;vertical-align:middle;display:table-cell;position:relative;border:1px solid #dcdfe6;border-left:0}

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/app.6504be90.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/chunk-026a14f8.8f95bc09.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/chunk-1f658728.1da6d4a5.js


+ 27 - 19
src/views/teacherManager/teacherOperation/components/salarySet.vue

@@ -335,26 +335,34 @@ export default {
       })
       // 判断输入的值是否正确
       if (!checkStatus) return false
-      teacherSalaryBatchUpset({
-        teacherDefaultMusicGroupSalaries: teamTable,
-        startDate: this.startDate
-      }).then(res => {
-        if (res.code == 200) {
-          // 判断输入的值是否正确
-          vipGroupSalarySet({
-            teacherDefaultVipGroupSalaries: this.vipTable,
-            startDate: this.startDate
-          }).then(res => {
-            if (res.code == 200) {
-              this.$message.success('保存成功')
 
-              // if(this.$route.query.type == 'create') {
-              this.$router.push({ path: '/business/teacherList', query: { rules: this.Frules, search: this.Fsearch } })
-              // }
-            }
-          })
-        }
-      })
+      this.$confirm('您确定更改老师课酬', '提示', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+      }).then(() => {
+        teacherSalaryBatchUpset({
+          teacherDefaultMusicGroupSalaries: teamTable,
+          startDate: this.startDate
+        }).then(res => {
+          if (res.code == 200) {
+            // 判断输入的值是否正确
+            vipGroupSalarySet({
+              teacherDefaultVipGroupSalaries: this.vipTable,
+              startDate: this.startDate
+            }).then(res => {
+              if (res.code == 200) {
+                this.$message.success('保存成功')
+
+                // if(this.$route.query.type == 'create') {
+                this.$router.push({ path: '/business/teacherList', query: { rules: this.Frules, search: this.Fsearch } })
+                // }
+              }
+            })
+          }
+        })
+      }).catch(() => {})
+      
     }
   }
 }

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio