raiAllocationPage.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <div class="container rai-allocation-page">
  3. <div class="dataReport-top">
  4. <a :href="exportExcel" download>
  5. <button class="button-sty act">导出EXCEL</button>
  6. </a>
  7. <button :class="['button-sty', { act: filterObj.month === item.label }]" v-for="item in monthLabel" @click="toggleMonth(item.label)" :key="item.label">
  8. {{ item.label }}
  9. </button>
  10. <date-picker v-model="filterObj.date" type="date" range value-type="format" placeholder="自定义时间段" clearable :editable="false" :disabled-date="disabledBeforeToday" @change="dateChange" />
  11. <el-input placeholder="请输入客户名称" v-model.trim="searchVal" style="width: 400px; margin-left: auto" @input="handleSearch" clearable>
  12. <i slot="prefix" class="el-input__icon el-icon-search"></i>
  13. </el-input>
  14. </div>
  15. <el-card style="margin-top: 20px">
  16. <div style="margin-bottom: 30px">
  17. <el-select v-model="filterObj.type" placeholder="转正类型" style="width: 230px; margin-right: 20px" clearable @change="changeFilter">
  18. <el-option v-for="item in typeArr" :key="item" :label="item.label" :value="item.value"> </el-option>
  19. </el-select>
  20. <el-select v-model="filterObj.contractType" placeholder="合同类型" style="width: 230px; margin-right: 20px" clearable @change="changeFilter">
  21. <el-option v-for="item in contractTypeArr" :key="item" :label="item.label" :value="item.value"> </el-option>
  22. </el-select>
  23. <el-cascader
  24. v-model="filterObj.sale"
  25. placeholder="请选择销售"
  26. style="width: 230px; margin-right: 20px"
  27. :options="salesArr"
  28. :props="defaultSalesProps"
  29. :show-all-levels="false"
  30. collapse-tags
  31. clearable
  32. filterable
  33. @change="changeFilter"
  34. >
  35. </el-cascader>
  36. <el-select v-model="filterObj.status" placeholder="派点状态" style="width: 230px; margin-right: 20px" clearable @change="changeFilter">
  37. <el-option v-for="item in typeArrStatus" :key="item" :label="item.label" :value="item.value"> </el-option>
  38. </el-select>
  39. </div>
  40. <allocation-lable :tableList="tableList" @isPreviewHistoryDetail="isPreviewHistoryDetail" @allocationDetailList="allocationDetailList" @allocationDetail="allocationDetail" />
  41. <el-col :span="24" class="toolbar">
  42. <m-page :total="total" :page_no="page_no" :pageSize="10" @handleCurrentChange="handleCurrentChange" />
  43. </el-col>
  44. </el-card>
  45. <allocation-number :allocationVisible.sync="allocationVisible" :allocationForm.sync="allocationForm" />
  46. <allocation-detail @allocationDetailList="allocationDetailList" :allocationDetailVisible.sync="allocationDetailVisible" :allocationDetailForm.sync="allocationDetailForm" />
  47. <rai-history-contract :isPreview.sync="isPreview" :dealList.sync="dealList" />
  48. </div>
  49. </template>
  50. <script>
  51. import { dataMainInterface, customInterence, contractInterface } from "@/api/api.js";
  52. import AllocationLable from "./components/allocationLable.vue";
  53. import AllocationNumber from "./components/allocationNumber.vue";
  54. import AllocationDetail from "./components/allocationDetail.vue";
  55. import mPage from "@/components/mPage.vue";
  56. import RaiHistoryContract from "./components/raiHistoryContract.vue";
  57. var moment = require("moment");
  58. moment().format();
  59. export default {
  60. name: "",
  61. components: { AllocationLable, AllocationNumber, AllocationDetail, mPage, RaiHistoryContract },
  62. props: {},
  63. data() {
  64. return {
  65. /* 筛选条件 */
  66. filterObj: {
  67. month: "",
  68. date: [],
  69. type: "",
  70. sale: "",
  71. area: "",
  72. status: "",
  73. contractType: "",
  74. },
  75. monthLabel: [
  76. {
  77. label: "近1个月",
  78. },
  79. {
  80. label: "近2个月",
  81. },
  82. {
  83. label: "近3个月",
  84. },
  85. ],
  86. searchVal: "",
  87. typeArr: [
  88. {
  89. value: "非标",
  90. label: "非标合同",
  91. },
  92. {
  93. value: "标准",
  94. label: "标准合同",
  95. },
  96. ],
  97. typeArrStatus: [
  98. {
  99. value: "0",
  100. label: "未派点",
  101. },
  102. {
  103. value: "1",
  104. label: "已派点",
  105. },
  106. ],
  107. salesArr: [], //销售列表
  108. contractTypeArr: [
  109. {
  110. value: "新签合同",
  111. label: "新签合同",
  112. },
  113. {
  114. value: "续约合同",
  115. label: "续约合同",
  116. },
  117. {
  118. value: "补充协议",
  119. label: "补充协议",
  120. },
  121. ], // 合同类型
  122. statusArr: [], // 派点状态
  123. defaultSalesProps: {
  124. multiple: true,
  125. label: "RealName",
  126. children: "ChildrenList",
  127. value: "AdminId",
  128. }, //销售级联配置
  129. tableList: [],
  130. allocationVisible: false, // 派点
  131. allocationForm: {}, // 派点
  132. allocationDetailVisible: false, // 派点详情
  133. allocationDetailForm: {}, // 派点详情
  134. page_no: 1,
  135. total: 0, //条数
  136. PageSize: 10, //每页显示几条
  137. isPreview: false,
  138. dealList: [],
  139. };
  140. },
  141. computed: {
  142. exportExcel() {
  143. let baseUrl = process.env.API_ROOT + "/cygx/allocation/company_contract_list";
  144. let token = localStorage.getItem("auth") || "";
  145. let paramStr = "";
  146. let salesArr = [];
  147. if (this.filterObj.sale.length) {
  148. salesArr = this.filterObj.sale.map((item) => {
  149. return item[item.length - 1];
  150. });
  151. }
  152. let obj = {
  153. IsExport: true,
  154. FormalType: this.filterObj.type,
  155. ContractType: this.filterObj.contractType,
  156. PageSize: this.PageSize,
  157. CurrentIndex: this.page_no,
  158. Keyword: this.searchVal,
  159. AdminId: salesArr.join(","),
  160. IsAllocation: this.filterObj.status,
  161. StartDate: this.filterObj.date[0] ? this.filterObj.date[0] : "",
  162. EndDate: this.filterObj.date[1] ? this.filterObj.date[1] : "",
  163. };
  164. for (let key in obj) {
  165. paramStr = `${paramStr}&${key}=${obj[key]}`;
  166. }
  167. return `${baseUrl}?${token}${paramStr}`;
  168. },
  169. },
  170. watch: {},
  171. created() {},
  172. mounted() {
  173. this.getSale();
  174. this.getTableData();
  175. },
  176. methods: {
  177. /* 切换月份 */
  178. toggleMonth(label) {
  179. this.filterObj.month = label;
  180. let days = label == "近1个月" ? 1 : label == "近2个月" ? 2 : label == "近3个月" ? 3 : 0;
  181. this.filterDate(days);
  182. },
  183. /* 获取近几个月的日期范围 */
  184. filterDate(month) {
  185. if (month) {
  186. let date_now = moment().format("YYYY-MM-DD");
  187. let date_after = moment().add(-month, "M").format("YYYY-MM-DD");
  188. let date = [date_after, date_now];
  189. this.start_date = date_now;
  190. this.end_date = date_after;
  191. this.filterObj.date = date;
  192. this.page_no = 1;
  193. this.searchVal = "";
  194. this.getTableData();
  195. }
  196. },
  197. /* 获取销售 */
  198. getSale() {
  199. customInterence.getSale().then((res) => {
  200. if (res.Ret === 200) {
  201. this.salesArr = res.Data.List;
  202. }
  203. });
  204. },
  205. async getTableData() {
  206. let salesArr = [];
  207. if (this.filterObj.sale.length) {
  208. salesArr = this.filterObj.sale.map((item) => {
  209. return item[item.length - 1];
  210. });
  211. }
  212. const res = await contractInterface.getAllocationContract({
  213. FormalType: this.filterObj.type,
  214. ContractType: this.filterObj.contractType,
  215. PageSize: this.PageSize,
  216. CurrentIndex: this.page_no,
  217. Keyword: this.searchVal,
  218. AdminId: salesArr.join(","),
  219. IsAllocation: this.filterObj.status,
  220. StartDate: this.filterObj.date[0] ? this.filterObj.date[0] : "",
  221. EndDate: this.filterObj.date[1] ? this.filterObj.date[1] : "",
  222. });
  223. if (res.Ret === 200) {
  224. this.tableList = res.Data.List;
  225. this.total = res.Data.Paging.Totals;
  226. }
  227. },
  228. changeFilter() {
  229. this.page_no = 1;
  230. this.getTableData();
  231. },
  232. handleSearch() {
  233. this.getTableData();
  234. },
  235. //分页
  236. handleCurrentChange(page) {
  237. this.page_no = page;
  238. this.getTableData();
  239. },
  240. // 非标准预览
  241. isPreviewHistoryDetail(res) {
  242. this.isPreview = true;
  243. this.dealList = res.Data.List;
  244. },
  245. // 派点
  246. allocationDetailList(item) {
  247. this.allocationForm = item;
  248. this.allocationVisible = true;
  249. },
  250. // 派点详情
  251. allocationDetail(item) {
  252. this.allocationDetailVisible = true;
  253. this.allocationDetailForm = item;
  254. },
  255. /* 选择日期 */
  256. dateChange(e) {
  257. this.page_no = 1;
  258. this.getTableData();
  259. },
  260. },
  261. };
  262. </script>
  263. <style scoped lang="scss">
  264. .rai-allocation-page {
  265. .dataReport-top {
  266. display: flex;
  267. align-items: center;
  268. border: 1px solid #ececec;
  269. padding: 20px 30px;
  270. background: #fff;
  271. border-radius: 4px;
  272. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  273. .button-sty {
  274. margin-right: 20px;
  275. border: none;
  276. padding: 6px 12px;
  277. background: #e0eefd;
  278. color: #2d8cf0;
  279. cursor: pointer;
  280. border-radius: 4px;
  281. &.act {
  282. background: #409eff;
  283. color: #fff;
  284. }
  285. }
  286. }
  287. }
  288. </style>