|
|
@ -30,8 +30,8 @@ |
|
|
|
v-model="inbound_form" |
|
|
|
v-model="inbound_form" |
|
|
|
ref="inbound_crud"> |
|
|
|
ref="inbound_crud"> |
|
|
|
<template #menu="{row,index,size}"> |
|
|
|
<template #menu="{row,index,size}"> |
|
|
|
<el-button size="small" type="text" @click="auditing_in(row)">审核</el-button> |
|
|
|
<el-button size="small" type="text" v-if="permission.auditing" @click="auditing_in(row)">审核</el-button> |
|
|
|
<el-button size="small" type="text" @click="reject_in(row)">驳回</el-button> |
|
|
|
<el-button size="small" type="text" v-if="permission.reject" @click="reject_in(row)">驳回</el-button> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</avue-crud> |
|
|
|
</avue-crud> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -45,8 +45,8 @@ |
|
|
|
v-model="outbound_form" |
|
|
|
v-model="outbound_form" |
|
|
|
ref="outbound_crud2"> |
|
|
|
ref="outbound_crud2"> |
|
|
|
<template #menu="{row,index,size}"> |
|
|
|
<template #menu="{row,index,size}"> |
|
|
|
<el-button size="small" type="text" @click="auditing_out(row)">审核</el-button> |
|
|
|
<el-button size="small" type="text" v-if="permission.auditing" @click="auditing_out(row)">审核</el-button> |
|
|
|
<el-button size="small" type="text" @click="reject_out(row)">驳回</el-button> |
|
|
|
<el-button size="small" type="text" v-if="permission.reject" @click="reject_out(row)">驳回</el-button> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</avue-crud> |
|
|
|
</avue-crud> |
|
|
|
</span> |
|
|
|
</span> |
|
|
@ -55,7 +55,7 @@ |
|
|
|
<el-button type="primary" |
|
|
|
<el-button type="primary" |
|
|
|
size="large" |
|
|
|
size="large" |
|
|
|
@click="handleFormSubmit" |
|
|
|
@click="handleFormSubmit" |
|
|
|
v-if="addUpdateShowButton"> |
|
|
|
v-if="addUpdateShowButton && permission.material_add"> |
|
|
|
确定</el-button> |
|
|
|
确定</el-button> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -70,6 +70,7 @@ |
|
|
|
<span slot="footer"> |
|
|
|
<span slot="footer"> |
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button> |
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button> |
|
|
|
<el-button type="primary" |
|
|
|
<el-button type="primary" |
|
|
|
|
|
|
|
v-if="permission.materialclasscode_add" |
|
|
|
@click="submitDia">确 定</el-button> |
|
|
|
@click="submitDia">确 定</el-button> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</el-dialog> |
|
|
|
</el-dialog> |
|
|
|