main
项洋 2 weeks ago
parent 6805c8d186
commit 3c50191851

@ -12,11 +12,44 @@
>
<el-row
style="display: flex; justify-content: center; padding-bottom: 50px"
v-if="pageType === 'look' && audit != true"
v-if="name == 'WebZC'"
>
<el-button type="danger" @click="sendBack"></el-button>
<!-- <el-button type="primary" @click="newAssets" :loading="loading"
>提交</el-button> -->
<el-button
type="danger"
@click="sendBack"
v-if="pageType === 'look' && audit != true"
>返回</el-button
>
<el-button type="danger" @click="sendBack" v-if="pageType === 'change'"
>取消</el-button
>
<el-button
type="primary"
@click="newAssets"
:loading="loading"
v-if="pageType === 'change'"
>提交</el-button
>
</el-row>
<el-row
style="display: flex; justify-content: center; padding-bottom: 50px"
v-if="taskId && assetId && taskId != '' && assetId != ''"
>
<el-button type="danger" @click="newAssets(0)"></el-button>
<el-button @click="newAssets(1)"></el-button>
<el-button type="warning" @click="newAssets(2)"></el-button>
<el-button type="success" @click="newAssets(3)" :loading="loading"
>提交</el-button
>
</el-row>
<el-row
style="display: flex; justify-content: center; padding-bottom: 50px"
v-if="pageType === 'look' && audit == true"
>
<el-button type="danger" @click="sendBack"></el-button>
<el-button type="primary" @click="newAssets" :loading="loading"
>提交</el-button
>
</el-row>
</webZCinfo>
<!-- <el-row
@ -64,7 +97,7 @@ const audit = ref(route.query.audit);
const isModdle = ref(route.query.isModdle);
const name = ref(route.query.name);
const queryData = ref(route.query.queryData);
const taskId = ref(route.query.taskId);
const taskId = ref(route.query.taskId || "");
const assetId = ref(route.query.assetId);
const type = ref(route.query.type);
const sendBack = () => {

@ -5084,6 +5084,7 @@ const queryData = ref(props.queryData);
const taskId = ref(props.taskId);
const assetId = ref(props.assetId);
const type = ref(props.type);
console.log(taskId.value,assetId.value,'taskId,assetId,type')
//
const {
zc_hlwkfyt,
@ -5696,7 +5697,7 @@ const getInfo = async (id) => {
};
onMounted(() => {
if (!type.value && type.value != "") {
if (type.value && type.value != "") {
let obj = {
taskId: taskId.value,
assetId: assetId.value,

Loading…
Cancel
Save