|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <template>
- <div class="home_wrapper">
- <div class="header_main">
- 案件分配
- <div class="return_btn" @click="onClickLeft"></div>
- </div>
- <div style="height: 58px;"></div>
- <div class="search_box">
- <img src="../../../../static/images/lawEnforcement/new/list_icon_02.png" @click="$router.push({name:'lawEnforcementCaseHistory'})"/>
- <div class="search">
- <input type="text" placeholder="请输入搜索内容" />
- <img src="../../../../static/images/lawEnforcement/new/index_icon_04.png">
- </div>
- <!-- <img src="../../../../static/images/lawEnforcement/new/list_icon_03.png"/>-->
- </div>
-
-
- <van-list
- v-model="loading"
- :finished="finished"
- finished-text="没有更多了"
- >
- <van-swipe-cell v-for="(item,index) in 10" :key="index">
- <van-cell title="关于徐胜峰在禁渔期内收购非法捕捞渔获..." center :to="{name:'lawEnforcementCaseDetail', query: {id:item.id}}">
- <template #icon>
- <van-icon name="../../../../static/images/lawEnforcement/new/list_icon_01.png" size="20" color="#FF4646" style="margin-right: 10px;" />
- </template>
- <template #label>
- <p>上级交办</p>
- <p>第一中队</p>
- <p>2021-09-07</p>
- </template>
- </van-cell>
- <template #right>
- <van-row>
- <van-col>
- <van-button square text="退回" type="danger" :to="{name:'lawEnforcementCaseReturn', query: {id:item.id}}" class="delete-button" />
- </van-col>
- <van-col>
- <van-button square text="分配" type="info" :to="{name:'lawEnforcementCaseDistribution', query: {id:item.id}}" class="delete-button" />
- </van-col>
- </van-row>
- </template>
- </van-swipe-cell>
- </van-list>
- </div>
- </template>
-
- <script>
- import { financePublicList,openRemove } from "@/api/sunVillage_info/fixedAssets";
- import Cookies from "js-cookie";
- import request from '@/utils/request'
- export default {
- name: "caseAllocation",
- data() {
- return {
- applicationList:[],
- applicationListSecond:[],
- assetStatusOptions:[],
- auditStatus:[],
- loading: false,
- finished: false,
- show: false,
- showTab: false,
- fileList:[],
- listLength:'0',
- searchInput:'',
- queryParams:{
- pageNum:1,
- pageSize:10,
- orderByColumn:'createTime',
- isAsc:'desc',
- year:'2022',
- },
- uploadFiles1:[],
- projectId:'',
- projectIndex:'',
- showBtn:true,
- };
- },
- created() {
-
- },
- methods: {
- getList(){
- var _this = this;
- financePublicList(_this.queryParams).then(response => {
- _this.listLength = response.total;
- response.rows.map(res=>{
- _this.applicationList.push(res);
- })
- if(_this.applicationList.length >= response.total){
- _this.finished = true;
- return;
- }else{
- _this.loading = false;
- _this.queryParams.pageNum += 1 ;
- }
-
- });
- },
- tabClick(year){
- this.queryParams.year = year ;
- this.applicationList = [];
- this.getList();
- },
- tabShow(){
- this.showTab = !this.showTab;
- },
- /** 删除按钮操作 */
- handleDelete(row,index) {
- let assetStatus = row.assetStatus ? row.assetStatus : data[0].assetStatus;
- if (assetStatus === '2' || assetStatus === '3') {
- this.$notify({
- message: "不允许删除已出售或已报废的资产",
- type: "warning",
- });
- return;
- }
- let useType = row.useType;
- if(useType == 3) {
- this.$notify({
- message: "出租或出借的资产不允许删除",
- type: "warning",
- });
- return ;
- }
- const ids = row.id || this.ids;
-
- this.$dialog.alert(
- {
- message:'是否确认删除固定资产?',
- title:"警告",
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- }
- )
- .then(function () {
- return delPermanent(ids);
- })
- .then(() => {
- this.applicationList.splice(index, 1);
- this.$notify({ type: 'success', message: '删除成功' });
- });
- },
- goAdd(){
- this.$router.push('/sunVillage_info/list_finance_add')
- },
- goDetail(id){
- this.$router.push({path:'/sunVillage_info/list_finance_detail',query: {id:id,type:'finance'}})
- },
- goRanking(id,time){
- this.$router.push({path:'/sunVillage_info/list_finance_ranking',query: {id:id,time:time}})
- },
- goEdit(id){
- this.$router.push({path:'/sunVillage_info/list_finance_edit',query: {id:id,type:'finance'}})
- },
- goRemove(id){
- this.$dialog.alert({
- title: '提示',
- message: '确认删除?',
- showCancelButton:true,
- })
- .then(() => {
- openRemove(id).then(response => {
- this.$notify({ type: 'success', message: '删除成功' });
- this.getList()
- });
- })
- .catch(() => {
- // on cancel
- });
-
- }
- },
- }
- </script>
-
- <style scoped lang="scss">
- .home_wrapper{
- background: #e9e9e9;
- min-height: 100vh;
- width: 100vw;
- padding: 0 3% 0.2rem;
- .search_box{
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 92%;
- margin: 0PX auto;
- .search{
- background: #ffffff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- margin: 10PX auto;
- border: 1px solid #1D6FE9;
- padding: 1PX 1PX 1PX 12PX ;
- border-radius: 50PX;
- margin-left: 10PX;
- input{
- flex: 1;
- background: transparent;
- }
- }
- }
- .header_main{
- height: 116px;
- background: url('../../../../static/images/lawEnforcement/new/list_head.png') no-repeat;
- background-size: 100% 100%;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- font-size: 36px;
- line-height: 116px;
- text-align: center;
- color: #fff;
- z-index: 999;
- .return_btn{
- width: 24px;
- height: 43.2px;
- background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat;
- background-size: 20px 36px;
- position: absolute;
- left: 38px;
- top: 36px;
- }
- .add_btn{
- width: 56.4px;
- height: 40.8px;
- background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat;
- background-size: 47px 34px;
- position: absolute;
- right: 38px;
- top: 36px;
- }
- }
-
- }
- /deep/.van-cell__title span{
- font-family: Arial;
- font-size: 0.4rem;
- font-weight: normal;
- color: #666666;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- word-break: break-all;
- overflow: hidden;
- }
- /deep/.van-cell__label {
- display: flex;
- justify-content: space-between;
- p{
- display: inline-block;
- &:first-child{
- background: rgba(28,184,177,0.2);
- padding: 0 5PX;
- border-radius: 3PX;
- color: #1CB8B1;
- }
- }
- }
- /deep/.van-cell__value{
- flex: 0.3;
- color: #1D6FE9;
- font-weight: bold;
- }
- /deep/.van-swipe-cell{
- margin-bottom: 0.2rem;
- border-radius: 0.2rem;
- overflow: hidden;
- box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
- .van-swipe-cell__right{
- right: -2PX;
- }
- }
- /deep/van-ellipsis{
- font-weight: bold;
- }
- .van-row{
- height: 100%;
- }
- .van-col{
- height: 100%;
- }
- .delete-button {
- height: 100%;
- }
- </style>
|