yxh
yxh
2023-08-24 ac4e8c44318369bbd246d6344bc29441a1904ddb
src/views/project/fund/applyDetail/index.vue
@@ -151,7 +151,7 @@
                </el-select>
              </template>
            </el-table-column>
            <el-table-column prop="price" align="center" label="单价" width="120" v-if="0">
            <el-table-column prop="price" align="center" label="单价" width="120" v-if="businessType == 4">
              <template slot-scope="scope">
                <el-input v-model="scope.row.price" placeholder="单价" @blur="val => {
                  sumTotalFee(scope.row);
@@ -159,7 +159,7 @@
                  " />
              </template>
            </el-table-column>
            <el-table-column prop="quantity" align="center" label="数量" width="120" v-if="0">
            <el-table-column prop="quantity" align="center" label="数量" width="120" v-if="businessType == 4">
              <template slot-scope="scope">
                <el-input v-model="scope.row.quantity" placeholder="数量" @blur="val => {
                  sumTotalFee(scope.row);
@@ -168,7 +168,7 @@
              </template>
            </el-table-column>
            <el-table-column v-if="businessType == 3 || businessType == 4 || ismanager == true" prop="amount"
              align="center" label="税前金额" width="120">
              align="center" :label=amountLabel width="120">
              <template slot-scope="scope">
                <!--
                  <el-select v-model="scope.row.amount" placeholder="税前金额" clearable filterable allow-create
@@ -177,7 +177,7 @@
                    :value="dict.expense"></el-option>
                </el-select>
              -->
                <el-input v-model="scope.row.amount" placeholder="税前金额" />
                <el-input v-model="scope.row.amount" placeholder="金额" />
              </template>
            </el-table-column>
            <el-table-column prop="taxedamount" align="center" label="税后金额" width="120" v-if="(this.ismanager == true) &
@@ -666,6 +666,8 @@
      //专家/单位选择:expert/unit
      selectionType: "",
      showSelectionDialog: false,
      //税前金额标题:专家费-税前金额;医学成本、办公费用-金额
      amountLabel:"税前金额",
      // 表单校验
      rules: {
@@ -857,11 +859,13 @@
      if (this.businessType == "1") {
        this.curCase = this.$route.query.curCase;
        this.businessName = "专家劳务费申请单"
        this.amountLabel="税前金额"
        this.getUnitList();
      }
      else if (this.businessType == "2") {
        this.curCase = this.$route.query.curCase;
        this.businessName = "伦理专家劳务费申请单";
        this.amountLabel="税前金额"
        this.getUnitList();
      }
      else if (this.businessType == "3") {
@@ -869,9 +873,11 @@
          this.curCase = this.$route.query.curCase;
        }
        this.businessName = "医学成本报销单";
        this.amountLabel="金额"
      }
      else if (this.businessType == "4") {
        this.businessName = "办公费用报销单";
        this.amountLabel="金额"
        // this.getBaseInfoList();
      }
@@ -1321,6 +1327,7 @@
        if (
          this.userprofile.createBy == "admin" ||
          this.userprofile.createBy == "001" ||
          this.userprofile.createBy == "012" ||
          this.userprofile.createBy == "002"
        ) {
          this.ismanager = true;