particularsDialog.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. <template>
  2. <div class="container-particulars">
  3. <el-dialog
  4. v-dialogDrag
  5. :close-on-click-modal="false"
  6. :modal-append-to-body="false"
  7. center
  8. :append-to-body="true"
  9. :visible.sync="particularsDialogVisible"
  10. :before-close="okBtn"
  11. :width="subscribe == '报名失败详情' ? '1000px' : '1100px'"
  12. >
  13. <div slot="title" style="display: flex; align-items: center">
  14. <img v-if="subscribe == '预约外呼详情'" :src="$icons.delay" style="color: #fff; width: 16px; height: 16px; margin-right: 5px" />
  15. <img v-else :src="$icons.warntop" style="color: #fff; width: 16px; height: 16px; margin-right: 5px" />
  16. <span style="font-size: 16px">{{ subscribe }}</span>
  17. </div>
  18. <div class="content-box">
  19. <div class="top-text" style="margin-bottom: 20px">
  20. <span v-if="subscribe == '报名失败详情'">
  21. <template v-if="memberType == 'Admin'"> 共有{{ total }}人名失败 </template>
  22. <template v-else-if="memberType == 'Sale'"> 共有{{ total }}名失败,其中本人名下客户{{ myTotal }}人 </template>
  23. <template v-else> 共有{{ total }}名失败,其中本组名下客户{{ myTotal }}人 </template>
  24. </span>
  25. <span v-else-if="subscribe == '预约外呼详情' || subscribe == '报名详情' || Teleconference">
  26. <template v-if="memberType == 'Admin'"> 共有{{ total }}人{{ AppointmentCall ? "预约外呼" : "报名" }} </template>
  27. <template v-else-if="memberType == 'Sale'"> 共有{{ total }}人{{ AppointmentCall ? "预约外呼" : "报名" }},其中本人名下客户{{ myTotal }}人 </template>
  28. <template v-else> 共有{{ total }}人{{ AppointmentCall ? "预约外呼" : "报名" }},其中本组名下客户{{ myTotal }}人 </template>
  29. </span>
  30. </div>
  31. <div class="table-box">
  32. <el-table height="400px" :data="dataList" border style="width: 100%">
  33. <el-table-column min-width="80" align="center" prop="RealName" key="name" label="姓名"></el-table-column>
  34. <el-table-column v-if="isMobileShow" min-width="115" align="center" prop="Mobile" key="mobile" label="手机号"></el-table-column>
  35. <el-table-column v-if="isOutboundMobileShow" min-width="140" align="center" key="outboundMobile" label="外呼号码">
  36. <template slot-scope="scope">
  37. <span>{{ scope.row.OutboundMobile }}</span>
  38. <img @click="modification(scope.row.Id, scope.row.OutboundMobile)" :src="$icons.amend" style="color: #fff; width: 12px; height: 12px; margin-left: 5px; vertical-align: middle" />
  39. </template>
  40. </el-table-column>
  41. <el-table-column min-width="135" align="center" prop="CompanyName" key="company" label="公司名称"></el-table-column>
  42. <el-table-column min-width="110" align="center" prop="SellerName" key="seller" label="所属销售"></el-table-column>
  43. <el-table-column v-if="isSignupTypeShow" min-width="110" key="meeting" align="center" label="参会方式">
  44. <template slot-scope="{ row }">
  45. <span>
  46. {{ row.SignupType == 1 ? "预约外呼" : row.SignupType == 2 ? "自主拨入" : row.SignupType == 4 ? "自主入会" : "--" }}
  47. </span>
  48. </template>
  49. </el-table-column>
  50. <!-- <el-table-column v-if="subscribe !== '报名失败详情' && Teleconference && isLimitPeople == 0" align="center" prop="CreateTime" key="create" min-width="160" label="预约时间"></el-table-column> -->
  51. <el-table-column prop="CreateTime" key="createTime" align="center" min-width="160" label="报名时间"></el-table-column>
  52. <el-table-column v-if="subscribe == '报名失败详情'" align="center" prop="" key="fail" label="失败原因">
  53. <template slot-scope="scope">
  54. <span>{{ scope.row.FailType == 1 ? "总人数已满" : scope.row.FailType == 2 ? "单机构超限制" : scope.row.FailType == 3 ? "爽约次数超限" : "" }}</span>
  55. </template>
  56. </el-table-column>
  57. <el-table-column v-if="subscribe == '报名失败详情' && Teleconference && isLimitPeople == 1" key="callopen" min-width="330" align="center" prop="" label="操作">
  58. <template slot-scope="scope">
  59. <el-radio-group v-model="scope.row.CallOperation">
  60. <el-radio :disabled="isFullNum" v-for="item in radioArr" :key="item.id" :label="item.id" @change="redioChange(item.id, scope.row.Id, scope.row)">{{ item.name }}</el-radio>
  61. </el-radio-group>
  62. </template>
  63. </el-table-column>
  64. <el-table-column v-if="excelType == 'YiDong'" align="center" prop="" key="YiDong" label="操作">
  65. <template slot-scope="{ row }">
  66. <span :style="yidongStyle(row)">{{ yidongStatus(row) }}</span>
  67. </template>
  68. </el-table-column>
  69. <el-table-column v-if="isCancelApply" min-width="135" align="center" prop="" key="cz1" label="操作">
  70. <template slot-scope="scope">
  71. <span class="editsty" @click="cancelApply(scope.row, 0)">取消报名</span>
  72. </template>
  73. </el-table-column>
  74. <el-table-column
  75. min-width="215"
  76. key="salonopen"
  77. v-if="subscribe == '报名失败详情' && ((Teleconference && isLimitPeople == 0) || AppointmentCall || excelType == 'ExpertSalon' || excelType == 'OfflineResearch')"
  78. align="center"
  79. prop=""
  80. label="操作"
  81. >
  82. <template slot-scope="scope">
  83. <el-switch :disabled="isFullNum" @change="switchChange(scope.row)" v-model="scope.row.SalonOperation" active-text="加入报名" inactive-text="限制报名"> </el-switch>
  84. </template>
  85. </el-table-column>
  86. </el-table>
  87. </div>
  88. </div>
  89. <div slot="footer" class="dialog-footer">
  90. <div style="margin: 10px 0" v-if="subscribe !== '报名失败详情' && subscribe !== '预约外呼详情'">
  91. <span style="margin-left: 30px">
  92. <el-button type="primary" v-if="AppointmentCall || this.excelType == 'CClass'|| this.excelType == 'Teleconference'" @click="appointmentCallDownloadHandler">下载名单</el-button>
  93. <a :href="exportUser" download v-else>
  94. <el-button type="primary">下载名单</el-button>
  95. </a>
  96. </span>
  97. <el-button style="margin-left: 30px" v-if="subscribe == '预约外呼详情' || (Teleconference && subscribe !== '报名失败详情')" type="primary" plain @click="okBtn">取消</el-button>
  98. <el-button v-else style="margin-left: 30px" type="primary" plain @click="okBtn">知道了</el-button>
  99. </div>
  100. <div v-if="subscribe == '报名失败详情'">
  101. <el-button style="margin: 10px 0" type="primary" @click="okBtn">知道了</el-button>
  102. </div>
  103. </div>
  104. </el-dialog>
  105. <edit-mobile :editMobileDialogVisible.sync="editMobileDialogVisible" :editMobileId="editMobileId" :outboundMobile="outboundMobile" />
  106. <el-dialog v-dialogDrag width="390px" title="下载名单" :append-to-body="true" :visible.sync="isNameListDownloadShow" :modal-append-to-body="false" @close="isNameListDownloadShow = false">
  107. <div>
  108. <el-select style="width: 100%" v-model="downloadTypeName" placeholder="请选择">
  109. <el-option v-for="item in nameListDownload" :key="item.value" :label="item.type" :value="item.value"> </el-option>
  110. </el-select>
  111. </div>
  112. <div style="display: flex; justify-content: center; margin: 30px 0 20px">
  113. <el-button type="primary" @click="handleConfirmDownload">确定</el-button>
  114. <el-button type="primary" plain @click="isNameListDownloadShow = false">取消</el-button>
  115. </div>
  116. </el-dialog>
  117. </div>
  118. </template>
  119. <script>
  120. import { raiInterface } from "@/api/api.js";
  121. import EditMobile from "../editMobile.vue";
  122. import { NameListDownload } from "./applyTableColums";
  123. export default {
  124. name: "",
  125. components: { EditMobile },
  126. props: {
  127. particularsDialogVisible: {
  128. type: Boolean,
  129. default: false,
  130. },
  131. subscribe: {
  132. type: String,
  133. default: "报名详情",
  134. },
  135. dialogVisibleId: {
  136. type: Number,
  137. },
  138. },
  139. data() {
  140. return {
  141. page_no: 1,
  142. PageSize: 10,
  143. dataList: [], //表格
  144. value1: true,
  145. radioArr: [
  146. {
  147. name: "限制报名",
  148. id: 3,
  149. },
  150. {
  151. name: "预约外呼",
  152. id: 1,
  153. },
  154. {
  155. name: "自主拨入",
  156. id: 2,
  157. },
  158. ],
  159. excelType: "", //下载类型
  160. excelId: "", //下载的id
  161. total: "", //条数
  162. myTotal: "", //条数
  163. isLimitPeople: "", //条数
  164. memberType: "", //
  165. editMobileDialogVisible: false, //
  166. editMobileId: "", //
  167. outboundMobile: "",
  168. isFullNum: false, //报名人数是否已满
  169. isNameListDownloadShow: false, //下载名单弹框
  170. downloadTypeName: 0,
  171. isYidongConduct: false, // 是否是易懂
  172. };
  173. },
  174. computed: {
  175. // 下载
  176. exportUser() {
  177. if (this.Teleconference || this.subscribe == "预约外呼详情") {
  178. return process.env.API_ROOT + "/cygx/activitySignup/callExport?ActivityId=" + this.excelId + "&" + localStorage.getItem("auth") || "";
  179. } else {
  180. return process.env.API_ROOT + "/cygx/activitySignup/signupFailExport?ActivityId=" + this.excelId + "&" + localStorage.getItem("auth") || "";
  181. }
  182. },
  183. // 手机号是否展示
  184. isMobileShow() {
  185. return this.AppointmentCall || this.Teleconference || this.excelType == "YiDong" || this.isYidongConduct || this.excelType == "OfflineResearch";
  186. },
  187. // 预约外呼是否展示
  188. isOutboundMobileShow() {
  189. return (this.AppointmentCall || this.Teleconference || this.isYidongConduct || this.excelType == "OfflineResearch") && this.isCancelApply;
  190. },
  191. // 是否展示参会方式
  192. isSignupTypeShow() {
  193. return (this.Teleconference || this.AppointmentCall || this.isYidongConduct || this.excelType == "OfflineResearch") && this.subscribe == "报名详情";
  194. },
  195. isCancelApply() {
  196. return this.subscribe !== "报名失败详情";
  197. },
  198. nameListDownload() {
  199. return NameListDownload;
  200. },
  201. Teleconference() {
  202. return this.excelType == "Teleconference";
  203. },
  204. AppointmentCall() {
  205. return this.excelType == "AppointmentCall";
  206. },
  207. },
  208. watch: {
  209. particularsDialogVisible() {
  210. if (this.particularsDialogVisible) {
  211. if (this.subscribe == "报名失败详情") {
  212. this.dataList = [];
  213. this.salonFailSignupList();
  214. } else {
  215. this.dataList = [];
  216. this.getsDataList();
  217. }
  218. }
  219. },
  220. },
  221. created() {},
  222. mounted() {},
  223. methods: {
  224. // 关闭弹框
  225. okBtn() {
  226. this.$parent.particularsDialogVisible = false;
  227. },
  228. //列表表格
  229. getsDataList() {
  230. raiInterface
  231. .appointmentList({
  232. ActivityId: this.dialogVisibleId,
  233. })
  234. .then((res) => {
  235. if (res.Ret !== 200) return;
  236. this.excelType = res.Data.ExcelType;
  237. this.excelId = res.Data.ActivityId;
  238. this.total = res.Data.Total;
  239. this.myTotal = res.Data.MyTotal;
  240. this.isLimitPeople = res.Data.IsLimitPeople;
  241. this.memberType = res.Data.MemberType;
  242. this.isFullNum = res.Data.IsFull;
  243. this.isYidongConduct = res.Data.IsYidongConduct == 1 ? true : false;
  244. this.$nextTick(() => {
  245. this.dataList = res.Data.List;
  246. });
  247. });
  248. },
  249. // 报名失败的列表
  250. salonFailSignupList() {
  251. raiInterface
  252. .salonFailSignupList({
  253. ActivityId: this.dialogVisibleId,
  254. })
  255. .then((res) => {
  256. if (res.Ret !== 200) return;
  257. this.excelType = res.Data.ExcelType;
  258. this.excelId = res.Data.ActivityId;
  259. this.total = res.Data.Total;
  260. this.myTotal = res.Data.MyTotal;
  261. this.isLimitPeople = res.Data.IsLimitPeople;
  262. this.memberType = res.Data.MemberType;
  263. this.isFullNum = res.Data.IsFull;
  264. this.isYidongConduct = res.Data.IsYidongConduct == 1 ? true : false;
  265. this.$nextTick(() => {
  266. this.dataList = res.Data.List;
  267. });
  268. });
  269. },
  270. // 报名方式的选择
  271. redioChange(name, id, row) {
  272. raiInterface
  273. .callSignupEdit({
  274. Id: id,
  275. OperationStatus: name,
  276. })
  277. .then((res) => {
  278. if (res.Ret !== 200) return;
  279. this.$message.success("操作成功");
  280. });
  281. },
  282. switchChange(item) {
  283. raiInterface
  284. .salonSignupEdit({
  285. Id: item.Id,
  286. })
  287. .then((res) => {
  288. if (res.Ret === 200) {
  289. this.$message.success("操作成功");
  290. this.$parent.getsDataList();
  291. } else {
  292. item.SalonOperation = !item.SalonOperation;
  293. }
  294. });
  295. },
  296. // 点击了修改预约外呼
  297. modification(id, value) {
  298. this.editMobileDialogVisible = true;
  299. this.editMobileId = id;
  300. this.outboundMobile = value;
  301. },
  302. //取消报名
  303. cancelApply(item, num) {
  304. if (num == 1) {
  305. const str = item.ActivityTime.replace(/-/g, "/");
  306. const date = new Date(str);
  307. const times = date.getTime();
  308. const num = new Date().getTime();
  309. if (times - num <= 3600000) return this.$message.error("外呼名单已发送专家组,请联系专家组取消");
  310. }
  311. let str = num == 1 ? "外呼" : "报名";
  312. this.$confirm(`确定要取消该用户的${str}吗?`, `取消${str}`, {
  313. confirmButtonText: "是",
  314. cancelButtonText: "否",
  315. type: "warning",
  316. })
  317. .then(async () => {
  318. const res = await raiInterface.activitySignupApply({
  319. SignupId: item.Id,
  320. CancelClass: num,
  321. });
  322. console.log(res);
  323. if (res.Ret !== 200) return;
  324. this.$message({
  325. type: "success",
  326. message: `取消${str}成功!`,
  327. });
  328. this.getsDataList();
  329. this.$parent.getsDataList();
  330. })
  331. .catch(() => {
  332. this.$message({
  333. type: "info",
  334. message: "已取消操作",
  335. });
  336. });
  337. },
  338. //文字显示
  339. yidongStatus(row) {
  340. let str = row.YidongExamineStatus == 0 ? "待审核" : row.YidongExamineStatus == 1 ? "审核通过" : "未通过";
  341. return str;
  342. },
  343. yidongStyle(row) {
  344. const style = row.YidongExamineStatus == 0 ? "color: #3385FF" : row.YidongExamineStatus == 1 ? "color: #07C635" : "color: #D7584F";
  345. return style;
  346. },
  347. // 专家/分析师电话会 下载名单 弹框
  348. appointmentCallDownloadHandler() {
  349. this.downloadTypeName = 0;
  350. this.isNameListDownloadShow = true;
  351. },
  352. // 专家/分析师电话会 下载名单 确定事件
  353. handleConfirmDownload() {
  354. let url = process.env.API_ROOT + "/cygx/activitySignup/signupFailExport?ActivityId=" + this.excelId + "&ExcelType=" + this.downloadTypeName + "&" + localStorage.getItem("auth") || "";
  355. let a = document.createElement("a"); // 创建a标签
  356. a.href = url; // 设置下载地址
  357. a.download = ""; // 设置下载文件名
  358. a.click();
  359. this.isNameListDownloadShow = false;
  360. this.downloadTypeName = 0;
  361. },
  362. },
  363. };
  364. </script>
  365. <style lang="less">
  366. .container-particulars {
  367. .table-box {
  368. margin: 20px auto;
  369. }
  370. .top-text {
  371. display: flex;
  372. align-items: center;
  373. div {
  374. margin-left: 20px;
  375. }
  376. }
  377. .el-radio {
  378. margin-right: 15px !important;
  379. }
  380. .el-switch__label {
  381. color: #606266;
  382. font-size: 14px;
  383. font-weight: 400;
  384. }
  385. .is-active {
  386. color: #409eff !important;
  387. }
  388. .el-radio__label {
  389. font-weight: 400;
  390. }
  391. }
  392. </style>