|
- <template>
- <div class="home_wrapper">
- <div class="header_main">
- 企业商户
- <div class="return_btn" @click="onClickLeft"></div>
- </div>
- <div class="jg"></div>
- <div class="search_box">
- <div class="search">
- <input type="text" placeholder="请输入企业名称" />
- <img src="../../../../static/images/lawEnforcement/new/index_icon_04.png">
- </div>
- </div>
-
- <van-list
- v-model="loading"
- :finished="finished"
- finished-text="没有更多了"
- >
- <van-swipe-cell v-for="(item,index) in 10" :key="index">
- <van-cell :to="{name:'lawEnforcementEnterpriseDetail', query: {id:item.id}}">
- <template #title>
- <p style="font-size: 0.4rem;">宿州市宏丰发展农资有限公司</p>
- <div class="cellTit">
- <p>陈建南<i></i></p>
- <p>信用代码</p>
- <p>92341302MA2Q95JX82</p>
- </div>
- </template>
- <template #label>
- <div class="cellLabel">
- <img src="../../../../static/images/lawEnforcement/icon/individual_icon_01.png"/>
- <p>342201199106191412</p>
- <p><i></i>15314031621</p>
- </div>
- </template>
- </van-cell>
- <template #right>
- <van-row>
- <van-col>
- <van-button square type="info" :to="{name:'lawEnforcementIndividualRelation', query: {id:item.id}}" class="delete-button" >关联<br/>案件</van-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">
- .jg{
- height: 116px;
- }
- .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;
- 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;
- }
- }
-
- }
- .cellTit{
- display: flex;
- justify-content: space-between;
- p{
- &:nth-child(1){
- font-size: 0.4rem;
- display: flex;
- align-items: flex-start;
- i{
- display: inline-block;
- width: 10PX;
- height: 10PX;
- background: url("../../../../static/images/lawEnforcement/icon/individual_icon_03.png") no-repeat center;
- background-size: 10PX 10PX;
- margin-top: 5px;
- margin-left: 5px;
- }
- }
- &:nth-child(2){
- color: #B4B0B0;
- font-size: 0.3rem;
- margin-left: auto;
- margin-right: 10PX;
- }
- &:nth-child(3){
- color: #6D6EB8;
- font-size: 0.3rem;
- }
- }
- }
- .cellLabel{
- display: flex;
- align-items: center;
- font-size: 0.35rem;
- img{
- display: block;
- margin-right: 5PX;
- }
- p{
- display: inline-block;
- color: #666666;
- &:last-child{
- background: rgba(28,184,177,0.2);
- padding: 0 8PX;
- border-radius: 3PX;
- color: #1CB8B1;
- margin-left: auto;
- display: flex;
- align-items: center;
- border-radius: 5PX;
- border-top-left-radius: 30px;
- i{
- display: inline-block;
- width: 10PX;
- height: 10PX;
- background: url("../../../../static/images/lawEnforcement/icon/individual_icon_02.png") no-repeat center;
- }
- }
- }
- }
- /deep/.van-cell__title span{
- font-family: Arial;
- font-size: 0.4rem;
- font-weight: normal;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- word-break: break-all;
- overflow: hidden;
- }
- /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);
- }
- /deep/van-ellipsis{
- font-weight: bold;
- }
- .van-row{
- height: 100%;
- }
- .van-col{
- height: 100%;
- }
- .delete-button {
- height: 100%;
- }
- </style>
|