mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-23 21:36:37 +08:00
加入员工工牌通知功能
This commit is contained in:
parent
3df5892b52
commit
d1c372eaba
@ -83,6 +83,7 @@
|
||||
</option>
|
||||
<option value="SMS">{{vc.i18n('短信','addRepairSetting')}}</option>
|
||||
<option value="WECHAT">{{vc.i18n('微信','addRepairSetting')}}</option>
|
||||
<option value="WORK_LICENSE">{{vc.i18n('微信+员工工牌','addRepairSetting')}}</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -85,6 +85,7 @@
|
||||
</option>
|
||||
<option value="SMS">{{vc.i18n('短信','editRepairSetting')}}</option>
|
||||
<option value="WECHAT">{{vc.i18n('微信','editRepairSetting')}}</option>
|
||||
<option value="WORK_LICENSE">{{vc.i18n('微信+员工工牌','editRepairSetting')}}</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -24,6 +24,8 @@
|
||||
</option>
|
||||
<option value="SMS">{{vc.i18n('短信','addComplaintType')}}</option>
|
||||
<option value="WECHAT">{{vc.i18n('微信','addComplaintType')}}</option>
|
||||
<option value="WORK_LICENSE">{{vc.i18n('微信+员工工牌','addComplaintType')}}</option>
|
||||
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -39,7 +39,9 @@
|
||||
<tbody>
|
||||
<tr v-for="complaintType in complaintTypeInfo.complaintTypes">
|
||||
<td class="text-center">{{complaintType.typeName}}</td>
|
||||
<td class="text-center">{{complaintType.notifyWay == 'SMS'?'短信':'微信'}}</td>
|
||||
<td class="text-center" v-if="complaintType.notifyWay == 'SMS'">短信</td>
|
||||
<td class="text-center" v-else-if="complaintType.notifyWay == 'WORK_LICENSE'">微信+员工工牌</td>
|
||||
<td class="text-center" v-else>微信</td>
|
||||
<td class="text-center">{{complaintType.appraiseReply == 'Y'?'自动回复':'人工回复'}}</td>
|
||||
<td class="text-center" >
|
||||
<span v-for="(item,index) in complaintType.staffs" :key="index">{{item.staffName}}</br></span>
|
||||
|
||||
@ -24,6 +24,8 @@
|
||||
</option>
|
||||
<option value="SMS">{{vc.i18n('短信','editComplaintType')}}</option>
|
||||
<option value="WECHAT">{{vc.i18n('微信','editComplaintType')}}</option>
|
||||
<option value="WORK_LICENSE">{{vc.i18n('微信+员工工牌','editComplaintType')}}</option>
|
||||
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -118,7 +118,9 @@
|
||||
<td class="text-center">{{repairSetting.repairWayName}}</td>
|
||||
<td class="text-center">{{repairSetting.publicArea == 'T'?'非房屋':'房屋'}}</td>
|
||||
<td class="text-center">{{repairSetting.isShow == 'Y'?'是':'否'}}</td>
|
||||
<td class="text-center">{{repairSetting.notifyWay == 'SMS'?'短信':'微信'}}</td>
|
||||
<td class="text-center" v-if="repairSetting.notifyWay == 'SMS'">短信</td>
|
||||
<td class="text-center" v-else-if="repairSetting.notifyWay == 'WORK_LICENSE'">微信+员工工牌</td>
|
||||
<td class="text-center" v-else>微信</td>
|
||||
<td class="text-center">{{repairSetting.returnVisitFlagName}}</td>
|
||||
<td class="text-center">{{repairSetting.createTime}}</td>
|
||||
<td class="text-center">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user