Blame view

src/views/ywbl/ywsq/slectBdcdata.js 2.01 KB
田浩浩 committed
1
export function queueDjywmc(djywbm) {
2 3 4 5 6
    let vm = null;
    switch (djywbm) {
        case "A03100"://建设用地使用权(首次登记)
        case "A05100"://宅基地使用权(首次登记)
        case "A07100"://集体建设用地使用权(首次登记)
田浩浩 committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20
            vm = "selectQjzdjbxx";
            break;
        case "A03200":
        case "A03300":
        case "A03400":
        case "A05200":
        case "A05300":
        case "A05400":
        case "A07200":
        case "A07300":
        case "A07400":
            vm = "selectJsydsyq";
            break;
        case "A04100"://国有建设用地使用权/房屋所有权(首次登记)
田浩浩 committed
21 22
        case "A06100":
        case "A08100":
田浩浩 committed
23 24
            vm = "fwsyq";
            break;
25 26 27 28 29
        case "A04200":
        case "A04300":
        case "A04400":
            vm="selectFwsyq";
            break;
田浩浩 committed
30 31 32 33 34 35 36 37 38 39 40 41
        case "A23100"://农用地使用权(首次登记)
        case "A09100"://土地经营权(首次登记)
            vm = "nydsyq100";
            break;
        case "A23200":
        case "A23300":
        case "A23400":
        case "A09200":
        case "A09300":
        case "A09400":
            vm = "nydsyq200";
            break;
田浩浩 committed
42 43 44
        case "A37200"://抵押权转移
        case "A37300"://抵押权变更
        case "A37400"://抵押权注销
田浩浩 committed
45 46
            vm = "diyaq";
            break;
田浩浩 committed
47 48
        case "B39300"://续封
        case "B39400"://解封
49 50
            vm = "cfdj";
            break;
51 52 53 54 55 56
        case "B40100"://预告首次
          vm ="selectYgdj100";
          break;
        case "B40200"://预告转移
        case "B40300"://预告变更
        case "B40400"://预告注销
57
        case "B41100": //预告抵押首次
58 59
          vm ="selectYgdj200";
          break;
60 61 62 63 64
        case "B41200": //预告抵押转移
        case "B41300": //预告抵押变更
        case "B41400": //预告抵押注销
          vm ="selectYgdy";
         break;
65
        default:
田浩浩 committed
66
            vm = "selecBdcql";
田浩浩 committed
67
            break;
68 69
    }
    return vm;
70
}