|
@@ -411,8 +411,7 @@
|
|
|
type="text"
|
|
|
v-if="
|
|
|
scope.row.peopleoneState == '1' &&
|
|
|
- scope.row.shenpijiedian == '3' &&
|
|
|
- scope.row.yingjicaozuoren == 'oneji'
|
|
|
+ scope.row.shenpijiedian == '3'
|
|
|
"
|
|
|
@click="handleShenPi(scope.row)"
|
|
|
v-hasPermi="['militaryvehicleManagement:thebusApply:edit']"
|
|
@@ -424,8 +423,7 @@
|
|
|
type="text"
|
|
|
v-if="
|
|
|
scope.row.peopletwoState == '1' &&
|
|
|
- scope.row.shenpijiedian == '4' &&
|
|
|
- scope.row.yingjicaozuoren == 'twoji'
|
|
|
+ scope.row.shenpijiedian == '4'
|
|
|
"
|
|
|
@click="handleShenPi(scope.row)"
|
|
|
v-hasPermi="['militaryvehicleManagement:thebusApply:edit']"
|
|
@@ -437,8 +435,7 @@
|
|
|
type="text"
|
|
|
v-if="
|
|
|
scope.row.peoplethreeState == '1' &&
|
|
|
- scope.row.shenpijiedian == '5' &&
|
|
|
- scope.row.yingjicaozuoren == 'threeji'
|
|
|
+ scope.row.shenpijiedian == '5'
|
|
|
"
|
|
|
@click="handleShenPi(scope.row)"
|
|
|
v-hasPermi="['militaryvehicleManagement:thebusApply:edit']"
|
|
@@ -1184,7 +1181,7 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
} else if (this.form.shenpijiedian == "2") {
|
|
|
- // console.log("初级");
|
|
|
+ console.log("初级");
|
|
|
this.form.isTongguo = "0";
|
|
|
exportThebusChu(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
@@ -1194,7 +1191,7 @@ export default {
|
|
|
return;
|
|
|
} else if (this.form.shenpijiedian == "3") {
|
|
|
this.form.isTongguo = "0";
|
|
|
- // console.log("一级");
|
|
|
+ console.log("一级");
|
|
|
exportThebusOne(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
|
this.getList();
|
|
@@ -1203,7 +1200,7 @@ export default {
|
|
|
return;
|
|
|
} else if (this.form.shenpijiedian == "4") {
|
|
|
this.form.isTongguo = "0";
|
|
|
- // console.log("二级");
|
|
|
+ console.log("二级");
|
|
|
exportThebusTwo(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
|
this.getList();
|
|
@@ -1212,7 +1209,7 @@ export default {
|
|
|
return;
|
|
|
} else if (this.form.shenpijiedian == "5") {
|
|
|
this.form.isTongguo = "0";
|
|
|
- // console.log("三级");
|
|
|
+ console.log("三级");
|
|
|
exportThebusThree(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
|
this.getList();
|