index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" size="small" label-width="100px">
  4. <template v-if="roleType == 'gov'">
  5. <el-form-item label="市" prop="cityId" v-if="userType == 'GOV_PROV'">
  6. <el-select v-model="queryParams.cityId" placeholder="请选择市" @change="getDistrictData" filterable style="width: 200px;">
  7. <el-option v-for="(item, index) in cityDataList" :key="index" :label="item.name" :value="item.id"></el-option>
  8. </el-select>
  9. </el-form-item>
  10. <el-form-item label="区" prop="districtId" v-if="userType == 'GOV_PROV' || userType == 'GOV_CITY'">
  11. <el-select v-model="queryParams.districtId" placeholder="请选择区" filterable style="width: 200px;">
  12. <el-option v-for="(item, index) in districtDataList" :key="index" :label="item.name" :value="item.id"></el-option>
  13. </el-select>
  14. </el-form-item>
  15. </template>
  16. <template v-else>
  17. <el-form-item label="省" prop="provinceId">
  18. <el-select v-model="queryParams.provinceId" placeholder="请选择省" @change="getCityData" filterable style="width: 200px;">
  19. <el-option v-for="(item,index) in provinceDataList" :key="index" :label="item.name" :value="item.id"></el-option>
  20. </el-select>
  21. </el-form-item>
  22. <el-form-item label="市" prop="cityId">
  23. <el-select v-model="queryParams.cityId" placeholder="请选择市" @change="getDistrictData" filterable style="width: 200px;">
  24. <el-option v-for="(item, index) in cityDataList" :key="index" :label="item.name" :value="item.id"></el-option>
  25. </el-select>
  26. </el-form-item>
  27. <el-form-item label="区" prop="districtId">
  28. <el-select v-model="queryParams.districtId" placeholder="请选择区" filterable style="width: 200px;">
  29. <el-option v-for="(item, index) in districtDataList" :key="index" :label="item.name" :value="item.id"></el-option>
  30. </el-select>
  31. </el-form-item>
  32. </template>
  33. <el-form-item label="年份" prop="year">
  34. <el-date-picker v-model="queryParams.year" type="year" placeholder="选择年" style="width: 200px;" value-format="yyyy"></el-date-picker>
  35. </el-form-item>
  36. <el-form-item label="企业名称" prop="entName">
  37. <el-input v-model="queryParams.entName" clearable style="width: 200px;" placeholder="请输入企业名称"></el-input>
  38. </el-form-item>
  39. <el-form-item label="社会信用代码" prop="license">
  40. <el-input v-model="queryParams.license" style="width: 200px;" placeholder="请输入社会信用代码"></el-input>
  41. </el-form-item>
  42. <el-form-item label="项目编号" prop="projectNo">
  43. <el-input v-model="queryParams.projectNo" style="width: 200px;" placeholder="请输入项目编号"></el-input>
  44. </el-form-item>
  45. <el-form-item label="项目名称" prop="projectName">
  46. <el-input v-model="queryParams.projectName" style="width: 200px;" placeholder="请输入项目名称"></el-input>
  47. </el-form-item>
  48. <el-form-item>
  49. <el-button type="primary" @click="handleQuery">搜索</el-button>
  50. <el-button @click="resetQuery">重置</el-button>
  51. </el-form-item>
  52. </el-form>
  53. <h3 class="toolbar">
  54. <span class="title">列表</span>
  55. <div class="tool">
  56. <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBatchDel" v-if="roleType == 'entAdmin' || roleType == 'entUser' || roleType == 'manager'">批量删除</el-button>
  57. <!-- <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBatchDow">批量下载</el-button> -->
  58. </div>
  59. </h3>
  60. <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange">
  61. <el-table-column type="selection" width="55" align="center" />
  62. <el-table-column label="项目编号" prop="projectNo" width="150" align="center" />
  63. <el-table-column label="项目名称" prop="projectName" align="center" width="150"></el-table-column>
  64. <el-table-column label="企业名称" prop="entName" align="center" width="150"/>
  65. <el-table-column label="社会信用代码" prop="license" align="center" width="150" />
  66. <el-table-column label="项目年份" prop="projectYear" align="center" width="150" />
  67. <el-table-column label="项目跨年" prop="overYearFlag" align="center" width="150"></el-table-column>
  68. <el-table-column label="创建时间" align="center" prop="createTime" width="160"></el-table-column>
  69. <el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width">
  70. <template slot-scope="scope">
  71. <el-button type="text" @click="handleView(scope.row)">查看</el-button>
  72. <el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
  73. <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
  74. </template>
  75. </el-table-column>
  76. </el-table>
  77. <pagination
  78. v-show="total>0"
  79. :total="total"
  80. :page.sync="queryParams.pageNum"
  81. :limit.sync="queryParams.pageSize"
  82. @pagination="getList"
  83. />
  84. </div>
  85. </template>
  86. <!-- 科德管理员、企业角色、税务角色都有项目申报角色 -->
  87. <script>
  88. import {getProvinceDataApi,getRegionChildrenApi} from "@/api/common/common"
  89. import {listDeclareApi,listDeclareCommonApi,projectBackApi} from '@/api/enterprise/declare/declare'
  90. import {entStateOptions, getLabel, authStateOptions} from '@/utils/dataFormat'
  91. export default {
  92. data () {
  93. return {
  94. loading: false,
  95. provinceDataList: [],
  96. cityDataList: [],
  97. districtDataList: [],
  98. ids: [],
  99. selectCount: '',
  100. entStateOptions: entStateOptions,
  101. authStateOptions: authStateOptions,
  102. roleType: '',
  103. queryParams: {
  104. pageNum: 1,
  105. pageSize: 10,
  106. provinceId: undefined,
  107. cityId: undefined,
  108. districtId: undefined,
  109. year: '',
  110. entName: '',
  111. license: '',
  112. projectNo: '',
  113. projectName: ''
  114. },
  115. list: [],
  116. total: 0,
  117. open: false,
  118. openInfo: false,
  119. }
  120. },
  121. created() {
  122. this.roleType = this.roles.join(',')
  123. this.getList()
  124. if(this.userType == 'GOV_PROV' || this.userType == 'GOV_CITY') {
  125. this.getAreaData()
  126. }
  127. if(this.roleType != 'gov') {
  128. this.getProvinceData()
  129. }
  130. },
  131. computed: {
  132. roles() {
  133. return this.$store.state.user.roles
  134. },
  135. scopeId() {
  136. return this.$store.state.user.scopeId
  137. },
  138. userType() {
  139. return this.$store.state.user.userType
  140. }
  141. },
  142. methods: {
  143. // 多选框选中数据
  144. handleSelectionChange(selection) {
  145. this.ids = selection.map(item => item.id)
  146. this.selectCount = selection.length;
  147. },
  148. handleBatchDel() {
  149. if(this.selectCount <= 0) {
  150. this.$message.error('请选择要删除的数据');
  151. return
  152. }
  153. const delIds = this.ids.join(',')
  154. this.$confirm('是否确认删除该数据?', "警告", {
  155. confirmButtonText: "确定",
  156. cancelButtonText: "取消",
  157. type: "warning"
  158. }).then(function() {
  159. return projectBackApi(delIds);
  160. }).then(() => {
  161. this.queryParams.pageNum = 1;
  162. this.getList();
  163. this.$message({
  164. message: '删除成功',
  165. type: 'success'
  166. });
  167. })
  168. },
  169. getAreaData() {
  170. getRegionChildrenApi(this.scopeId).then(res => {
  171. if(res.code == 200) {
  172. if(this.userType == 'GOV_PROV') {
  173. this.cityDataList = res.data
  174. }else if(this.userType == 'GOV_CITY') {
  175. this.districtDataList = res.data
  176. }
  177. }
  178. })
  179. },
  180. //选择省份
  181. getCityData() {
  182. this.queryParams.cityId = ''
  183. this.queryParams.districtId = ''
  184. getRegionChildrenApi(this.queryParams.provinceId).then(res => {
  185. if(res.code == 200) {
  186. this.cityDataList = res.data
  187. }
  188. })
  189. },
  190. //选择市
  191. getDistrictData() {
  192. this.queryParams.districtId = ''
  193. getRegionChildrenApi(this.queryParams.cityId).then(res => {
  194. if(res.code == 200) {
  195. this.districtDataList = res.data
  196. }
  197. })
  198. },
  199. getProvinceData() {
  200. getProvinceDataApi().then(res => {
  201. if(res.code == 200) {
  202. this.provinceDataList = res.data
  203. }
  204. })
  205. },
  206. getList() {
  207. this.loading = true;
  208. listDeclareCommonApi(this.queryParams).then(response => {
  209. this.list = response.data.records;
  210. this.total = response.data.total;
  211. this.loading = false;
  212. });
  213. },
  214. handleDownload() {
  215. },
  216. // 查看
  217. handleView(row) {
  218. this.$router.push("/declare/info/"+row.id)
  219. },
  220. handleDelete(row) {
  221. const id = row.id;
  222. this.$confirm('是否确认删除该数据?', "警告", {
  223. confirmButtonText: "确定",
  224. cancelButtonText: "取消",
  225. type: "warning"
  226. }).then(function() {
  227. return projectBackApi(id);
  228. }).then(() => {
  229. this.queryParams.pageNum = 1;
  230. this.getList();
  231. this.$message({
  232. message: '删除成功',
  233. type: 'success'
  234. });
  235. })
  236. },
  237. // 重置
  238. resetQuery() {
  239. this.resetForm("queryForm");
  240. this.handleQuery();
  241. },
  242. // 搜索
  243. handleQuery() {
  244. this.queryParams.pageNum = 1;
  245. this.getList();
  246. },
  247. statusFormat(row, col, val, index) {
  248. return getLabel(accessStatus, val)
  249. },
  250. entSateFormat(row, col, val, index) {
  251. return getLabel(entStateOptions, val)
  252. },
  253. authStateFormat(row, col, val, index) {
  254. return getLabel(authStateOptions, val)
  255. }
  256. }
  257. }
  258. </script>
  259. <style>
  260. </style>