|
@@ -7,9 +7,9 @@
|
|
v-show="showSearch"
|
|
v-show="showSearch"
|
|
label-width="86px"
|
|
label-width="86px"
|
|
>
|
|
>
|
|
- <el-form-item label="指标名称" prop="quotaName">
|
|
|
|
|
|
+ <!-- <el-form-item label="指标名称" prop="quotaName">
|
|
<el-input v-model="queryParams.quotaName"></el-input>
|
|
<el-input v-model="queryParams.quotaName"></el-input>
|
|
- </el-form-item>
|
|
|
|
|
|
+ </el-form-item> -->
|
|
<el-form-item label="保税区名称" prop="bondedName">
|
|
<el-form-item label="保税区名称" prop="bondedName">
|
|
<el-select
|
|
<el-select
|
|
v-model="queryParams.bondedName"
|
|
v-model="queryParams.bondedName"
|
|
@@ -354,19 +354,11 @@
|
|
</el-timeline-item>
|
|
</el-timeline-item>
|
|
</el-timeline>
|
|
</el-timeline>
|
|
|
|
|
|
- <div slot="footer" v-if="!isAppoval" class="dialog-footer">
|
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
|
- </div>
|
|
|
|
- <div slot="footer" v-else class="dialog-footer">
|
|
|
|
- <el-button type="primary" @click="setRejectAndResolve('resolve')"
|
|
|
|
- >通 过</el-button
|
|
|
|
- >
|
|
|
|
- <el-button type="warning" @click="setRejectAndResolve('reject')"
|
|
|
|
- >驳 回</el-button
|
|
|
|
- >
|
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button type="primary" v-if="!isAppoval" @click="submitForm">确 定</el-button>
|
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -395,6 +387,7 @@ export default {
|
|
name: "QUOTABONDED",
|
|
name: "QUOTABONDED",
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ user:null,
|
|
// 查看修改
|
|
// 查看修改
|
|
check: false,
|
|
check: false,
|
|
|
|
|
|
@@ -469,6 +462,7 @@ export default {
|
|
// });
|
|
// });
|
|
this.getList();
|
|
this.getList();
|
|
this.getDeptList();
|
|
this.getDeptList();
|
|
|
|
+
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
checkPermi,
|
|
checkPermi,
|
|
@@ -491,6 +485,7 @@ export default {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
listDept({ parentId: "100" }).then((response) => {
|
|
listDept({ parentId: "100" }).then((response) => {
|
|
getInfo().then((res) => {
|
|
getInfo().then((res) => {
|
|
|
|
+ this.user = res.user.roles[0];
|
|
if (res.user.dept.type == 2) {
|
|
if (res.user.dept.type == 2) {
|
|
response.data.forEach((item) => {
|
|
response.data.forEach((item) => {
|
|
if (item.deptId == res.user.dept.deptId) {
|
|
if (item.deptId == res.user.dept.deptId) {
|