|
@@ -5,7 +5,7 @@
|
|
|
<view class="size-20 title-num">{{stageList.length}}</view>
|
|
<view class="size-20 title-num">{{stageList.length}}</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in stageList" :key="index">
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in stageList" :key="index">
|
|
|
- <view class="file-box r-20">
|
|
|
|
|
|
|
+ <view class="file-box r-20" @click="openInfo(1,item)">
|
|
|
<view class="file-data">
|
|
<view class="file-data">
|
|
|
<view class="file-icon" style="background-color:#FC526A " >
|
|
<view class="file-icon" style="background-color:#FC526A " >
|
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
@@ -27,7 +27,7 @@
|
|
|
<view class="size-20 title-num">{{oneList.length}}</view>
|
|
<view class="size-20 title-num">{{oneList.length}}</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in oneList" :key="index">
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in oneList" :key="index">
|
|
|
- <view class="file-box r-20">
|
|
|
|
|
|
|
+ <view class="file-box r-20" @click="openInfo(2,item)">
|
|
|
<view class="file-data">
|
|
<view class="file-data">
|
|
|
<view class="file-icon" style="background-color:#9335FF " >
|
|
<view class="file-icon" style="background-color:#9335FF " >
|
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
@@ -49,7 +49,7 @@
|
|
|
<view class="size-20 title-num">{{twoList.length}}</view>
|
|
<view class="size-20 title-num">{{twoList.length}}</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in twoList" :key="index">
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in twoList" :key="index">
|
|
|
- <view class="file-box r-20">
|
|
|
|
|
|
|
+ <view class="file-box r-20" @click="openInfo(3,item)">
|
|
|
<view class="file-data">
|
|
<view class="file-data">
|
|
|
<view class="file-icon" style="background-color:#009BF2 " >
|
|
<view class="file-icon" style="background-color:#009BF2 " >
|
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
@@ -71,7 +71,7 @@
|
|
|
<view class="size-20 title-num">{{threeList.length}}</view>
|
|
<view class="size-20 title-num">{{threeList.length}}</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in threeList" :key="index">
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in threeList" :key="index">
|
|
|
- <view class="file-box r-20">
|
|
|
|
|
|
|
+ <view class="file-box r-20" @click="openInfo(4,item)">
|
|
|
<view class="file-data">
|
|
<view class="file-data">
|
|
|
<view class="file-icon" style="background-color:#00B05E " >
|
|
<view class="file-icon" style="background-color:#00B05E " >
|
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
@@ -93,7 +93,7 @@
|
|
|
<view class="size-20 title-num">{{fourList.length}}</view>
|
|
<view class="size-20 title-num">{{fourList.length}}</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in fourList" :key="index">
|
|
<view class="row-c r-20 sys-background-fff m-b20" v-for="(item,index) in fourList" :key="index">
|
|
|
- <view class="file-box r-20">
|
|
|
|
|
|
|
+ <view class="file-box r-20"@click="openInfo(4,item)">
|
|
|
<view class="file-data">
|
|
<view class="file-data">
|
|
|
<view class="file-icon" style="background-color:#FF7E00 " >
|
|
<view class="file-icon" style="background-color:#FF7E00 " >
|
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
<uni-icons type="calendar" color="#fff" size="20"></uni-icons>
|
|
@@ -110,14 +110,17 @@
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
+ <popupModuleVue ref="popupModuleRef"></popupModuleVue>
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
|
|
|
|
|
+ import popupModuleVue from "@/pages/index/module/popup-module.vue";
|
|
|
|
|
+
|
|
|
export default {
|
|
export default {
|
|
|
name:'entities',
|
|
name:'entities',
|
|
|
|
|
+ components: {popupModuleVue},
|
|
|
props: {
|
|
props: {
|
|
|
businessId:{
|
|
businessId:{
|
|
|
default:0
|
|
default:0
|
|
@@ -141,6 +144,9 @@
|
|
|
this.getStageList()
|
|
this.getStageList()
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ openInfo(colorType,data){
|
|
|
|
|
+ this.$refs.popupModuleRef.openPop(colorType,data)
|
|
|
|
|
+ },
|
|
|
getStageList() {
|
|
getStageList() {
|
|
|
this.stageList=[{'attachmentName':'大连迈世未履行(2024)辽0211民初2861号民事判决书','attachmentFormat':'docx','attachmentSize':1165710},]
|
|
this.stageList=[{'attachmentName':'大连迈世未履行(2024)辽0211民初2861号民事判决书','attachmentFormat':'docx','attachmentSize':1165710},]
|
|
|
this.oneList=[{'attachmentName':'大连迈世农业发展有限公司','attachmentFormat':'docx','attachmentSize':1165710},]
|
|
this.oneList=[{'attachmentName':'大连迈世农业发展有限公司','attachmentFormat':'docx','attachmentSize':1165710},]
|