123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- <template>
- <view class="card_main">
- <view class="card_banner"></view>
- <view class="card_info">
- <view class="card_info_title">
- 盐都区工信局文件传阅卡
- </view>
- <view class="card_table">
- <u-row justify="space-between">
- <u-col span="6">
- <view>年度: {{inputForm.yearNum}}</view>
- </u-col>
- <u-col span="6">
- <view style="text-align: right;">{{inputForm.cardNum}}</view>
- </u-col>
- </u-row>
- <u-row justify="space-between" class="card_row">
- <u-col span="3" textAlign="center" class="">
- <view>来文机关</view>
- </u-col>
- <u-col span="3" textAlign="center" class="card_col_1">
- <uni-tooltip :content="inputForm.sendingAgency" placement="top">
- <u--text size="14" align="center" lines="1" :text="inputForm.sendingAgency"></u--text>
- </uni-tooltip>
-
- </u-col>
- <u-col span="3" textAlign="center" class="card_col card_col_1">
- <view>来文字号</view>
- </u-col>
- <u-col span="3" textAlign="center">
- <uni-tooltip :content="inputForm.docFontSize" placement="top">
- <u--text size="14" align="center" lines="1" :text="inputForm.docFontSize"></u--text>
- </uni-tooltip>
- <!-- <u--text size="14" align="center" lines="1" :text="inputForm.docFontSize"></u--text> -->
- </u-col>
- </u-row>
- <u-row justify="space-between" class="card_row card_row_border">
- <u-col span="3" textAlign="center" class="">
- <view>收文时间</view>
- </u-col>
- <u-col span="3" textAlign="center" class="card_col_1">
- <u--text size="14" align="center" lines="1" :text="inputForm.receivingTime"></u--text>
- </u-col>
- <u-col span="3" textAlign="center" class="card_col card_col_1">
- <view>文件来源</view>
- </u-col>
- <u-col span="3" textAlign="center">
- <uni-tooltip :content="inputForm.fileSource" placement="top">
- <u--text size="14" align="center" lines="1" :text="inputForm.fileSource"></u--text>
- </uni-tooltip>
- <!-- <u--text size="14" align="center" lines="1" :text="inputForm.fileSource"></u--text> -->
- </u-col>
- </u-row>
- <u-row justify="space-between" class="card_row card_row_border">
- <u-col span="3" textAlign="center" align="center">
- <view>内容摘要</view>
- </u-col>
- <u-col span="9" class="info_abstract">
- <view class="info_abstract_v">
- {{inputForm.contentSummary}}
- </view>
- </u-col>
- </u-row>
- <u-row v-if="officeInfo.length>0" justify="space-between" class="card_row card_row_border">
- <u-col span="2" textAlign="center">
- <view class="vertical-text">办公室拟办</view>
- </u-col>
- <u-col span="10" class="info_abstract">
- <view v-for="item in officeInfo" class="info_abstract_v">
- <view>
- {{item.content}}
- </view>
- <view class="flex text-sm" style="line-height: 20px;">
- <u--image :src="item.signfj" width="80px" height="20px"></u--image>
- {{item.updateTime}}
- </view>
- </view>
- </u-col>
- </u-row>
- <u-row v-if="leaderInfo.length>0" justify="space-between" class="card_row card_row_border">
- <u-col span="2" textAlign="center">
- <view class="vertical-text">领导批示</view>
- </u-col>
- <u-col span="10" class="info_abstract">
- <view v-for="leader in leaderInfo" class="info_abstract_v">
- <view>
- {{leader.content}}
- </view>
- <view class="flex text-sm" style="line-height: 20px;">
- <u--image :src="leader.signfj" width="80px" height="20px"></u--image>
- {{leader.updateTime}}
- </view>
- </view>
- </u-col>
- </u-row>
- <u-row v-if="undertakeInfo.length>0" justify="space-between" class="card_row card_row_border">
- <u-col span="2" textAlign="center">
- <view class="vertical-text">承办情况</view>
- </u-col>
- <u-col span="10" class="info_abstract">
- <view v-for="item in undertakeInfo" class="info_abstract_v">
- <view>
- {{item.content}}
- </view>
- <view class="flex text-sm" style="line-height: 20px;">
- <u--image :src="item.signfj" width="80px" height="20px" mode="aspectFit"></u--image>
- {{item.updateTime}}
- </view>
- </view>
- </u-col>
- </u-row>
- <u-row justify="space-between" class="card_row card_row_border">
- <u-col span="3" textAlign="center" class="card_col">
- <view>备注</view>
- </u-col>
- <u-col span="9" textAlign="center">
- <view>{{inputForm.remark}}</view>
- </u-col>
- </u-row>
- <u--text style="margin: 10px;" size="10" type="error" text="所有涉密敏感信息不得上传"></u--text>
- <view class="card_other">
- 附件:
- <view class="other_info" v-for="item in fileList">
- <view class="other_pdf flex ">
- <u--text decoration='underline' color='#36a7f3' :text="item.name"
- @click="item.type=='pdf'?preview(item):download(item)"></u--text>
- </view>
- </view>
-
- </view>
- </view>
- </view>
- <view style="margin-left: 20px;">
- <u-upload :fileList="imgList" multiple :maxCount="imgList.length" :previewFullImage="true"
- :deletable="false" ></u-upload>
- </view>
- <u-overlay :show="ismask">
- <view class="warp">
- <view class="rect"><u-button plain loading loadingText="加载中"></u-button></view>
- </view>
- </u-overlay>
- </view>
- </template>
- <script>
- import {
- isImageFormat
- } from "@/common/util.js"
- import BASE_URL from '@/config.js'
- import fileService from '@/api/file/fileService.js'
- import gwCirculationCard2Service from '@/api/circulation/gwCirculationCard2.js'
- import gwFlowService from '@/api/circulation/gwFlowService.js'
- export default {
- mounted() {
- gwCirculationCard2Service.queryById(this.gwId).then(data => {
- this.inputForm = data
- this.inputForm.receivingTime = this.inputForm.receivingTime.substring(5, 10)
- this.inputForm.cardNum = "[" + this.inputForm.yearNum + "]" + this.inputForm.cardNum + "号"
- this.fileLists = this.inputForm.attachedDocumentId.split(",")
- this.fileLists.forEach(item => {
- if (isImageFormat(item)) {
- let img = {
- url: item
- }
- if (!item.startsWith("http")) img.url = this.BASE_URL + item
- this.imgList.push(img)
- } else {
- const fileName = item.split(/[/\\=]/).pop();
- let type = ""
- const pdfFormats = /\.pdf$/i;
- if (pdfFormats.test(item)) type = "pdf";
- let a = {
- name: fileName,
- url: item,
- type: type
- }
- if (!item.startsWith("http")) a.url = this.BASE_URL + item
- this.fileList.push(a)
- }
- })
- })
- gwFlowService.queryByGwId(this.gwId).then(data => {
- data.forEach(item => {
- if (item.which == 0 && item.state == 0) {
- if (item.signfj && !item.signfj.startsWith("http")) item.signfj = this.BASE_URL +
- item.signfj
- this.officeInfo.push(item)
- } else if (item.which == 1 && item.state == 0) {
- if (item.signfj && !item.signfj.startsWith("http")) item.signfj = this.BASE_URL +
- item.signfj
- this.leaderInfo.push(item)
- } else if (item.which == 2 && item.state == 0) {
- if (item.signfj && !item.signfj.startsWith("http")) item.signfj = this.BASE_URL +
- item.signfj
- this.undertakeInfo.push(item)
- }
- })
- this.leaderInfo.sort((a, b) => a.updateTime.localeCompare(b.updateTime) || a.updateTime
- .localeCompare(b.updateTime));
- this.undertakeInfo.sort((a, b) => a.updateTime.localeCompare(b.updateTime) || a.updateTime
- .localeCompare(b.updateTime));
- this.officeInfo.sort((a, b) => a.updateTime.localeCompare(b.updateTime) || a.updateTime
- .localeCompare(b.updateTime));
- this.ismask = false
- })
- },
- data() {
- return {
- ismask: true,
- src: 'https://cdn.uviewui.com/uview/album/1.jpg',
- // 公文附件
- fileLists: [],
- fileList: [],
- imgList: [],
- // 办公室信息
- officeInfo: [],
- // 领导信息
- leaderInfo: [],
- // 承办信息
- undertakeInfo: [],
- inputForm: {
- id: '',
- yearNum: '',
- cardNum: '',
- sendingAgency: '',
- docFontSize: '',
- fileSource: '',
- writtenTime: '',
- receivingTime: '',
- contentSummary: '',
- attachedDocumentId: ''
- },
- gwflow: {
- id: '',
- gwId: '',
- content: '',
- signfj: '',
- createTruename: '',
- nextTruename: '',
- nextUser: '',
- which: '',
- state: '',
- next: '',
- nextLeadUser: '',
- nextDepUser: '',
- remark: '',
- },
- }
- },
- methods: {
- // 预览pdf
- preview(fileUrl) {
- uni.navigateTo({
- url: "/pages/pdfPreview/pdfPreview?url=" + encodeURIComponent(fileUrl.url)
- })
- },
- // 下载文件
- download(param) {
- uni.showLoading({
- title: "下载中"
- })
- uni.downloadFile({
- url: param.url, //调接口返回url
- success: (res) => {
- uni.hideLoading();
- if (res.statusCode == 200) {
- var tempFilePath = res.tempFilePath;
- this.saveFile(tempFilePath, param.name);
- } else {
- uni.showToast({
- icon: 'none',
- title: '报告下载失败'
- })
- }
- },
- fail: err => {
- uni.hideLoading();
- uni.showToast({
- icon: 'none',
- title: '报告下载失败'
- })
- reject(err);
- }
- })
- },
- saveFile(url, name) { //保存到本地
- try {
- const fileName = name;
- //new Blob 实例化文件流
- //let url = fileData
- //const url = window.URL.createObjectURL(new Blob([fileData],{type:'application/pdf'}))
- const link = document.createElement('a');
- link.style.display = 'none';
- link.href = url;
- link.setAttribute('download', fileName);
- link.setAttribute("target", "_blank");
- document.body.appendChild(link);
- link.click();
- //下载完成移除元素
- document.body.removeChild(link);
- //释放掉blob对象
- window.URL.revokeObjectURL(url)
- uni.showToast({
- title: '下载成功'
- })
- } catch (error) {
- uni.showToast({
- title: '下载失败'
- })
- }
- },
- },
- props: {
- isoffice: {
- type: Boolean,
- default: false
- },
- isleader: {
- type: Boolean,
- default: false
- },
- isinfo: {
- type: Boolean,
- default: false
- },
- gwId: {
- type: String,
- }
- },
- }
- </script>
- <style>
- .warp {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
- .card_main {
- width: 100%;
- background-color: #fefefe;
- }
- .card_banner {
- width: 100%;
- height: 60px;
- background-color: #36a7f3;
- }
- .card_info {
- width: 96%;
- /* height: 80vh; */
- margin: -40px 2% 0;
- background-color: #fefefe;
- border-radius: 15px;
- text-align: center;
- }
- .card_info_title {
- font-size: 20px;
- font-weight: 700;
- padding-top: 10px;
- color: #36a7f3;
- }
- .card_table {
- padding: 20px 20px;
- font-size: 18px;
- }
- .card_row {
- line-height: 50px;
- border: 1px solid;
- word-wrap: break-word;
- }
- .card_row_border {
- border-top: none;
- }
- .card_col {
- border-right: 1px solid;
- }
- .card_col_1 {
- border-left: 1px solid;
- }
- .info_abstract {
- line-height: 34px;
- font-size: 16px;
- word-wrap: break-word;
- border-left: 1px solid;
- }
- .info_abstract_v {
- margin: 18px;
- }
- .vertical-text {
- writing-mode: vertical-rl;
- /* 文字垂直排列,从右向左 */
- /* 或者使用vertical-lr; 从左向右 */
- }
- .card_other {
- text-align: left;
- }
- </style>
|