'123'
This commit is contained in:
parent
ae05a9b055
commit
fc68bc000e
|
@ -126,6 +126,25 @@
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources</directory>
|
||||||
|
<targetPath>BOOT-INF</targetPath>
|
||||||
|
<includes>
|
||||||
|
<include>**/*.jar</include>
|
||||||
|
</includes>
|
||||||
|
</resource>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources/META-INF</directory>
|
||||||
|
<includes>
|
||||||
|
<include>spring.factories</include>
|
||||||
|
</includes>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
</resource>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources</directory>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -133,7 +152,9 @@
|
||||||
<version>2.5.15</version>
|
<version>2.5.15</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
||||||
|
<!--
|
||||||
<includeSystemScope>true</includeSystemScope>
|
<includeSystemScope>true</includeSystemScope>
|
||||||
|
-->
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
|
|
@ -124,6 +124,9 @@
|
||||||
},
|
},
|
||||||
// 取消按钮
|
// 取消按钮
|
||||||
cancel() {
|
cancel() {
|
||||||
|
this.customerList = [];
|
||||||
|
this.total = 0;
|
||||||
|
this.resetForm("queryForm");
|
||||||
this.$emit('cancel');
|
this.$emit('cancel');
|
||||||
},
|
},
|
||||||
// 确定按钮
|
// 确定按钮
|
||||||
|
|
|
@ -42,7 +42,6 @@
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
:label="dict.label"
|
:label="dict.label"
|
||||||
:value="dict.value"
|
:value="dict.value"
|
||||||
v-if="(!cusApprovalStatusHidden && (dict.value == '1' || dict.value == '2')) || cusApprovalStatusHidden "
|
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -607,8 +606,6 @@ export default {
|
||||||
dicts: ['cus_currency','cus_group','cus_approval_status', 'cus_type', 'common_state'],
|
dicts: ['cus_currency','cus_group','cus_approval_status', 'cus_type', 'common_state'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
//提交状态下拉框数据设置
|
|
||||||
cusApprovalStatusHidden: true,
|
|
||||||
//选项卡默认
|
//选项卡默认
|
||||||
activeName: 'customerInfo',
|
activeName: 'customerInfo',
|
||||||
|
|
||||||
|
@ -773,8 +770,7 @@ export default {
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const roles = this.$store.state.user.roles;
|
const roles = this.$store.state.user.roles;
|
||||||
if(roles && roles.indexOf('ITZX_SJZ') !== -1 && roles.indexOf('admin') == -1 ){//数据组默认查看审批中 单据
|
if(roles && roles.indexOf('ITZX_SJZ') !== -1 ){//数据组默认查看待审核 单据
|
||||||
this.cusApprovalStatusHidden = false;
|
|
||||||
this.queryParams.cusApprovalStatus = '1';
|
this.queryParams.cusApprovalStatus = '1';
|
||||||
}
|
}
|
||||||
this.getList();
|
this.getList();
|
||||||
|
|
|
@ -32,7 +32,6 @@
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
:label="dict.label"
|
:label="dict.label"
|
||||||
:value="dict.value"
|
:value="dict.value"
|
||||||
v-if="!quotApprovalStatusHidden && (dict.value == '1' || dict.value == '2') "
|
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -790,8 +789,6 @@ export default {
|
||||||
dicts: ['quot_approval_status','quot_jsxz_group','quot_jsxz_chapter','quot_jsxz_approval_status','quot_jsxz_standard','quot_hj_approval_status'],
|
dicts: ['quot_approval_status','quot_jsxz_group','quot_jsxz_chapter','quot_jsxz_approval_status','quot_jsxz_standard','quot_hj_approval_status'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
//提交状态下拉框数据设置
|
|
||||||
quotApprovalStatusHidden: true,
|
|
||||||
//选项卡默认
|
//选项卡默认
|
||||||
activeName: 'quotInfo',
|
activeName: 'quotInfo',
|
||||||
|
|
||||||
|
@ -898,9 +895,8 @@ export default {
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const roles = this.$store.state.user.roles;
|
const roles = this.$store.state.user.roles;
|
||||||
if(roles && roles.indexOf('QUOT') !== -1 && roles.indexOf('admin') == -1 ){//报价组默认查看待审核 单据
|
if(roles && roles.indexOf('QUOT') !== -1 ){//报价组默认查看待审核 单据
|
||||||
this.quotApprovalStatusHidden = false;
|
this.queryParams.quotApprovalStatus = '1';
|
||||||
this.queryParams.quotApprovalStatus = '1';
|
|
||||||
}
|
}
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
:label="dict.label"
|
:label="dict.label"
|
||||||
:value="dict.value"
|
:value="dict.value"
|
||||||
v-if="!quotApprovalStatusHidden && (dict.value == '1' || dict.value == '2') "
|
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -176,9 +175,6 @@
|
||||||
dicts:['rb_quot_approval_status'],
|
dicts:['rb_quot_approval_status'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
//提交状态下拉框数据设置
|
|
||||||
quotApprovalStatusHidden: true,
|
|
||||||
|
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: true,
|
loading: true,
|
||||||
// 显示搜索条件
|
// 显示搜索条件
|
||||||
|
@ -229,11 +225,9 @@
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const roles = this.$store.state.user.roles;
|
const roles = this.$store.state.user.roles;
|
||||||
if(roles && roles.indexOf('QUOT') !== -1 && roles.indexOf('admin') == -1 ){//报价组默认查看待审核 单据
|
if(roles && roles.indexOf('QUOT') !== -1 ){//报价组默认查看待审核 单据
|
||||||
this.quotApprovalStatusHidden = false;
|
|
||||||
this.queryParams.quotApprovalStatus = '1';
|
this.queryParams.quotApprovalStatus = '1';
|
||||||
}
|
}
|
||||||
|
|
||||||
this.getList();
|
this.getList();
|
||||||
this.getVersionList();
|
this.getVersionList();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue