Compare commits

..

2 Commits

Author SHA1 Message Date
29acd58a3d Merge branch 'main' of http://61.139.16.27:26684/zy_oyj/sgxt_web 2025-12-12 18:17:32 +08:00
e73067aa9a 更新 2025-12-12 18:16:55 +08:00
3 changed files with 11 additions and 6 deletions

View File

@ -50,9 +50,9 @@ const formData = ref([
{ label: "会商开始时间", prop: "hskssj", type: "datetime" }, { label: "会商开始时间", prop: "hskssj", type: "datetime" },
{ label: "会商结束时间", prop: "hsjssj", type: "datetime" }, { label: "会商结束时间", prop: "hsjssj", type: "datetime" },
{ label: "会商内容", prop: "hsnr", type: "textarea", width: "100%" }, { label: "会商内容", prop: "hsnr", type: "textarea", width: "100%" },
{ label: "关联线索", prop: "glxsmc", type: "slot", }, // { label: "关联线索", prop: "glxsmc", type: "slot", },
{ label: "会商标题", prop: "hsbt", type: "input" }, { label: "会商标题", prop: "hsbt", type: "input" },
{ label: "参会人员", prop: "chryList", type: "slot" ,width:'100%'}, // { label: "参会人员", prop: "chryList", type: "slot" ,width:'100%'},
]); ]);
const listQuery = ref({}); //表单 const listQuery = ref({}); //表单
const loading = ref(false); const loading = ref(false);

View File

@ -23,7 +23,7 @@
</div> </div>
<div class="mid"> <div class="mid">
<div class="left"> <div class="left">
<div class="title ellipsis">参会人员{{ item.chry }}</div> <!-- <div class="title ellipsis">参会人员{{ item.chry }}</div> -->
<div class="desc"> <div class="desc">
<div class="info ellipsis" v-for="(el, i) in item.xsplList" :key="i">{{ i + 1 }}{{ el.plnr }}</div> <div class="info ellipsis" v-for="(el, i) in item.xsplList" :key="i">{{ i + 1 }}{{ el.plnr }}</div>
</div> </div>

View File

@ -51,7 +51,7 @@
<el-button type="primary" @click="pushWarning(item)">预警指派</el-button> <el-button type="primary" @click="pushWarning(item)">预警指派</el-button>
<el-button color="#ef7762" @click="showDetail(item)" style="color: #fff;">转合成</el-button> <el-button color="#ef7762" @click="showDetail(item)" style="color: #fff;">转合成</el-button>
<!-- <el-button type="warning">转基管</el-button> --> <!-- <el-button type="warning">转基管</el-button> -->
<el-button type="danger">转会商</el-button> <el-button type="danger" @click="showTransfer(item)">转会商</el-button>
<el-button type="success" @click="showFeedback(item, '签收')" v-if="item.czzt == '01'">签收</el-button> <el-button type="success" @click="showFeedback(item, '签收')" v-if="item.czzt == '01'">签收</el-button>
<el-button type="success" @click="showFeedback(item, '反馈')" v-if="item.czzt == '02'">反馈</el-button> <el-button type="success" @click="showFeedback(item, '反馈')" v-if="item.czzt == '02'">反馈</el-button>
<el-button type="success" @click="showFeedback(item, '查看反馈')" v-if="item.czzt == '03'">查看反馈</el-button> <el-button type="success" @click="showFeedback(item, '查看反馈')" v-if="item.czzt == '03'">查看反馈</el-button>
@ -70,9 +70,9 @@ import { qcckGet, qcckPost } from "@/api/qcckApi.js";
import HolographicArchive from './holographicArchive.vue' import HolographicArchive from './holographicArchive.vue'
import WarningAssignment from './warningAssignment.vue' import WarningAssignment from './warningAssignment.vue'
import { holographicProfileJump } from "@/utils/tools.js" import { holographicProfileJump } from "@/utils/tools.js"
import { useRoute, useRouter } from 'vue-router';
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
const router = useRouter();
const props = defineProps({ const props = defineProps({
item: { item: {
type: Object, type: Object,
@ -90,6 +90,11 @@ watch(() => props.item, (newVal, oldVal) => {
},{deep:true,immediate:true}) },{deep:true,immediate:true})
const emit = defineEmits(["plotThetrajectory", "showDetail", 'showFeedback','fkLxOptions']); const emit = defineEmits(["plotThetrajectory", "showDetail", 'showFeedback','fkLxOptions']);
const showTransfer = (item) => {
router.push({
path: '/MeetingRoom',
})
}
const changeBG = (str) => { const changeBG = (str) => {
switch (str) { switch (str) {
case "01": case "01":