barOptionSection.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <template>
  2. <div class="bar-option-wrapper">
  3. <template v-if="dateList.length">
  4. <!-- 排序规则 -->
  5. <div v-if="isBaseBarShow&&chartInfo.ChartType===7">
  6. <div>
  7. <label style="margin-right: 5px;">排序规则</label>
  8. <el-radio-group v-model="sortObj.sort" @change="() => { sortObj.sortIndex= '';changeSort()}">
  9. <el-radio v-for="item in sortRules" :key="item.key" :label="item.key">{{item.name}}</el-radio>
  10. </el-radio-group>
  11. </div>
  12. <el-select
  13. v-model="sortObj.sortIndex"
  14. v-if="sortObj.sort!==0"
  15. clearable
  16. placeholder="请选择日期"
  17. class="sort-date"
  18. style="width: 100%; margin-top: 20px"
  19. @change="changeSort"
  20. >
  21. <el-option
  22. v-for="(item,index) in dateList"
  23. :key="item.key"
  24. :label="item.RealDate||item.Date"
  25. :value="index"
  26. >
  27. </el-option>
  28. </el-select>
  29. </div>
  30. <el-collapse v-model="activeNames" class="target-list">
  31. <el-collapse-item v-for="(item,index) in dateList" :key="item.EdbInfoId">
  32. <template slot="title">
  33. <span class="text_oneLine"> {{setDynamicTitle(item)}}</span>
  34. <i class="el-icon-edit edit-icon" @click.stop="editDate(item,index)"></i>
  35. <i class="el-icon-delete del-icon" @click.stop="removeDate(index)"></i>
  36. </template>
  37. <ul class="setting-cont">
  38. <li v-if="isBaseBarShow">
  39. <el-input
  40. v-model="item.Name"
  41. style="width: 90%"
  42. placeholder="日期别名"
  43. @change="changeOptions"
  44. />
  45. </li>
  46. <li>
  47. <div style="display: flex">
  48. <span style="margin-right: 3px">颜色:</span>
  49. <el-color-picker
  50. v-model="item.Color"
  51. size="mini"
  52. show-alpha
  53. :predefine="predefineColors"
  54. @change="changeOptions"
  55. ></el-color-picker>
  56. </div>
  57. </li>
  58. </ul>
  59. </el-collapse-item>
  60. </el-collapse>
  61. </template>
  62. <div
  63. class="add-cont"
  64. @click="addDateHandle"
  65. v-if="edblist.length"
  66. >
  67. <img
  68. src="~@/assets/img/set_m/add_ico.png"
  69. alt=""
  70. style="width: 16px; height: 16px; margin-right: 10px"
  71. />
  72. <span>添加日期</span>
  73. </div>
  74. <m-dialog
  75. title="添加日期"
  76. :show.sync="dialogForm.show"
  77. width="650px"
  78. >
  79. <div style="padding-left: 50px">
  80. <el-form
  81. :model="dialogForm"
  82. ref="formRef"
  83. label-position="left"
  84. hide-required-asterisk
  85. label-width="80px">
  86. <el-form-item prop="Type" label="添加方式">
  87. <el-select
  88. v-model="dialogForm.Type"
  89. placeholder="请选择添加方式"
  90. style="width:350px;"
  91. >
  92. <el-option v-for="item in dateOptions" :key="item.key" :label="item.label" :value="item.key"/>
  93. </el-select>
  94. </el-form-item>
  95. <el-form-item label="天数" prop="Value" v-if="dialogForm.Type === 2">
  96. <el-input
  97. type="number"
  98. v-model="dialogForm.Value"
  99. placeholder="请输入数字"
  100. style="width:350px;"
  101. />
  102. </el-form-item>
  103. <el-form-item prop="Type" label="选择日期" v-if="dialogForm.Type === 3">
  104. <el-date-picker
  105. v-model="dialogForm.Date"
  106. value-format="yyyy-MM-dd"
  107. type="date"
  108. placeholder="选择日期"
  109. style="width: 350px"
  110. />
  111. </el-form-item>
  112. </el-form>
  113. </div>
  114. <div slot="footer" style="margin-top: 20px;">
  115. <el-button
  116. @click="cancelDialog"
  117. style="width: 132px; height: 40px"
  118. >取消</el-button>
  119. <el-button
  120. @click="saveDate"
  121. type="primary"
  122. style="width: 132px; height: 40px"
  123. >保存</el-button>
  124. </div>
  125. </m-dialog>
  126. </div>
  127. </template>
  128. <script>
  129. import {
  130. defaultOpts
  131. } from '@/utils/defaultOptions';
  132. import mDialog from '@/components/mDialog.vue'
  133. export default {
  134. components: { mDialog },
  135. props: {
  136. edblist: Array,
  137. datedata: Array,
  138. chartInfo: {
  139. type: Object,
  140. default: () => {}
  141. },
  142. initData: {
  143. default: null
  144. }
  145. },
  146. watch: {
  147. datedata(newval) {
  148. this.dateList = newval.map((_,index) => ({
  149. ...this.dateList[index],
  150. Color: _.Color,
  151. RealDate: this.dateList[index].Type === 3 ? this.dateList[index].Date : _.Date,
  152. Data: _.Value,
  153. Name: _.Name
  154. }))
  155. }
  156. },
  157. computed: {
  158. /* 判断路由 图库柱状图还是商品价格图 */
  159. isBaseBarShow() {
  160. const show_path = ['/addchart','/editchart']
  161. return show_path.includes(this.$route.path)
  162. }
  163. },
  164. data() {
  165. return {
  166. activeNames: '',
  167. predefineColors: defaultOpts.colors.slice(0, 2), //定义颜色蓝,红 默认颜色
  168. sortObj: {
  169. sort: 0,
  170. sortIndex: ''
  171. },
  172. dateList: [],
  173. sortRules: [
  174. { key:0,name:'默认' },
  175. { key:2,name:'升序' },
  176. { key:1,name:'降序' },
  177. ],
  178. dateMapLabel: {
  179. 1: '最新日期',
  180. 2: 'N天前',
  181. 3: '固定日期'
  182. },
  183. dateOptions: [
  184. { key: 1,label:'最新日期' },
  185. { key: 2,label:'N天前' },
  186. { key: 3,label:'固定日期' },
  187. ],
  188. dialogForm: {
  189. show: false,
  190. Type: 1,
  191. Value: 0,
  192. Date: ''
  193. },
  194. edit_index: 0,
  195. }
  196. },
  197. methods: {
  198. /* 添加日期 */
  199. addDateHandle() {
  200. if(this.$route.path === '/addCommodityChart' && this.$parent.chartInfo.Source===5 && !this.$parent.profitInfo.list.length) return this.$message.warning('请先设置盘面利润配置')
  201. this.dialogForm.show = true;
  202. },
  203. cancelDialog() {
  204. this.edit_index = 0;
  205. this.dialogForm = {
  206. show: false,
  207. Type: 1,
  208. Value: '',
  209. Date: ''
  210. }
  211. },
  212. /* 日期编辑 */
  213. editDate({Type,Date,Value},index) {
  214. this.edit_index = index + 1;
  215. this.dialogForm = {
  216. show: true,
  217. Type,
  218. Value,
  219. Date
  220. }
  221. },
  222. /* 保存日期push日期数组 */
  223. saveDate() {
  224. const { Type,Value,Date } = this.dialogForm;
  225. if( Type === 2 && !Value) return this.$message.warning('天数不能为空')
  226. if( Type === 3 && !Date) return this.$message.warning('日期不能为空')
  227. if(this.edit_index !== 0) {
  228. //修改
  229. this.dateList[this.edit_index-1].Type = Type;
  230. this.dateList[this.edit_index-1].Value = Number(Value);
  231. this.dateList[this.edit_index-1].Date = Date;
  232. } else {
  233. //添加
  234. let date_item = {
  235. Type,
  236. Name: '',
  237. Value: Number(Value),
  238. Date,
  239. Color: ''
  240. }
  241. this.dateList.push(date_item)
  242. let themeOpt = this.chartInfo.ChartThemeStyle ? JSON.parse(this.chartInfo.ChartThemeStyle) : null;
  243. this.dateList.forEach((item,index) => {
  244. item.Color = item.Color || (themeOpt&&themeOpt.colorsOptions[index]||defaultOpts.colors[index]);
  245. })
  246. }
  247. this.cancelDialog()
  248. this.getBarData()
  249. },
  250. /* 改变排序 */
  251. changeSort() {
  252. if(this.sortObj.sort === 0
  253. || (this.sortObj.sort&&this.sortObj.sortIndex!=='')) {
  254. this.getBarData()
  255. }
  256. },
  257. /* 改变配置重绘 不需要请求接口 */
  258. changeOptions(e,index) {
  259. this.getBarData()
  260. },
  261. /* 根据目前配置获取柱形图数据 */
  262. getBarData() {
  263. this.$emit('getData',{
  264. sort: this.sortObj,
  265. dateList: this.dateList
  266. })
  267. },
  268. /* 日期标题 */
  269. setDynamicTitle({Type,RealDate,Date,Value}) {
  270. switch(Type) {
  271. case 1:
  272. return `${RealDate||''}(最新日期)`
  273. case 2:
  274. return this.isBaseBarShow ? `${RealDate||''}(${Value}天前)` : `${Value}天前`
  275. case 3:
  276. return `${Date}(固定日期)`
  277. }
  278. },
  279. /* 移除日期 */
  280. removeDate(index) {
  281. this.dateList.splice(index,1)
  282. this.getBarData();
  283. },
  284. },
  285. mounted () {
  286. if(this.initData) {
  287. const { DateList,Sort } = this.initData;
  288. this.dateList = this.datedata.map((_,index) => ({
  289. ...DateList[index],
  290. Color: _.Color,
  291. RealDate: DateList[index].Type === 3 ? DateList[index].Date : _.Date,
  292. Data: _.Value,
  293. Name: _.Name
  294. }));
  295. this.sortObj = {
  296. sort: Sort?Sort.Sort:0,
  297. sortIndex: Sort?Sort.DateIndex:''
  298. }
  299. }
  300. }
  301. }
  302. </script>
  303. <style lang="scss" scoped>
  304. .bar-option-wrapper {
  305. color: #606266;
  306. .add-cont {
  307. align-items: center;
  308. margin-top: 20px;
  309. display: flex;
  310. color: #409eff;
  311. font-size: 16px;
  312. cursor: pointer;
  313. }
  314. .target-list {
  315. margin-top: 20px;
  316. }
  317. .edit-icon {
  318. position: absolute;
  319. right: 35px;
  320. font-size: 16px;
  321. color: #409eff;
  322. cursor: pointer;
  323. }
  324. }
  325. </style>
  326. <style lang="scss">
  327. .bar-option-wrapper {
  328. .sort-date .el-input__inner {
  329. padding: 0 15px !important;
  330. height: 40px !important;
  331. }
  332. }
  333. </style>