index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
  4. <el-form-item label="保税区">
  5. <el-select v-model="queryParams.cbIdArr" multiple placeholder="请选择保税区">
  6. <el-option
  7. v-for="item in regionList"
  8. :key="item.value"
  9. :label="item.label"
  10. :value="item.value">
  11. </el-option>
  12. </el-select>
  13. </el-form-item>
  14. <el-form-item label="指标名称">
  15. <el-select v-model="queryParams.normFeeId" placeholder="请选择指标名称">
  16. <el-option
  17. v-for="item in normFeelistAll"
  18. :key="item.value"
  19. :label="item.label"
  20. :value="item.value">
  21. </el-option>
  22. </el-select>
  23. </el-form-item>
  24. <el-form-item label="时间类型">
  25. <el-select v-model="queryParams.dateType" placeholder="请选择" clearable filterable class="se" @change="selectChange">
  26. <el-option v-for="t in datelist" :key="t.value" :label="t.label" :value="t.value" />
  27. </el-select>
  28. <el-date-picker v-if="queryParams.dateType == 1" v-model="queryParams.yearVlue" type="year" placeholder="选择年" value-format="yyyy" format="yyyy 年" style="margin-left: 10px;"></el-date-picker>
  29. <el-select v-if="queryParams.dateType == 1" v-model="formatY" placeholder="选择月" clearable filterable class="se" style="margin-left: 10px;">
  30. <el-option v-for="t in 12" :key="t.value" :label="t + '月'" :value="t" />
  31. </el-select>
  32. <el-select v-if="queryParams.dateType == 2" v-model="queryParams.dateValue" placeholder="选择季度" clearable filterable class="se" style="margin-left: 10px;">
  33. <el-option v-for="t in jdlist" :key="t.value" :label="t.label" :value="t.value"/>
  34. </el-select>
  35. <el-date-picker v-if="queryParams.dateType == 3" v-model="queryParams.dateValue" type="year" placeholder="选择年" value-format="yyyy" format="yyyy 年" style="margin-left: 10px;"></el-date-picker>
  36. </el-form-item>
  37. <el-form-item>
  38. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  39. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  40. </el-form-item>
  41. <!-- <el-form-item label="图形类型">
  42. <el-select v-model="contentType" placeholder="请选择图形类型">
  43. <el-option
  44. v-for="item in contentTypelist"
  45. :key="item.value"
  46. :label="item.label"
  47. :value="item.value">
  48. </el-option>
  49. </el-select>
  50. </el-form-item> -->
  51. </el-form>
  52. <el-row :gutter="10" class="mb8">
  53. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  54. </el-row>
  55. <el-table :data="dataList" height="500px">
  56. <el-table-column label="保税区名称" align="center" prop="cbName" width="150px">
  57. <template slot-scope="scope">
  58. {{ scope.row.cbName }}
  59. </template>
  60. </el-table-column>
  61. <el-table-column label="指标名称" align="center" prop="colName">
  62. <template slot-scope="scope">
  63. {{ scope.row.colName }}
  64. </template>
  65. </el-table-column>
  66. <!-- <el-table-column v-for="item in datails" :key="Math.random()" :label="item[0].timeValue" align="center" prop="colName">
  67. <template slot="header" slot-scope="scope">
  68. {{ scope.row.$index }}
  69. </template>
  70. <el-table-column label="对比值" align="center" prop="colName">
  71. <template slot-scope="scope">
  72. 1
  73. </template>
  74. </el-table-column>
  75. <el-table-column label="当前" align="center" prop="colName">
  76. <template slot-scope="scope">
  77. 2
  78. </template>
  79. </el-table-column>
  80. <el-table-column label="浮动" align="center" prop="colName">
  81. <template slot-scope="scope">
  82. 3
  83. </template>
  84. </el-table-column>
  85. </el-table-column> -->
  86. <el-table-column align="center" prop="colName" v-if="queryParams.dateType == '1' || queryParams.dateType == ''">
  87. <template slot="header" slot-scope="scope">
  88. {{ (timeValue[0]?timeValue[0]:'月份').replace('-', '年') }}
  89. </template>
  90. <el-table-column label="对比值(去年)" align="center" prop="colName" width="120px">
  91. <template slot-scope="scope">
  92. {{ scope.row.datails[2].oldValue }}
  93. </template>
  94. </el-table-column>
  95. <el-table-column label="当前" align="center" prop="colName">
  96. <template slot-scope="scope">
  97. {{ scope.row.datails[0].nowValue }}
  98. </template>
  99. </el-table-column>
  100. <el-table-column label="同比%" align="center" prop="colName">
  101. <template slot-scope="scope">
  102. <!-- {{ scope.row.datails[0].redio==0?'持平':scope.row.datails[0].redio+'%'}} -->
  103. <el-tag v-if="scope.row.datails[0].redio==0">持平</el-tag>
  104. <el-tag type="success" v-else-if="scope.row.datails[0].redio >0">{{scope.row.datails[0].redio+'%'}}</el-tag>
  105. <el-tag type="danger" v-else-if="scope.row.datails[0].redio <0">{{scope.row.datails[0].redio+'%'}}</el-tag>
  106. </template>
  107. </el-table-column>
  108. </el-table-column>
  109. <el-table-column align="center" prop="colName" v-if="queryParams.dateType == '2' || queryParams.dateType == ''">
  110. <template slot="header" slot-scope="scope">
  111. {{ (timeValue[1]?timeValue[1] + '季度':'季度').replace('-','年第') }}
  112. </template>
  113. <el-table-column label="对比值(去年)" align="center" prop="colName" width="120px">
  114. <template slot-scope="scope">
  115. {{ scope.row.datails[1].oldValue }}
  116. </template>
  117. </el-table-column>
  118. <el-table-column label="当前" align="center" prop="colName">
  119. <template slot-scope="scope">
  120. {{ scope.row.datails[1].nowValue }}
  121. </template>
  122. </el-table-column>
  123. <el-table-column label="同比%" align="center" prop="colName">
  124. <template slot-scope="scope">
  125. <el-tag v-if="scope.row.datails[1].redio==0">持平</el-tag>
  126. <el-tag type="success" v-else-if="scope.row.datails[1].redio >0">{{scope.row.datails[1].redio+'%'}}</el-tag>
  127. <el-tag type="danger" v-else-if="scope.row.datails[1].redio <0">{{scope.row.datails[1].redio+'%'}}</el-tag>
  128. </template>
  129. </el-table-column>
  130. </el-table-column>
  131. <el-table-column align="center" prop="colName" v-if="queryParams.dateType == '3' || queryParams.dateType == ''">
  132. <template slot="header" slot-scope="scope">
  133. {{ timeValue[2]?timeValue[2] + '年度':'年度' }}
  134. </template>
  135. <el-table-column label="对比值(去年)" align="center" prop="colName" width="120px">
  136. <template slot-scope="scope">
  137. {{ scope.row.datails[2].oldValue }}
  138. </template>
  139. </el-table-column>
  140. <el-table-column label="当前" align="center" prop="colName">
  141. <template slot-scope="scope">
  142. {{ scope.row.datails[2].nowValue }}
  143. </template>
  144. </el-table-column>
  145. <el-table-column label="同比%" align="center" prop="colName">
  146. <template slot-scope="scope">
  147. <el-tag v-if="scope.row.datails[2].redio==0">持平</el-tag>
  148. <el-tag type="success" v-else-if="scope.row.datails[2].redio >0">{{scope.row.datails[2].redio+'%'}}</el-tag>
  149. <el-tag type="danger" v-else-if="scope.row.datails[2].redio <0">{{scope.row.datails[2].redio+'%'}}</el-tag>
  150. </template>
  151. </el-table-column>
  152. </el-table-column>
  153. </el-table>
  154. </div>
  155. </template>
  156. <script>
  157. import { getTQSJ,normFeelistAll,bondedList } from '@/api/portal/figure/figure.js';
  158. export default {
  159. name: 'TQSJ',
  160. data() {
  161. return {
  162. formatY:'',
  163. categoryChartData: {},
  164. contentType:'1',
  165. contentTypelist:[
  166. { label: '列表', value: '1' },
  167. { label: '柱状图', value: '2' },
  168. { label: '雷达图', value: '3' },
  169. ],
  170. datelist:[
  171. { label: '月', value: '1' },
  172. { label: '季度', value: '2' },
  173. { label: '年', value: '3' },
  174. ],
  175. jdlist:[
  176. { label: '第一季度', value: '1' },
  177. { label: '第二季度', value: '2' },
  178. { label: '第三季度', value: '3' },
  179. { label: '第四季度', value: '4' },
  180. ],
  181. dialogVisible: false,
  182. fileList: [],
  183. // 根路径
  184. baseURL: process.env.VUE_APP_BASE_API,
  185. // 遮罩层
  186. loading: true,
  187. // 显示搜索条件
  188. showSearch: true,
  189. // 系统管理表格数据
  190. dataList: [],
  191. // 查询参数
  192. queryParams: {
  193. cbIdArr:[], //保税区id集合
  194. dateType:'', //查询时间类型(1=月,2=季度,3=年)
  195. dateValue:'', //查询时间值
  196. normFeeId:'', //指标明细id
  197. yearVlue:'',//如果选了月 那这里接收年的值 选的年还是传的dateValue
  198. },
  199. normFeelistAll:[], //指标列表
  200. regionList:[], //保税区列表
  201. timeValue:[],
  202. };
  203. },
  204. created() {
  205. this.bondedList()
  206. this.getNormFeelistAll()
  207. },
  208. methods: {
  209. selectChange(val){
  210. this.queryParams.dateValue = ''
  211. this.queryParams.yearVlue = ''
  212. },
  213. getList() {
  214. this.timeValue = []
  215. this.loading = true;
  216. if(this.queryParams.dateType == '1'){
  217. if(this.formatY >= 10){
  218. this.queryParams.dateValue = this.formatY + '月'
  219. }else{
  220. this.queryParams.dateValue = '0'+this.formatY + '月'
  221. }
  222. }
  223. getTQSJ(this.queryParams).then(response => {
  224. this.dataList = []
  225. this.dataList = response.data;
  226. if(this.dataList){
  227. for (const i in this.dataList[0].datails) {
  228. this.timeValue.push(this.dataList[0].datails[i].timeValue)
  229. }
  230. }
  231. this.loading = false;
  232. });
  233. },
  234. bondedList(){
  235. this.regionList = []
  236. bondedList().then(res=>{
  237. for (const i in res.data) {
  238. this.regionList.push({
  239. label:res.data[i].deptName,
  240. value:res.data[i].deptId,
  241. })
  242. }
  243. })
  244. },
  245. getNormFeelistAll(){
  246. this.normFeelistAll = []
  247. normFeelistAll().then(res=>{
  248. for (const i in res.data) {
  249. this.normFeelistAll.push({
  250. label:res.data[i].fname,
  251. value:res.data[i].id,
  252. })
  253. }
  254. this.getList();
  255. })
  256. },
  257. handleQuery() {
  258. this.getList();
  259. },
  260. /** 重置按钮操作 */
  261. resetQuery() {
  262. this.queryParams.cbIdArr = [];
  263. this.queryParams.dateType = '';
  264. this.queryParams.dateValue = '';
  265. this.queryParams.normFeeId = '';
  266. this.queryParams.yearVlue = '';
  267. this.formatY = ''
  268. this.resetForm('queryForm');
  269. },
  270. }
  271. };
  272. </script>