|
@@ -811,6 +811,9 @@ export default {
|
|
|
this.resign_name = "";
|
|
|
this.hand_name = "";
|
|
|
this.status = "";
|
|
|
+
|
|
|
+ // { value: "0", label: "非项目" },
|
|
|
+ // { value: "1", label: "项目" },
|
|
|
// 重置
|
|
|
await this.$nextTick(async () => {
|
|
|
if (this.$refs.ruleForm) {
|
|
@@ -870,6 +873,16 @@ export default {
|
|
|
this.spec_tableData =
|
|
|
specinfo && specinfo.length > 0 ? JSON.parse(JSON.stringify(specinfo)) : [];
|
|
|
this.cat_id_name = "";
|
|
|
+
|
|
|
+ //非项目 projectNo不必填
|
|
|
+ if(this.sitem.is_project === '0'){
|
|
|
+ this.$set(this.rulesThis.projectNo, '0', {
|
|
|
+ required: false,
|
|
|
+ message: '请选择项目',
|
|
|
+ trigger: 'change'
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
if (can && can.length > 0) {
|
|
|
can.forEach((s, i) => {
|
|
|
if (i === 0 && s.id === "6") {
|