diff --git a/packages/wxwork/AppMassNotification/components/SelectDeptUser.vue b/packages/wxwork/AppMassNotification/components/SelectDeptUser.vue index 3f14a1cc..91e74ad2 100644 --- a/packages/wxwork/AppMassNotification/components/SelectDeptUser.vue +++ b/packages/wxwork/AppMassNotification/components/SelectDeptUser.vue @@ -46,7 +46,7 @@ export default { }, computed: { selectText: v => v.value?.length > 0 ? "已选择" : "请选择", - tagAction: v => v.source == 1 ? '/app/wxcp/wxgroupchattag/listAllByCorp' : '/app/wxcp/wxcorptag/listAllByCorp' + tagAction: v => v.source == 2 ? '/app/wxcp/wxgroupchattag/listAllByCorp' : '/app/wxcp/wxcorptag/listAllByCorp' }, data() { return { @@ -80,7 +80,10 @@ export default { }, getTagsByCorp(dvcpCorpId) { return this.instance.post(this.tagAction, null, { - params: {dvcpCorpId, size: 9999} + params: { + dvcpCorpId, + size: 9999 + } }).then(res => { if (res?.data) { return this.tagOps = res.data.records || [] diff --git a/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue b/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue index 3801c1b9..87f996a1 100644 --- a/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue +++ b/project/sanjianxi/apps/AppScoreRules/AppScoreRules.vue @@ -81,10 +81,10 @@ - - 常规 - 区间 - 阶梯 + + 常规 + 区间 + 阶梯 @@ -193,7 +193,10 @@ export default { ], tableData: [], dialog: false, - form: {ladderRule: []}, + form: { + ladderRule: [], + pass: 0, + }, formRules: { eventType: [{required: true, message: "请选择事件/类型", trigger: "change"}], scoringCycle: [{required: true, message: "请选择周期范围", trigger: "change"}], @@ -206,6 +209,7 @@ export default { integralData: [], innerVisible: false, table: {}, + }; }, created() { @@ -252,8 +256,9 @@ export default { }) }, - typeChange() { - this.form.integral = '' + typeChange(val) { + // console.log(val); + this.form.pass = val }, handleInputFrom(event) {