|
@@ -75,7 +75,7 @@
|
|
|
</view>
|
|
|
<!-- 文件出具信息 -->
|
|
|
<view class="mt18" v-if="fileFj">
|
|
|
- <block v-for="(ite,name, index) in fileFj" :key="index">
|
|
|
+ <view v-for="(ite,name, index) in fileFj" :key="index">
|
|
|
<view class="fjlists" v-for="(fite,fidx) in ite" :key='fidx'>
|
|
|
<view class="flext flex1" @click="getDown(fite.url)">
|
|
|
<view class="imgl"><image :src="filico" ></image></view>
|
|
@@ -106,9 +106,10 @@
|
|
|
</template>
|
|
|
<text class="txta coa1" v-if="checkPermi(['system:fj:edit'])" @click="getfjXiu(name,fite.fjId)">修改</text>
|
|
|
</template>
|
|
|
+ <view class="upimg" @click="getXzFn(fite)"><image :src="fupimg"></image></view>
|
|
|
<text class="txta" @click="getDown(fite.url)">预览</text>
|
|
|
</view>
|
|
|
- </block>
|
|
|
+ </view>
|
|
|
|
|
|
</view>
|
|
|
<!-- <text class="txta" @click="getDown(fite.url)">预览</text> -->
|
|
@@ -127,6 +128,7 @@
|
|
|
</view>
|
|
|
<text class="txta coa1" v-if="checkPermi(['system:fj:edit'])" @click="getQtfjEdit('qtfj',fite.fjId)">修改</text>
|
|
|
</template>
|
|
|
+ <view class="upimg" @click="getXzFn(fite)"><image :src="fupimg"></image></view>
|
|
|
<text class="txta" @click="getDown(fite.url)">预览</text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -177,7 +179,7 @@
|
|
|
data(){
|
|
|
return{
|
|
|
upimg: require('@/work/static/images/up.png'),
|
|
|
- fupimg:require('@/work/static/images/fup.png'),
|
|
|
+ fupimg:require('@/work/static/images/fdown.png'),
|
|
|
filico:require('@/work/static/images/filico.png'),
|
|
|
edit:require('@/work/static/images/edit.png'),
|
|
|
editf:require('@/work/static/images/editfile.png'),
|
|
@@ -219,6 +221,9 @@
|
|
|
getQmFn(url){
|
|
|
this.$emit('getQmFn',url)
|
|
|
},
|
|
|
+ getXzFn(ite){
|
|
|
+ this.$emit("getXzFn",ite)
|
|
|
+ },
|
|
|
},
|
|
|
|
|
|
}
|
|
@@ -229,10 +234,10 @@
|
|
|
.txt{display: flex;align-items: flex-start;
|
|
|
view{font-weight: bold;font-size: 30rpx;color: #222327;}
|
|
|
text{color: #28C529;font-weight: 500;line-height: 40rpx;flex: 0 0 auto;margin-left: 46rpx;padding: 0 6rpx;}
|
|
|
- .upimg{width:40rpx;height: 40rpx;margin-left: 18rpx;display: flex;align-items: center;justify-content: center;
|
|
|
+}
|
|
|
+.upimg{width:40rpx;height: 40rpx;margin-left: 18rpx;display: flex;align-items: center;justify-content: center;
|
|
|
image{width: 30rpx;height: 28rpx;}
|
|
|
}
|
|
|
-}
|
|
|
.fjlists {display: flex;align-items: flex-start;justify-content: space-between;margin-bottom: 20rpx;
|
|
|
&:last-child{margin-bottom: 0;}
|
|
|
.imgl{width: 40rpx;height: 40rpx;display: flex;align-items: center;flex: 0 0 auto;
|