|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
|
- <div v-if="pageStatus == 0">配置加载中...</div>
|
|
|
- <div v-else-if="pageStatus == 1">此页面不对此账号开放</div>
|
|
|
- <div v-else-if="pageStatus == 2">权限已下放到站点,请登录站点账号配置</div>
|
|
|
- <div v-else-if="pageStatus == 3">加载发生错误</div>
|
|
|
- <div v-else-if="pageStatus == 4" class="app-container" style="padding-top: 5px">
|
|
|
+ <PermissionContainer
|
|
|
+ :jiBieArr="[2]"
|
|
|
+ :tipArr="[, '优惠方案只对站点级别开放', '', , '']"
|
|
|
+ >
|
|
|
+ <div style="padding-top: 5px">
|
|
|
<!--固态等级-->
|
|
|
<p style="margin: 5px">
|
|
|
<el-button
|
|
@@ -114,6 +114,8 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
+ </PermissionContainer>
|
|
|
+
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -179,7 +181,6 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
- this.setPageStatus();
|
|
|
this.getList();
|
|
|
listPrice().then((response) => {
|
|
|
this.oilNameOptions = response.rows;
|
|
@@ -187,11 +188,6 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
methods: {
|
|
|
- setPageStatus() {
|
|
|
- this.queryPageStatus([2]).then((res) => {
|
|
|
- this.pageStatus = res;
|
|
|
- });
|
|
|
- },
|
|
|
/** 查询客户优惠等级设置列表 */
|
|
|
getList() {
|
|
|
listSetting(this.queryParams).then((response) => {
|