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