限价
This commit is contained in:
@ -35,6 +35,12 @@
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="handleExport()" v-hasPermi="['tender:billofquantitiesLimitList:export']">导出excel</el-button>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" v-if="reviewStatus == 'draft'" @click="clickApprovalSheet()">审核</el-button>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" v-if="reviewStatus != 'draft'" @click="clickApprovalSheet()">查看流程</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-card>
|
||||
</transition>
|
||||
@ -131,7 +137,12 @@ const getVersionNums = async () => {
|
||||
}
|
||||
};
|
||||
//选择版本号
|
||||
const changeVersions = () => {
|
||||
const changeVersions = (val) => {
|
||||
options.value.forEach((item) => {
|
||||
if (item.versions == val) {
|
||||
reviewStatus.value = item.status;
|
||||
}
|
||||
});
|
||||
getSheetName();
|
||||
};
|
||||
|
||||
@ -283,6 +294,7 @@ const clickApprovalSheet = () => {
|
||||
};
|
||||
onUnmounted(() => {
|
||||
listeningProject();
|
||||
console.log(11111111);
|
||||
});
|
||||
onMounted(() => {
|
||||
getVersionNums();
|
||||
|
Reference in New Issue
Block a user