| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <div class="flowAttach_wrapper">
- <!-- <h3><span></span>问题图片-->
- <!-- <el-button type="primary" @click="showProvImgList" style="float: right;">佐证图片</el-button>-->
- <!-- </h3>-->
- <pblmsDetailsImgs v-if="isDcOrJc=='dc'" :problemId="problemId?problemId:id"></pblmsDetailsImgs>
- <pblmsDetailsImgs1 v-if="isDcOrJc=='jc'" :problemId="problemId?problemId:id"></pblmsDetailsImgs1>
- <add-pic-com v-if="jqmmDialogShow" :dialogTitle="'相关材料'" :jqmmEngId="id" :type="zgType" @jqmmDialogClose="jqmmDialogClose"></add-pic-com>
- </div>
- </template>
- <script>
- import request from '@util/gw_ajax_request.js'
- export default {
- props: {
- problemId: {
- type: String,
- default: ''
- },
- id: {
- type: String,
- default: ''
- },
- isDcOrJc:{
- type: String,
- default: ''
- },
- isShow:{
- type: Boolean,
- default: false,
- }
- },
- data() {
- return {
- jqmmDialogShow: false,
- zgType:"",
- }
- },
- components:{
- pblmsDetailsImgs: resolve => {
- require(["../../duChaWenTi/PblmDetailsImgs.vue"], resolve);
- },
- pblmsDetailsImgs1: resolve => {
- require(["../../duChaWenTi/PblmDetailsImgs1.vue"], resolve);
- },
- addPicCom: resolve => {
- require(["../../duChaZhengGaiNew/addPic"], resolve);
- },
- },
- mounted() {
- },
- methods: {
- showProvImgList(){
- this.jqmmDialogShow = true;
- this.zgType = "zgFllow";
- },
- jqmmDialogClose() {
- this.jqmmDialogShow = false;
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .flowAttach_wrapper {
- padding: 0 10px;
- overflow: hidden;
- h3 {
- margin-bottom: 20px;
- line-height: 32px;
- font-size: 16px;
- span {
- display: inline-block;
- width: 3px;
- height: 14px;
- margin-right: 6px;
- margin-top: -2px;
- background-color: #409eff;
- }
- }
- }
- </style>
|