raiAllocationPage.vue 8.5 KB

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