chartDetail.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. <template>
  2. <div
  3. :class="[
  4. 'chart-position-analysis-page',
  5. isPcShow ? 'chart-position-analysis-page-pc' : '',
  6. ]"
  7. v-loading="pageLoading"
  8. element-loading-text="加载中"
  9. >
  10. <div class="chart-wrap-box">
  11. <div class="wrap-top">
  12. <div>
  13. <el-radio-group
  14. v-model="tabKey"
  15. @change="chartItemInfo = chartListState[tabKey]"
  16. v-show="chartListState.BuyList.List"
  17. >
  18. <el-radio-button
  19. :label="tab.key"
  20. v-for="tab in tabKeys"
  21. :key="tab.key"
  22. >{{ tab.label }}</el-radio-button
  23. >
  24. </el-radio-group>
  25. </div>
  26. <div>
  27. <el-date-picker
  28. v-model="selectDate"
  29. type="date"
  30. placeholder="请选择日期"
  31. value-format="yyyy-MM-dd"
  32. :picker-options="pickerOption"
  33. @change="getInfo"
  34. style="margin-right: 10px"
  35. />
  36. <el-button type="primary" @click="handleDateChange('before')"
  37. >查看前一天</el-button
  38. >
  39. <el-button type="primary" @click="handleDateChange('next')"
  40. >查看后一天</el-button
  41. >
  42. </div>
  43. </div>
  44. <div
  45. class="chart-wrap"
  46. v-if="chartItemInfo && chartListState.BuyList.List"
  47. >
  48. <div class="top-info-box">
  49. <span>{{ chartItemInfo.name }}</span>
  50. <span
  51. ><span style="color: #999; margin-right: 2px">总计 </span
  52. >{{ chartItemInfo.TotalDealValue }}</span
  53. >
  54. <span
  55. ><span style="color: #999; margin-right: 2px">较昨日 </span
  56. >{{ chartItemInfo.TotalDealChange }}</span
  57. >
  58. </div>
  59. <chart-box :keyVal="tabKey" :data="chartItemInfo" />
  60. </div>
  61. </div>
  62. <div class="empty-wrap" v-if="!chartListState.BuyList.List">
  63. <tableNoData text="该日期无数据" />
  64. </div>
  65. </div>
  66. </template>
  67. <script>
  68. import {
  69. apiPositionAnalysisInfo,
  70. apiPositionAnalysisList,
  71. } from "@/api/modules/positionAnalysis";
  72. import chartBox from "./chartBox.vue";
  73. export default {
  74. components: { chartBox },
  75. computed: {
  76. pickerOption() {
  77. let that = this;
  78. let obj = {
  79. // 周六日禁用
  80. disabledDate(t) {
  81. if ([5, 6].includes(that.$moment(t).weekday())) {
  82. return true;
  83. } else {
  84. return false;
  85. }
  86. },
  87. };
  88. return obj;
  89. },
  90. },
  91. watch: {
  92. "$route.query": {
  93. handler(nval) {
  94. this.selectDate = "";
  95. this.getInfo();
  96. },
  97. },
  98. },
  99. data() {
  100. return {
  101. isPcShow: true,
  102. isRefresh: false,
  103. minDate: new Date("2000/01/01"),
  104. currentDate: "", //
  105. selectDate: "",
  106. allClassifyTypeList: [],
  107. pageLoading: false,
  108. chartListState: {
  109. BuyList: {
  110. name: "多单",
  111. labelName: "持多单量",
  112. },
  113. SoldList: {
  114. name: "空单",
  115. labelName: "持空单量",
  116. },
  117. CleanBuyList: {
  118. name: "净多单",
  119. labelName: "净多单量",
  120. },
  121. CleanSoldList: {
  122. name: "净空单",
  123. labelName: "净空单量",
  124. },
  125. },
  126. tabKeys: [
  127. { label: "多单", key: "BuyList" },
  128. { label: "空单", key: "SoldList" },
  129. { label: "净多单", key: "CleanBuyList" },
  130. { label: "净空单", key: "CleanSoldList" },
  131. ],
  132. tabKey: "BuyList",
  133. chartItemInfo: null,
  134. };
  135. },
  136. methods: {
  137. getAllClassifyType() {
  138. apiPositionAnalysisList().then((res) => {
  139. if (res.Ret !== 200) return;
  140. const arr = res.Data || [];
  141. // 将数据展开
  142. arr.forEach((item) => {
  143. item.Items &&
  144. item.Items.forEach((itemC1) => {
  145. itemC1.Items &&
  146. itemC1.Items.forEach((itemC2) => {
  147. this.allClassifyTypeList.push({
  148. exchange: item.Exchange,
  149. classify_name: itemC1.ClassifyName,
  150. classify_type: itemC2.ClassifyType,
  151. });
  152. });
  153. });
  154. });
  155. });
  156. },
  157. handleClassifyTypeChange(type) {
  158. if (!this.allClassifyTypeList.length) return;
  159. const currentExchange = this.$route.query.exchange;
  160. const currentClassifyName = this.$route.query.classify_name;
  161. const currentClassifyType = this.$route.query.classify_type;
  162. // 找index
  163. let indexNum = 0;
  164. this.allClassifyTypeList.forEach((item, index) => {
  165. if (
  166. item.exchange === currentExchange &&
  167. item.classify_name === currentClassifyName &&
  168. item.classify_type === currentClassifyType
  169. )
  170. indexNum = index;
  171. });
  172. // console.log(indexNum);
  173. let obj = {};
  174. if (type === "before") {
  175. obj =
  176. this.allClassifyTypeList[
  177. indexNum === 0 ? this.allClassifyTypeList.length - 1 : indexNum - 1
  178. ];
  179. } else {
  180. obj =
  181. this.allClassifyTypeList[
  182. indexNum === this.allClassifyTypeList.length - 1 ? 0 : indexNum + 1
  183. ];
  184. }
  185. // console.log(obj);
  186. this.$router.replace({
  187. query: {
  188. ...this.$route.query,
  189. exchange: obj.exchange,
  190. classify_name: obj.classify_name,
  191. classify_type: obj.classify_type,
  192. },
  193. });
  194. // window.location.reload();
  195. },
  196. //切换 前一天\后一天 如果遇到周六日则跳过
  197. handleDateChange(type) {
  198. let num = 1;
  199. if (type === "before") {
  200. if (this.$moment(this.selectDate).weekday() === 1) {
  201. //向前一天时 当前为周一则 跳到 上周五
  202. num = 3;
  203. }
  204. this.selectDate = this.$moment(this.selectDate)
  205. .add(-num, "days")
  206. .format("YYYY-MM-DD");
  207. } else {
  208. if (this.$moment(this.selectDate).weekday() === 5) {
  209. //向前一天时 当前为周五则 跳到 下周一
  210. num = 3;
  211. }
  212. this.selectDate = this.$moment(this.selectDate)
  213. .add(num, "days")
  214. .format("YYYY-MM-DD");
  215. }
  216. this.getInfo();
  217. },
  218. async getInfo() {
  219. this.pageLoading = true;
  220. const res = await apiPositionAnalysisInfo({
  221. DataTime: this.selectDate || "",
  222. ClassifyName: this.$route.query.classify_name,
  223. ClassifyType: this.$route.query.classify_type,
  224. Exchange: this.$route.query.exchange,
  225. });
  226. this.pageLoading = false;
  227. if (res.Ret === 200) {
  228. const obj = res.Data || {};
  229. for (let key in this.chartListState) {
  230. this.chartListState[key] = {
  231. ...this.chartListState[key],
  232. ...obj[key],
  233. };
  234. }
  235. this.chartItemInfo = this.chartListState[this.tabKey];
  236. if (res.Data.DataTime) {
  237. this.selectDate = this.$moment(res.Data.DataTime).format(
  238. "YYYY-MM-DD"
  239. );
  240. }
  241. this.$store.commit(
  242. "SET_TITLE",
  243. `${this.$route.query.classify_type} ${this.$moment(
  244. this.selectDate
  245. ).format("YYYYMMDD")}持仓`
  246. );
  247. } else {
  248. // 清空数据
  249. for (let key in this.chartListState) {
  250. this.chartListState[key].List = null;
  251. }
  252. }
  253. },
  254. getHandles(data) {
  255. // 监听选择的日期改变
  256. if (data.opt == "date") {
  257. this.selectDate = data.val;
  258. this.getInfo();
  259. } else if (data.opt === "beforeDate") {
  260. this.handleDateChange("before");
  261. } else if (data.opt === "nextDate") {
  262. this.handleDateChange("next");
  263. } else if (data.opt === "beforeClassifyType") {
  264. this.handleClassifyTypeChange("before");
  265. } else if (data.opt === "nextClassifyType") {
  266. this.handleClassifyTypeChange("next");
  267. }
  268. },
  269. },
  270. mounted() {
  271. this.getAllClassifyType();
  272. this.getInfo();
  273. },
  274. };
  275. </script>
  276. <style lang="scss" scoped>
  277. .chart-position-analysis-page {
  278. padding-bottom: calc(160px + constant(safe-area-inset-bottom));
  279. padding-bottom: calc(160px + env(safe-area-inset-bottom));
  280. }
  281. .chart-wrap {
  282. width: 100%;
  283. margin-bottom: 60px;
  284. .top-info-box {
  285. padding: 0 34px 30px 34px;
  286. text-align: center;
  287. span {
  288. display: inline-block;
  289. margin-right: 50px;
  290. }
  291. }
  292. }
  293. .wrap-top {
  294. display: flex;
  295. justify-content: space-between;
  296. margin-bottom: 20px;
  297. }
  298. .empty-wrap {
  299. text-align: center;
  300. padding: 150px 0;
  301. }
  302. // @media (min-width: 600px){
  303. .chart-position-analysis-page-pc {
  304. padding: 0;
  305. .top-sticky-wrap {
  306. display: none;
  307. }
  308. .bot-fixed-wrap {
  309. display: none;
  310. }
  311. .empty-wrap {
  312. font-size: 16px;
  313. }
  314. .chart-wrap {
  315. margin-bottom: 60px;
  316. .top-info-box {
  317. padding: 0 20px 20px;
  318. text-align: center;
  319. font-size: 20px;
  320. span {
  321. display: inline-block;
  322. margin-right: 30px;
  323. }
  324. }
  325. }
  326. }
  327. // }
  328. </style>