|
|
|
@ -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 = () => {
|
|
|
|
|