Browse Source

no message

GeekFish 4 years ago
parent
commit
a0f204302e

+ 10 - 0
src/api/cardshow.js

@@ -0,0 +1,10 @@
+import request from '@/utils/request'
+
+//获取证书
+export function cardshowInfo(query) {
+  return request({
+    url: '/system/web/order/credential',
+    method: 'get',
+    params: query
+  })
+}

+ 96 - 0
src/components/CardShow/index.vue

@@ -0,0 +1,96 @@
+<template>
+  <el-dialog
+    :title="modalTitle"
+    :visible.sync="modalVisible"
+    :width="formLabelWidth"
+    top="2vh"
+    @close="handleCancel">
+    <div class="mobile">
+        <iframe
+        v-if="showStatus"
+        :src="cardShowUrl + 'credentialNo=' + datas.credentialNo + '&customerName=' + datas.customerName + '&carbonAmount=' + datas.carbonAmount + '&orderAmount=' + datas.orderAmount + '&buyDate=' + datas.buyDate + '&year=' + datas.year +  '&farmerName=' + datas.farmerName + '&nickName=' + datas.nickName + '&companyName=' + datas.companyName + '&isH5=0'"
+        frameborder="0"
+        width="100%"
+        height="500px"></iframe>
+    </div>
+    <div slot="footer" class="dialog-footer">
+      <el-button @click="handleCancel">取 消</el-button>
+    </div>
+  </el-dialog>
+</template>
+
+<script>
+import { cardshowInfo } from "@/api/cardshow";
+export default {
+  name: 'cardshow',
+  props: {
+    visible: {
+      type: Boolean,
+      default: false
+    },
+    title: {
+      type: String,
+      default: 'title'
+    },
+    selectRow: {
+      type: Object,
+      default:null
+    }
+  },
+  watch: {
+    visible(newVal, oldVal) {
+      this.modalVisible = newVal;
+    },
+    title(newVal, oldVal) {
+      this.modalTitle = newVal;
+    },
+    selectRow(newVal, oldVal) {
+      this.modalSelectRow = newVal;
+    }
+  },
+  data() {
+    return {
+      modalTitle: this.title,
+      modalVisible: this.visible,
+      modalAction: this.action,
+      modalSelectRow: this.selectRow,
+      formLabelWidth: '424px',
+      showStatus:false,
+      //窗口权限
+      limit: {
+        isRead: false, //是否只读
+        isAdd: false //是否可写
+      },
+      datas:{
+        credentialNo:''
+      }
+    };
+  },
+  created() {
+    this.initDatas(this.modalSelectRow)
+  },
+  methods: {
+    //数据初始化
+    initDatas(item){
+      let params = {
+        guid:item.guid
+      }
+      cardshowInfo(params).then(res => {
+          if(res.retHead.errCode == 0){
+            this.datas = res.retBody
+            this.showStatus = true
+          }
+        }
+      );
+    },
+    //窗口关闭
+    handleCancel() {
+      this.$emit('closeCardShowModal', false);
+    }
+  }
+};
+</script>
+
+<style lang="scss" scoped>
+
+</style>

+ 2 - 1
src/main.js

@@ -34,7 +34,8 @@ Vue.prototype.selectDictLabel = selectDictLabel
 Vue.prototype.selectDictLabels = selectDictLabels
 Vue.prototype.download = download
 Vue.prototype.handleTree = handleTree
-Vue.prototype.imgRequest = "http://fqn.hongweisoft.com/";
+Vue.prototype.imgRequest = "http://fqn.hongweisoft.com/";
+Vue.prototype.cardShowUrl = "http://172.16.90.6:8080?"
 
 Vue.prototype.msgSuccess = function (msg) {
   this.$message({ showClose: true, message: msg, type: "success" });

+ 2 - 1
src/views/bankCheck/bank/index.vue

@@ -158,7 +158,8 @@ export default {
     getList() {
       this.loading = true;
       listBank(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
-          if(res.retHead.errCode == 0){
+          console.log(res)
+		  if(res.retHead.errCode == 0){
             this.list = res.retBody
             this.total = res.retHead.total;
           }

+ 24 - 8
src/views/order/baseOrder/index.vue

@@ -112,12 +112,23 @@
         :limit.sync="queryParams.pageSize"
         @pagination="getList"
       />
+      <card-show
+        v-if="modal.cardShow.visibleModal"
+        :title="modal.cardShow.title"
+        :visible="modal.cardShow.visibleModal"
+        :selectRow="modal.cardShow.selectRow"
+        @closeCardShowModal="closeCardShowModal"
+      ></card-show>
   </div>
 </template>
 <script>
+import CardShow from '@/components/CardShow'
 import { listOrder } from "@/api/order/baseOrder";
 export default {
   name: "baseOrder",
+  components:{
+    CardShow
+  },
   data() {
     return {
       // 遮罩层
@@ -135,6 +146,14 @@ export default {
       dateRange: [],
       // 表单参数
       form: {},
+      //弹出层
+      modal:{
+        cardShow:{
+          title:'',
+          visibleModal:false,
+          selectRow:null
+        }
+      },
       // 查询参数
       queryParams: {
         pageNo: 1,
@@ -187,16 +206,13 @@ export default {
     },
     /**证书查看**/
     handleCertificate(item){
-
+      this.modal.cardShow.visibleModal = true
+      this.modal.cardShow.title = '证书查看'
+      this.modal.cardShow.selectRow = item
     },
     //窗口关闭
-    closeCreateModal(flag = false){
-      this.modal.create.visibleModal = false
-      flag && this.getList()
-    },
-    closePlaypayModal(flag = false){
-      this.modal.playpay.visibleModal = false
-      flag && this.getList()
+    closeCardShowModal(){
+      this.modal.cardShow.visibleModal = false
     }
   }
 };

+ 21 - 2
src/views/order/inlineOrder/index.vue

@@ -125,17 +125,26 @@
           :selectRow="modal.playpay.selectRow"
           @closePlaypayModal="closePlaypayModal"
       ></pay-mobiel>
+      <card-show
+        v-if="modal.cardShow.visibleModal"
+        :title="modal.cardShow.title"
+        :visible="modal.cardShow.visibleModal"
+        :selectRow="modal.cardShow.selectRow"
+        @closeCardShowModal="closeCardShowModal"
+      ></card-show>
   </div>
 </template>
 <script>
 import { listOrder , delApplyItem , areaTree} from "@/api/order/inlineOrder";
+import CardShow from '@/components/CardShow'
 import addMobiel from './modal/addMobiel'
 import payMobiel from './modal/payMobiel'
 export default {
   name: "inlineOrder",
   components: {
     addMobiel,
-    payMobiel
+    payMobiel,
+    CardShow
   },
   data() {
     return {
@@ -163,6 +172,11 @@ export default {
           title:'',
           visibleModal:false,
           selectRow:null
+        },
+        cardShow:{
+          title:'',
+          visibleModal:false,
+          selectRow:null
         }
       },
       // 查询参数
@@ -225,7 +239,9 @@ export default {
     },
     /**证书查看**/
     handleCertificate(item){
-
+      this.modal.cardShow.visibleModal = true
+      this.modal.cardShow.title = '证书查看'
+      this.modal.cardShow.selectRow = item
     },
     //窗口关闭
     closeCreateModal(flag = false){
@@ -235,6 +251,9 @@ export default {
     closePlaypayModal(flag = false){
       this.modal.playpay.visibleModal = false
       flag && this.getList()
+    },
+    closeCardShowModal(){
+      this.modal.cardShow.visibleModal = false
     }
   }
 };

+ 1 - 1
src/views/productManage/commodity/modal/addMobiel.vue

@@ -3,7 +3,7 @@
     :title="modalTitle"
     :visible.sync="modalVisible" :width="formLabelWidth" top="2vh" @close="handleCancel">
     <div class="mobile">
-        <el-form label-width="90px" :model="form" :rules="rules" ref="from" class="from">
+        <el-form label-width="90px" :model="form" ref="from" class="from">
           <el-form-item label="碳汇量:" prop="carbonVal">
             <el-input type="text" v-model="form.carbonVal" :disabled="limit.isRead"></el-input>
           </el-form-item>

+ 2 - 2
vue.config.js

@@ -35,9 +35,9 @@ module.exports = {
       // detail: https://cli.vuejs.org/config/#devserver-proxy
       [process.env.VUE_APP_BASE_API]: {
         // target: `http://172.16.90.94:21998`,
-        target: `http://bobo.hw.hongweisoft.com/lymcq`,
+        // target: `http://bobo.hw.hongweisoft.com/lymcq`,
         // target: `http://172.16.90.64:21998`,
-        // target: `http://172.16.90.102:21998`, //qiubo
+        target: `http://172.16.90.102:21998`, //qiubo
         // target: `http://172.16.90.110:21998`, //lql
         // target: `http://172.16.90.8:21998`, //zdd
         // target: `http://47.108.214.98:21998`, //online