equityServiceStatistics.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <template>
  2. <div class="dataReport-service-container">
  3. <el-card>
  4. <el-cascader
  5. v-model="filterObj.sale"
  6. placeholder="请选择销售"
  7. style="width: 230px; margin-right: 10px"
  8. :options="salesArr"
  9. :props="defaultSalesProps"
  10. :show-all-levels="false"
  11. collapse-tags
  12. clearable
  13. filterable
  14. @change="changeFilter"
  15. >
  16. </el-cascader>
  17. <el-cascader
  18. v-model="filterObj.serveTypeId"
  19. placeholder="请选择销售"
  20. style="width: 230px; margin-right: 10px"
  21. :options="customSellerList"
  22. :props="defaultSalesProps"
  23. :show-all-levels="false"
  24. collapse-tags
  25. clearable
  26. filterable
  27. @change="changeFilter"
  28. >
  29. </el-cascader>
  30. <!-- <el-select clearable multiple v-model="filterObj.serveTypeId" placeholder="请选择咨询销售" style="width: 230px; margin-right: 10px" @change="changeFilter">
  31. <el-option v-for="item in customSellerList" :key="item.AdminId" :label="item.RealName" :value="item.AdminId"> </el-option>
  32. </el-select> -->
  33. <el-select clearable v-model="filterObj.status" placeholder="客户状态" style="width: 230px; margin-right: 10px" @change="changeFilter">
  34. <el-option v-for="item in statusOptions" :key="item.value" :label="item.label" :value="item.value"> </el-option>
  35. </el-select>
  36. <el-select clearable v-model="filterObj.serviceType" placeholder="服务类型" style="width: 230px; margin-right: 10px" @change="changeFilter">
  37. <el-option v-for="item in serviceTypeOptions" :key="item.ServeTypeId" :label="item.ServeTypeName" :value="item.ServeTypeId"> </el-option>
  38. </el-select>
  39. <el-select
  40. v-model="filterObj.lable"
  41. clearable
  42. filterable
  43. remote
  44. reserve-keyword
  45. placeholder="请输入服务主题标签"
  46. :remote-method="remoteMethod"
  47. style="width: 230px; margin-right: 10px"
  48. @change="selectLableHandler"
  49. >
  50. <el-option v-for="item in lableOptions" :key="item.Md5Key" :label="item.TagName" :value="item.Md5Key"> </el-option>
  51. </el-select>
  52. <el-input placeholder="请输入客户名称" v-model="searchVal" style="width: 230px; margin-right: 10px" @input="handleSearch" clearable>
  53. <i slot="prefix" class="el-input__icon el-icon-search"></i>
  54. </el-input>
  55. <a :href="exportExcel" download>
  56. <el-button type="primary">下载</el-button>
  57. </a>
  58. </el-card>
  59. <el-card style="margin-top: 20px">
  60. <el-table :data="tableData" border style="width: 100%" @sort-change="sortChangeHandle">
  61. <el-table-column align="center" prop="CompanyName" label="客户名称" width="180">
  62. <template slot-scope="{ row }">
  63. <el-tooltip effect="dark" placement="top-start" content="过去4周,kp均未覆盖服务" v-if="row.IsRed">
  64. <span class="deletesty" @click="goDetail(row)">{{ row.CompanyName }}</span>
  65. </el-tooltip>
  66. <span v-else class="editsty" @click="goDetail(row)">{{ row.CompanyName }}</span>
  67. </template>
  68. </el-table-column>
  69. <el-table-column align="center" prop="ServeCoverageRate" width="180">
  70. <template slot="header" slot-scope="{}">
  71. <span>近4周平均服务覆盖率</span>
  72. <el-tooltip effect="dark" placement="top-start">
  73. <div slot="content">
  74. <p>近4周服务覆盖率的平均值</p>
  75. </div>
  76. <i class="el-icon-warning"></i>
  77. </el-tooltip>
  78. </template>
  79. <template slot-scope="{ row }">
  80. <span @click="clickCoverage(row)" class="editsty">{{ row.ServeCoverageRate }}</span>
  81. </template>
  82. </el-table-column>
  83. <el-table-column align="center" prop="Status" label="当前状态" width="80"> </el-table-column>
  84. <el-table-column align="center" prop="SellerName" label="销售" width="100"> </el-table-column>
  85. <el-table-column align="center" prop="ShareSeller" label="服务组销售" width="100"> </el-table-column>
  86. <el-table-column align="center" prop="StartDate" label="合同期限" width="180">
  87. <template slot-scope="{ row }">
  88. <span>{{ row.StartDate }}~{{ row.EndDate }}</span>
  89. </template>
  90. </el-table-column>
  91. <el-table-column align="center" prop="Money" sortable label="合同金额" width="110"> </el-table-column>
  92. <el-table-column align="center" prop="PermissionName" label="签约套餐"> </el-table-column>
  93. <el-table-column align="center" prop="ThisWeekAmount" width="118">
  94. <template slot="header" slot-scope="{}">
  95. <p>本周服务量</p>
  96. <p>{{ getWeekRange(0) }}</p>
  97. </template>
  98. <template slot-scope="{ row }">
  99. <span @click="billClickHandler(row, 1)" class="editsty">{{ row.ThisWeekAmount }}</span>
  100. </template>
  101. </el-table-column>
  102. <el-table-column align="center" prop="LastWeekAmount" width="118">
  103. <template slot="header" slot-scope="{}">
  104. <p>上周服务量</p>
  105. <p>{{ getWeekRange(-1) }}</p>
  106. </template>
  107. <template slot-scope="{ row }">
  108. <span @click="billClickHandler(row, 2)" class="editsty">{{ row.LastWeekAmount }}</span>
  109. </template>
  110. </el-table-column>
  111. <el-table-column align="center" prop="TwoWeekAmount" width="118">
  112. <template slot="header" slot-scope="{}">
  113. <p>上上周服务量</p>
  114. <p>{{ getWeekRange(-2) }}</p>
  115. </template>
  116. <template slot-scope="{ row }">
  117. <span @click="billClickHandler(row, 3)" class="editsty">{{ row.TwoWeekAmount }}</span>
  118. </template>
  119. </el-table-column>
  120. <el-table-column align="center" prop="ThreeWeekAmount" width="118">
  121. <template slot="header" slot-scope="{}">
  122. <p>上三周服务量</p>
  123. <p>{{ getWeekRange(-3) }}</p>
  124. </template>
  125. <template slot-scope="{ row }">
  126. <span @click="billClickHandler(row, 4)" class="editsty">{{ row.ThreeWeekAmount }}</span>
  127. </template>
  128. </el-table-column>
  129. </el-table>
  130. <!-- 页数选择器 -->
  131. <m-page style="margin: 20px 0" :page_no="page_no" :pageSize="pageSize" :total="total" @handleCurrentChange="pageChange" />
  132. </el-card>
  133. <!-- 覆盖率弹框 -->
  134. <coverage-rate-dlg :isCoverageRateShow.sync="isCoverageRateShow" :dlgForm.sync="dlgForm" />
  135. <!-- 服务明细- -->
  136. <service-details-dlg
  137. :isServiceDetailsShow.sync="isServiceDetailsShow"
  138. :dlgForm.sync="dlgForm"
  139. :selectForm="{
  140. TagType: this.tagType,
  141. TagId: this.tagId,
  142. ServeTypeId: this.filterObj.serviceType,
  143. WhatWeek: this.whatWeek,
  144. }"
  145. />
  146. </div>
  147. </template>
  148. <script>
  149. import { dataMainInterface, customInterence } from "@/api/api.js";
  150. import CoverageRateDlg from "./components/CoverageRateDlg.vue";
  151. import ServiceDetailsDlg from "./components/ServiceDetailsDlg.vue";
  152. import mPage from "@/components/mPage.vue";
  153. export default {
  154. name: "",
  155. components: { CoverageRateDlg, ServiceDetailsDlg, mPage },
  156. props: {},
  157. data() {
  158. return {
  159. page_no: 1,
  160. total: 0,
  161. pageSize: 10,
  162. salesArr: [], //销售列表
  163. tableData: [],
  164. defaultSalesProps: {
  165. multiple: true,
  166. label: "RealName",
  167. children: "ChildrenList",
  168. value: "AdminId",
  169. }, //销售级联配置
  170. filterObj: {
  171. sale: "",
  172. status: "",
  173. serviceType: "",
  174. lable: "",
  175. ServeTypeId: "",
  176. },
  177. statusOptions: [
  178. { label: "正式客户", value: "正式" },
  179. { label: "未续约客户", value: "未续约" },
  180. ],
  181. serviceTypeOptions: [],
  182. isCoverageRateShow: false, //覆盖率弹框
  183. isServiceDetailsShow: false, //服务明细弹框
  184. dlgForm: {},
  185. sortType: "",
  186. lableOptions: [],
  187. tagType: "",
  188. tagId: "",
  189. whatWeek: "",
  190. customSellerList: [],
  191. searchVal: "", //客户名称
  192. };
  193. },
  194. computed: {
  195. exportExcel() {
  196. let salesArr = [];
  197. if (this.filterObj.sale.length) {
  198. salesArr = this.filterObj.sale.map((item) => {
  199. return item[item.length - 1];
  200. });
  201. }
  202. let SellerIds = [];
  203. if (this.filterObj.serveTypeId && this.filterObj.serveTypeId.length) {
  204. console.log(this.filterObj.serveTypeId);
  205. SellerIds = this.filterObj.serveTypeId.map((item) => {
  206. return item[item.length - 1];
  207. });
  208. }
  209. let baseUrl = process.env.API_ROOT + "/cygx/rai_serve/list";
  210. let token = localStorage.getItem("auth") || "";
  211. let paramStr = "";
  212. let parmsa = {
  213. SellerId: salesArr.join(","),
  214. ShareSellerId: SellerIds.join(","), //共享小时id
  215. ServeTypeId: this.filterObj.serviceType,
  216. TagType: this.tagType,
  217. TagId: this.tagId,
  218. Status: this.filterObj.status,
  219. SortType: this.sortType,
  220. IsExport: true,
  221. KeyWord: this.searchVal,
  222. };
  223. for (let key in parmsa) {
  224. paramStr = `${paramStr}&${key}=${parmsa[key]}`;
  225. }
  226. return `${baseUrl}?${token}${paramStr}`;
  227. },
  228. },
  229. watch: {},
  230. created() {},
  231. mounted() {
  232. this.getSale();
  233. this.getRaiServeTypeList();
  234. this.getDataList();
  235. this.getRaiServeCustomSellerList();
  236. },
  237. methods: {
  238. handleSearch() {
  239. this.page_no = 1;
  240. this.getDataList();
  241. },
  242. /* 获取销售 */
  243. getSale() {
  244. customInterence.getSalesRaiData().then((res) => {
  245. if (res.Ret === 200) {
  246. this.salesArr = res.Data.List;
  247. }
  248. });
  249. },
  250. /* 筛选改变时 */
  251. changeFilter() {
  252. this.page_no = 1;
  253. this.getDataList();
  254. },
  255. // 时间的计算
  256. getWeekRange(offset) {
  257. const now = new Date();
  258. const startOfWeek = new Date(now);
  259. startOfWeek.setDate(now.getDate() - now.getDay() + 1 + offset * 7); // 设置为每周的周一
  260. const endOfWeek = new Date(startOfWeek);
  261. endOfWeek.setDate(startOfWeek.getDate() + 6); // 设置为每周的周日
  262. const formatDate = (date) => {
  263. const year = date.getFullYear();
  264. const month = ("0" + (date.getMonth() + 1)).slice(-2);
  265. const day = ("0" + date.getDate()).slice(-2);
  266. return `${month}-${day}`;
  267. };
  268. return `(${formatDate(startOfWeek)} ~ ${formatDate(endOfWeek)})`;
  269. },
  270. pageChange(page_no) {
  271. this.page_no = page_no;
  272. this.getDataList();
  273. },
  274. // 获取表格数据
  275. async getDataList() {
  276. let salesArr = [];
  277. if (this.filterObj.sale.length) {
  278. salesArr = this.filterObj.sale.map((item) => {
  279. return item[item.length - 1];
  280. });
  281. }
  282. let SellerIds = [];
  283. if (this.filterObj.serveTypeId && this.filterObj.serveTypeId.length) {
  284. console.log(this.filterObj.serveTypeId);
  285. SellerIds = this.filterObj.serveTypeId.map((item) => {
  286. return item[item.length - 1];
  287. });
  288. }
  289. const res = await dataMainInterface.getRaiServeList({
  290. PageSize: this.pageSize,
  291. CurrentIndex: this.page_no,
  292. SellerId: salesArr.join(","),
  293. ShareSellerId: SellerIds.join(","), //共享小时id
  294. ServeTypeId: this.filterObj.serviceType,
  295. TagType: this.tagType,
  296. TagId: this.tagId,
  297. Status: this.filterObj.status,
  298. SortType: this.sortType,
  299. KeyWord: this.searchVal,
  300. });
  301. if (res.Ret === 200) {
  302. this.tableData = res.Data.List || [];
  303. this.total = res.Data.Paging.Totals;
  304. }
  305. },
  306. sortChangeHandle({ column, prop, order }) {
  307. this.sortType = order === "ascending" ? "asc" : order === "descending" ? "desc" : "";
  308. this.page = 1;
  309. this.getDataList();
  310. },
  311. /* 详情页 */
  312. goDetail(item) {
  313. const { href } = this.$router.resolve({
  314. path: "/customDetail",
  315. query: {
  316. id: item.CompanyId,
  317. },
  318. });
  319. window.open(href, "_blank");
  320. },
  321. // 搜索标签
  322. async remoteMethod(query) {
  323. if (query !== "") {
  324. const res = await dataMainInterface.getRaiServeSearchTag({
  325. KeyWord: query,
  326. });
  327. if (res.Ret === 200) {
  328. this.lableOptions = res.Data.List || [];
  329. }
  330. } else {
  331. this.lableOptions;
  332. }
  333. },
  334. // 远程搜索标签
  335. selectLableHandler() {
  336. if (this.filterObj.lable) {
  337. this.lableOptions.forEach((item) => {
  338. if (item.Md5Key === this.filterObj.lable) {
  339. this.tagType = item.TagType;
  340. this.tagId = item.TagId;
  341. }
  342. });
  343. } else {
  344. this.tagType = "";
  345. this.tagId = "";
  346. }
  347. this.changeFilter();
  348. },
  349. // 近四周覆盖率
  350. clickCoverage(item) {
  351. this.isCoverageRateShow = true;
  352. this.dlgForm = item;
  353. },
  354. // 点击了明细
  355. billClickHandler(item, type) {
  356. this.whatWeek = type;
  357. this.isServiceDetailsShow = true;
  358. this.dlgForm = item;
  359. },
  360. // 获取服务类型列表
  361. async getRaiServeTypeList() {
  362. const res = await dataMainInterface.getRaiServeTypeList();
  363. if (res.Ret === 200) {
  364. this.serviceTypeOptions = res.Data.List || [];
  365. }
  366. },
  367. //
  368. async getRaiServeCustomSellerList() {
  369. const res = await dataMainInterface.getRaiServeCustomSellerList();
  370. if (res.Ret === 200) {
  371. this.customSellerList = res.Data || [];
  372. console.log(this.customSellerList, res);
  373. }
  374. },
  375. },
  376. };
  377. </script>
  378. <style scoped lang="scss">
  379. .dataReport-service-container {
  380. }
  381. </style>