d344195e by renchao@pashanhoo.com

style:预告买卖登记

1 parent a4b013aa
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2023-09-22 10:12:37
* @LastEditTime: 2023-10-12 17:14:26
-->
<template>
<div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }">
......@@ -143,7 +143,7 @@
judgeBatchShow () {
this.showBatch = false;
if (this.unitData.length > 1) {
let qllx = this.$route.query?.sqywbm?.substring(0, 3);
let qllx = this.$route.query?.djywbm?.substring(0, 3);
switch (qllx) {
case 'A04':
this.showBatch = true;
......
<!--
* @Description: workFrame左侧菜单列表-分割
* @Autor: renchao
* @LastEditTime: 2023-09-21 14:44:34
* @LastEditTime: 2023-10-12 17:12:42
-->
<template>
<div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }">
......@@ -159,7 +159,7 @@
judgeBatchShow () {
this.showBatch = false;
if (this.afterUnitData.length > 1) {
let qllx = this.$route.query?.sqywbm?.substring(0, 3);
let qllx = this.$route.query?.djywbm?.substring(0, 3);
switch (qllx) {
case 'B39':
this.showBatch = true;
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-25 10:33:39
* @LastEditTime: 2023-10-12 17:05:40
-->
<template>
<div class="from-clues">
......@@ -315,7 +315,7 @@
} else {
const { href } = this.$router.resolve(
"/workFrame?bsmSlsq=" + item.bsmSlsq +
"&bestepid=" + item.bestepid +
"&bestepid=" + item.bestepid + "&djywbm=" + item.djywbm +
"&zbhj=" + item.zbhj
)
window.open(href, `workFrame${item.bsmSlsq}`)
......
......@@ -143,7 +143,7 @@
v-model="ruleForm.ygdj.jzmj"
:disabled="!viewEdit"
oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
<el-select disabled v-model="mjdw" style="width: 68px">
<el-select :disabled="!viewEdit" v-model="mjdw" style="width: 68px">
<el-option
v-for="item in dictData['A7']"
:key="item.dcode"
......@@ -161,7 +161,6 @@
:disabled="!viewEdit"
maxlength="11"
v-model="ruleForm.ygdj.qdjg"
style="width: 500%"
oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
<el-select
v-model="ruleForm.ygdj.jedw"
......@@ -182,7 +181,7 @@
<el-col :span="24">
<el-form-item label="附记:">
<el-input
:disabled="!viewEdit"
:disabled="!viewEdit"
v-model="ruleForm.ygdj.fj"
type="textarea"
maxlength="500"
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-21 14:59:02
* @LastEditTime: 2023-10-12 17:26:24
*/
import Router from '@/router'
export default {
methods: {
//点击行选中或取消复选框
/**
* @description: 点击行选中或取消复选框
* @param {*} row
......@@ -24,7 +23,7 @@ export default {
jump (data, type) {
const { href } = Router.resolve(
"/workFrame?bsmSlsq=" + data.bsmSlsq +
"&bestepid=" + data.bestepid + "&zbhj=受理"
"&bestepid=" + data.bestepid + "&djywbm=" + data.djywbm + "&zbhj=受理"
)
window.open(href, "_blank")
this.$popupCacel()
......