first commit

This commit is contained in:
monjack
2025-06-20 18:01:48 +08:00
commit 6daa6d65c1
24611 changed files with 2512443 additions and 0 deletions

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202241401011\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401011\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,+CAA+C;MACnDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, vModelText as _vModelText, withDirectives as _withDirectives, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n class: \"Hypertension_1\"\n};\nconst _hoisted_2 = {\n id: \"result\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(\"div\", _hoisted_1, [_createElementVNode(\"div\", _hoisted_2, _toDisplayString($data.result), 1 /* TEXT */), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"userName\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.userName = $event),\n placeholder: \"考生姓名\"\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.userName]]), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"sbp\",\n \"onUpdate:modelValue\": _cache[1] || (_cache[1] = $event => $data.sbp = $event),\n placeholder: \"收缩压\"\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.sbp]]), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"dbp\",\n \"onUpdate:modelValue\": _cache[2] || (_cache[2] = $event => $data.dbp = $event),\n placeholder: \"舒张压\"\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.dbp]]), _createElementVNode(\"button\", {\n id: \"getResult\",\n onClick: _cache[3] || (_cache[3] = (...args) => $options.getResult && $options.getResult(...args))\n }, \"获取结果\")]);\n}","map":{"version":3,"names":["class","id","_createElementBlock","_hoisted_1","_createElementVNode","_hoisted_2","_toDisplayString","$data","result","type","userName","$event","placeholder","sbp","dbp","onClick","_cache","args","$options","getResult"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <div class=\"Hypertension_1\">\r\n <div id=\"result\">{{ result }}</div>\r\n <input type=\"text\" id=\"userName\" v-model=\"userName\" placeholder=\"考生姓名\" />\r\n <input type=\"text\" id=\"sbp\" v-model=\"sbp\" placeholder=\"收缩压\" />\r\n <input type=\"text\" id=\"dbp\" v-model=\"dbp\" placeholder=\"舒张压\" />\r\n <button id=\"getResult\" @click=\"getResult\">获取结果</button>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: 'Hypertension_1',\r\n data() {\r\n return {\r\n proxy: 'http://10.128.128.249:8022/',\r\n url: 'public_api/v1/api_for_vue_exam_hypertension_1',\r\n userName: '考生姓名',\r\n sbp: 0,\r\n dbp: 0,\r\n result: ''\r\n };\r\n },\r\n methods: {\r\n getResult() {\r\n const formData = new FormData();\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n let url = this.proxy + this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n ).then(\r\n function (response) {\r\n that.result = response.data; // 假设服务器返回的数据直接显示\r\n },\r\n function (error) {\r\n that.result = '获取结果失败';\r\n console.error(error);\r\n }\r\n );\r\n }\r\n },\r\n mounted() {\r\n window.myVue = this;\r\n }\r\n };\r\n</script>\r\n\r\n<style scoped>\r\n /* 添加一些简单的样式 */\r\n .Hypertension_1 {\r\n margin: 20px;\r\n }\r\n input, button {\r\n margin: 5px;\r\n }\r\n</style>"],"mappings":";;EACSA,KAAK,EAAC;AAAgB;;EAClBC,EAAE,EAAC;AAAQ;;uBADpBC,mBAAA,CAMM,OANNC,UAMM,GALFC,mBAAA,CAAmC,OAAnCC,UAAmC,EAAAC,gBAAA,CAAfC,KAAA,CAAAC,MAAM,kB,gBAC1BJ,mBAAA,CAAyE;IAAlEK,IAAI,EAAC,MAAM;IAACR,EAAE,EAAC,UAAU;+DAAUM,KAAA,CAAAG,QAAQ,GAAAC,MAAA;IAAEC,WAAW,EAAC;iDAAtBL,KAAA,CAAAG,QAAQ,E,mBAClDN,mBAAA,CAA8D;IAAvDK,IAAI,EAAC,MAAM;IAACR,EAAE,EAAC,KAAK;+DAAUM,KAAA,CAAAM,GAAG,GAAAF,MAAA;IAAEC,WAAW,EAAC;iDAAjBL,KAAA,CAAAM,GAAG,E,mBACxCT,mBAAA,CAA8D;IAAvDK,IAAI,EAAC,MAAM;IAACR,EAAE,EAAC,KAAK;+DAAUM,KAAA,CAAAO,GAAG,GAAAH,MAAA;IAAEC,WAAW,EAAC;iDAAjBL,KAAA,CAAAO,GAAG,E,GACxCV,mBAAA,CAAuD;IAA/CH,EAAE,EAAC,WAAW;IAAEc,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,SAAA,IAAAD,QAAA,CAAAC,SAAA,IAAAF,IAAA,CAAS;KAAE,MAAI,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, vModelText as _vModelText, withDirectives as _withDirectives, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", {\n id: \"div_1\",\n ref: \"refName\"\n }, _toDisplayString($data.refName), 513 /* TEXT, NEED_PATCH */), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"name\",\n value: \"\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.refName = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.refName]])], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createElementVNode","id","ref","$data","refName","type","value","$event"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Ref_1.vue"],"sourcesContent":["<template>\r\n <div id=\"div_1\" ref=\"refName\">{{refName}}</div>\r\n <input type=\"text\" id=\"name\" value=\"\" v-model=\"refName\" >\r\n</template>\r\n\r\n<script>\r\n import {ref} from \"vue\";\r\n export default {\r\n name: \"Ref_1\",\r\n data(){\r\n return{\r\n refName:ref('mike'),\r\n refInputName:ref(\"null\"),\r\n }\r\n },\r\n mounted(){\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;6DACIA,mBAAA,CAA+C;IAA1CC,EAAE,EAAC,OAAO;IAACC,GAAG,EAAC;sBAAYC,KAAA,CAAAC,OAAO,gC,gBACvCJ,mBAAA,CAAyD;IAAlDK,IAAI,EAAC,MAAM;IAACJ,EAAE,EAAC,MAAM;IAACK,KAAK,EAAC,EAAE;+DAAUH,KAAA,CAAAC,OAAO,GAAAG,MAAA;iDAAPJ,KAAA,CAAAC,OAAO,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, vModelText as _vModelText, withDirectives as _withDirectives, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"result\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[4] || (_cache[4] = _createElementVNode(\"h3\", null, \"居民血压管理系统\", -1 /* CACHED */)), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.result), 1 /* TEXT */), _cache[5] || (_cache[5] = _createTextVNode(\" 居民姓名:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"userName\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.userName = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.userName]]), _cache[6] || (_cache[6] = _createTextVNode(\" sbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"sbp\",\n \"onUpdate:modelValue\": _cache[1] || (_cache[1] = $event => $data.sbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.sbp]]), _cache[7] || (_cache[7] = _createTextVNode(\" dbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"dbp\",\n \"onUpdate:modelValue\": _cache[2] || (_cache[2] = $event => $data.dbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.dbp]]), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getResult\",\n onClick: _cache[3] || (_cache[3] = (...args) => $options.getResult && $options.getResult(...args)),\n value: \"getResult\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","result","type","userName","$event","sbp","dbp","onClick","_cache","args","$options","getResult","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"王仁杰\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAQ;;uFADhBC,mBAAA,CAAiB,YAAb,UAAQ,qBACZA,mBAAA,CAAiC,OAAjCC,UAAiC,EAAAC,gBAAA,CAAdC,KAAA,CAAAC,MAAM,kB,2CAAQ,QAC5B,I,gBAAAJ,mBAAA,CAAoD;IAA7CK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,UAAU;+DAAUI,KAAA,CAAAG,QAAQ,GAAAC,MAAA;iDAARJ,KAAA,CAAAG,QAAQ,E,8CAAE,OACrD,I,gBAAAN,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAK,GAAG,GAAAD,MAAA;iDAAHJ,KAAA,CAAAK,GAAG,E,8CAAE,OAC1C,I,gBAAAR,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAM,GAAG,GAAAF,MAAA;iDAAHJ,KAAA,CAAAM,GAAG,E,GAC5CT,mBAAA,CAAyE;IAAlEK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,WAAW;IAAEW,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,SAAA,IAAAD,QAAA,CAAAC,SAAA,IAAAF,IAAA,CAAS;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Hypertension_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_hypertension_1\",\n userName: \"\",\n sbp: 0,\n dbp: 0,\n result: \"\"\n };\n },\n methods: {\n getResult() {\n const formData = new FormData();\n formData.append(\"userName\", this.userName);\n formData.append(\"sbp\", this.sbp);\n formData.append(\"dbp\", this.dbp);\n let url = this.proxy + this.url;\n let that = this;\n this.axios.post(url, formData, {\n headers: {\n 'Content-Type': 'multipart/form-data'\n }\n }).then(function (response) {\n that.result = response.data;\n }, function (error) {\n console.log(\"有可能是防火墙没有开\");\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","userName","sbp","dbp","result","methods","getResult","formData","FormData","append","that","axios","post","headers","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAUI,eAAe;EACXA,IAAI,EAAE,gBAAgB;EACtBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,gDAAgD;MACpDC,QAAQ,EAAC,EAAE;MACXC,GAAG,EAAC,CAAC;MACLC,GAAG,EAAC,CAAC;MACLC,MAAM,EAAC;IACX;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,SAASA,CAAA,EAAE;MAEP,MAAMC,QAAO,GAAI,IAAIC,QAAQ,CAAC,CAAC;MAE/BD,QAAQ,CAACE,MAAM,CAAC,UAAU,EAAE,IAAI,CAACR,QAAQ,CAAC;MAC1CM,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACP,GAAG,CAAC;MAChCK,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACN,GAAG,CAAC;MAEhC,IAAIH,GAAE,GAAI,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG;MAC7B,IAAIU,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,IAAI,CACXZ,GAAG,EACHO,QAAQ,EACR;QACIM,OAAO,EAAE;UACL,cAAc,EAAE;QACpB;MACJ,CAEJ,CAAC,CAACC,IAAI,CACF,UAAUC,QAAQ,EAAE;QAChBL,IAAI,CAACN,MAAM,GAAEW,QAAQ,CAACjB,IAAI;MAC9B,CAAC,EACD,UAAUkB,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAAC,YAAY,CAAC;QACzBD,OAAO,CAACC,GAAG,CAACF,KAAK,CAAClB,IAAI,CAAC;MAC3B,CACJ;IAEJ;EACJ,CAAC;EACDqB,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, vModelText as _vModelText, withDirectives as _withDirectives, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"result\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[4] || (_cache[4] = _createElementVNode(\"h3\", null, \"居民血压管理系统\", -1 /* CACHED */)), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.result), 1 /* TEXT */), _cache[5] || (_cache[5] = _createTextVNode(\" 居民姓名:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"userName\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.userName = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.userName]]), _cache[6] || (_cache[6] = _createTextVNode(\" sbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"sbp\",\n \"onUpdate:modelValue\": _cache[1] || (_cache[1] = $event => $data.sbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.sbp]]), _cache[7] || (_cache[7] = _createTextVNode(\" dbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"dbp\",\n \"onUpdate:modelValue\": _cache[2] || (_cache[2] = $event => $data.dbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.dbp]]), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getResult\",\n onClick: _cache[3] || (_cache[3] = (...args) => $options.getResult && $options.getResult(...args)),\n value: \"getResult\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","result","type","userName","$event","sbp","dbp","onClick","_cache","args","$options","getResult","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAQ;;uFADhBC,mBAAA,CAAiB,YAAb,UAAQ,qBACZA,mBAAA,CAAiC,OAAjCC,UAAiC,EAAAC,gBAAA,CAAdC,KAAA,CAAAC,MAAM,kB,2CAAQ,QAC5B,I,gBAAAJ,mBAAA,CAAoD;IAA7CK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,UAAU;+DAAUI,KAAA,CAAAG,QAAQ,GAAAC,MAAA;iDAARJ,KAAA,CAAAG,QAAQ,E,8CAAE,OACrD,I,gBAAAN,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAK,GAAG,GAAAD,MAAA;iDAAHJ,KAAA,CAAAK,GAAG,E,8CAAE,OAC1C,I,gBAAAR,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAM,GAAG,GAAAF,MAAA;iDAAHJ,KAAA,CAAAM,GAAG,E,GAC5CT,mBAAA,CAAyE;IAAlEK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,WAAW;IAAEW,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,SAAA,IAAAD,QAAA,CAAAC,SAAA,IAAAF,IAAA,CAAS;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Login_1\",\n data() {\n return {\n domain: \"http://10.128.128.249:8022/\",\n url: \"public_api/v1/api_for_vue_exam_2\",\n student_id: \"\",\n token: \"\"\n };\n },\n methods: {\n getToken() {\n const formData = new FormData();\n formData.append(\"student_id\", this.student_id);\n let url = this.domain + this.url;\n let that = this;\n this.axios.post(url, formData, {\n headers: {\n 'Content-Type': 'multipart/form-data'\n }\n }).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","domain","url","student_id","token","methods","getToken","formData","FormData","append","that","axios","post","headers","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Login_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"text\" id=\"student_id\" v-model=\"student_id\">\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Login_1\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_2\",\r\n student_id: \"\",\r\n token:\"\",\r\n }\r\n },\r\n methods:{\r\n getToken() {\r\n const formData = new FormData();\r\n formData.append(\"student_id\", this.student_id);\r\n let url = this.domain + this.url;\r\n let that = this;\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers:{\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n ).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error)\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,SAAS;EACfC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,MAAM,EAAC,6BAA6B;MACpCC,GAAG,EAAC,kCAAkC;MACtCC,UAAU,EAAE,EAAE;MACdC,KAAK,EAAC;IACV;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAG;MACP,MAAMC,QAAO,GAAI,IAAIC,QAAQ,CAAC,CAAC;MAC/BD,QAAQ,CAACE,MAAM,CAAC,YAAY,EAAE,IAAI,CAACN,UAAU,CAAC;MAC9C,IAAID,GAAE,GAAI,IAAI,CAACD,MAAK,GAAI,IAAI,CAACC,GAAG;MAChC,IAAIQ,IAAG,GAAI,IAAI;MACf,IAAI,CAACC,KAAK,CAACC,IAAI,CACXV,GAAG,EACHK,QAAQ,EACR;QACIM,OAAO,EAAC;UACJ,cAAc,EAAE;QACpB;MACJ,CACJ,CAAC,CAACC,IAAI,CACF,UAAUC,QAAQ,EAAE;QAChBL,IAAI,CAACN,KAAK,GAACW,QAAQ,CAACf,IAAI;MAC5B,CAAC,EACD,UAAUgB,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK;MACrB,CACJ;IACJ;EACJ,CAAC;EACDG,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'App',\n components: {},\n data() {\n return {\n name: '刘松林'\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","components","data","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'刘松林',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":"AAaA,eAAe;EACbA,IAAI,EAAE,KAAK;EACXC,UAAU,EAAE,CACZ,CAAC;EACDC,IAAIA,CAAA,EAAE;IACJ,OAAM;MACJF,IAAI,EAAC;IACP;EACF,CAAC;EACDG,OAAOA,CAAA,EAAE;IACPC,MAAM,CAACC,KAAK,GAAC,IAAI;EACnB;AACF","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createApp } from 'vue';\nimport App from './App.vue';\nimport router from \"@/router\";\nimport axios from \"axios\";\naxios.defaults.baseURL = \"\";\nconst myApp = createApp(App);\nmyApp.use(router);\nmyApp.config.globalProperties.axios = axios;\nmyApp.mount(\"#app\");","map":{"version":3,"names":["createApp","App","router","axios","defaults","baseURL","myApp","use","config","globalProperties","mount"],"sources":["C:/exam_app/app_vue/src/main.js"],"sourcesContent":["import { createApp } from 'vue'\nimport App from './App.vue'\nimport router from \"@/router\";\nimport axios from \"axios\";\naxios.defaults.baseURL=\"\";\n\nconst myApp=createApp(App);\nmyApp.use(router);\nmyApp.config.globalProperties.axios=axios;\nmyApp.mount(\"#app\");\n"],"mappings":"AAAA,SAASA,SAAS,QAAQ,KAAK;AAC/B,OAAOC,GAAG,MAAM,WAAW;AAC3B,OAAOC,MAAM,MAAM,UAAU;AAC7B,OAAOC,KAAK,MAAM,OAAO;AACzBA,KAAK,CAACC,QAAQ,CAACC,OAAO,GAAC,EAAE;AAEzB,MAAMC,KAAK,GAACN,SAAS,CAACC,GAAG,CAAC;AAC1BK,KAAK,CAACC,GAAG,CAACL,MAAM,CAAC;AACjBI,KAAK,CAACE,MAAM,CAACC,gBAAgB,CAACN,KAAK,GAACA,KAAK;AACzCG,KAAK,CAACI,KAAK,CAAC,MAAM,CAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202241401065\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401065\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,+CAA+C;MACnDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'App',\n components: {},\n data() {\n return {\n name: \"胡智强\"\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","components","data","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>|\n\n\n\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>|\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>|\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>|\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" id=\"Edit_1\" class=\"Edit_1\">Edit_1</router-link>|\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>|\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>|\n <router-view></router-view>\n</template>\n\n<script>\n\n\n export default {\n name: 'App',\n components: {\n\n },\n data()\n {\n return{\n name:\"胡智强\",\n }\n },\n mounted() {\n window.myVue=this;\n }\n }\n</script>\n\n<style>\n #app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n }\n</style>\n"],"mappings":"AAkBE,eAAe;EACbA,IAAI,EAAE,KAAK;EACXC,UAAU,EAAE,CAEZ,CAAC;EACDC,IAAIA,CAAA,EACJ;IACE,OAAM;MACJF,IAAI,EAAC;IACP;EACF,CAAC;EACDG,OAAOA,CAAA,EAAG;IACRC,MAAM,CAACC,KAAK,GAAC,IAAI;EACnB;AACF","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Edit_1\",\n data() {\n return {\n name: this.$route.query.name\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","$route","query","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Edit_1.vue"],"sourcesContent":["<template>\r\n 用户姓名:<input type=\"text\" id=\"name\" v-model=\"name\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Edit_1\",\r\n data(){\r\n return{\r\n name:this.$route.query.name,\r\n }\r\n },\r\n mounted(){\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAKI,eAAe;EACXA,IAAI,EAAE,QAAQ;EACdC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFD,IAAI,EAAC,IAAI,CAACE,MAAM,CAACC,KAAK,CAACH;IAC3B;EACJ,CAAC;EACDI,OAAOA,CAAA,EAAE;IACLC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Hypertension_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_hypertension_1\",\n userName: \"刘松林\",\n sbp: 0,\n dbp: 0,\n result: \"\"\n };\n },\n methods: {\n getResult() {\n const formData = new FormData();\n formData.append(\"userName\", this.userName);\n formData.append(\"sbp\", this.sbp);\n formData.append(\"dbp\", this.dbp);\n let url = this.proxy + this.url;\n let that = this;\n this.axios.post(url, formData, {\n headers: {\n 'Content-Type': 'multipart/form-data'\n }\n }).then(function (response) {\n that.result = response.data;\n }, function (error) {\n console.log(\"有可能是防火墙没有开\");\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","userName","sbp","dbp","result","methods","getResult","formData","FormData","append","that","axios","post","headers","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"刘松林\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAUI,eAAe;EACXA,IAAI,EAAE,gBAAgB;EACtBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,gDAAgD;MACpDC,QAAQ,EAAC,KAAK;MACdC,GAAG,EAAC,CAAC;MACLC,GAAG,EAAC,CAAC;MACLC,MAAM,EAAC;IACX;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,SAASA,CAAA,EAAE;MAEP,MAAMC,QAAO,GAAI,IAAIC,QAAQ,CAAC,CAAC;MAE/BD,QAAQ,CAACE,MAAM,CAAC,UAAU,EAAE,IAAI,CAACR,QAAQ,CAAC;MAC1CM,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACP,GAAG,CAAC;MAChCK,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACN,GAAG,CAAC;MAEhC,IAAIH,GAAE,GAAI,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG;MAC7B,IAAIU,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,IAAI,CACXZ,GAAG,EACHO,QAAQ,EACR;QACIM,OAAO,EAAE;UACL,cAAc,EAAE;QACpB;MACJ,CAEJ,CAAC,CAACC,IAAI,CACF,UAAUC,QAAQ,EAAE;QAChBL,IAAI,CAACN,MAAM,GAAEW,QAAQ,CAACjB,IAAI;MAC9B,CAAC,EACD,UAAUkB,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAAC,YAAY,CAAC;QACzBD,OAAO,CAACC,GAAG,CAACF,KAAK,CAAClB,IAAI,CAAC;MAC3B,CACJ;IAEJ;EACJ,CAAC;EACDqB,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, vModelText as _vModelText, withDirectives as _withDirectives, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"result\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[4] || (_cache[4] = _createElementVNode(\"h3\", null, \"居民血压管理系统\", -1 /* CACHED */)), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.result), 1 /* TEXT */), _cache[5] || (_cache[5] = _createTextVNode(\" 居民姓名:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"userName\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.userName = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.userName]]), _cache[6] || (_cache[6] = _createTextVNode(\" sbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"sbp\",\n \"onUpdate:modelValue\": _cache[1] || (_cache[1] = $event => $data.sbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.sbp]]), _cache[7] || (_cache[7] = _createTextVNode(\" dbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"dbp\",\n \"onUpdate:modelValue\": _cache[2] || (_cache[2] = $event => $data.dbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.dbp]]), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getResult\",\n onClick: _cache[3] || (_cache[3] = (...args) => $options.getResult && $options.getResult(...args)),\n value: \"getResult\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","result","type","userName","$event","sbp","dbp","onClick","_cache","args","$options","getResult","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"刘松林\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAQ;;uFADhBC,mBAAA,CAAiB,YAAb,UAAQ,qBACZA,mBAAA,CAAiC,OAAjCC,UAAiC,EAAAC,gBAAA,CAAdC,KAAA,CAAAC,MAAM,kB,2CAAQ,QAC5B,I,gBAAAJ,mBAAA,CAAoD;IAA7CK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,UAAU;+DAAUI,KAAA,CAAAG,QAAQ,GAAAC,MAAA;iDAARJ,KAAA,CAAAG,QAAQ,E,8CAAE,OACrD,I,gBAAAN,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAK,GAAG,GAAAD,MAAA;iDAAHJ,KAAA,CAAAK,GAAG,E,8CAAE,OAC1C,I,gBAAAR,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAM,GAAG,GAAAF,MAAA;iDAAHJ,KAAA,CAAAM,GAAG,E,GAC5CT,mBAAA,CAAyE;IAAlEK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,WAAW;IAAEW,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,SAAA,IAAAD,QAAA,CAAAC,SAAA,IAAAF,IAAA,CAAS;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202241401073\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401073\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,+CAA+C;MACnDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202241401015\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401015\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,+CAA+C;MACnDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401041\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[1] || (_cache[1] = _createElementVNode(\"hr\", null, null, -1 /* CACHED */)), _createElementVNode(\"div\", null, _toDisplayString($data.message), 1 /* TEXT */), _createElementVNode(\"button\", {\n id: \"button_delete\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.deletePerson && $options.deletePerson(...args))\n }, \"删除\")], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createElementVNode","_toDisplayString","$data","message","id","onClick","_cache","args","$options","deletePerson"],"sources":["C:\\exam_app\\app_vue\\src\\components\\person_881_1\\DeletePerson.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <div>{{message}}</div>\r\n <button id=\"button_delete\" @click='deletePerson'>删除</button>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"DeletePerson\",\r\n data(){\r\n return{\r\n proxy:\"/springbootServer\",\r\n urlDelete:\"/personBaseInfo_881_1/delete\",\r\n message:\"如确定删除请点击删除按钮\",\r\n id:this.$route.query.id,\r\n\r\n }\r\n },\r\n methods:{\r\n deletePerson(){\r\n let url = this.proxy+this.urlDelete+\"?id=\"+this.id;\r\n console.log(url);\r\n let that = this;\r\n\r\n this.axios.get(url).then(\r\n function (response) {\r\n console.log(response)\r\n //console.log(response.data.code);\r\n that.message=\"删除成功\";\r\n },\r\n function (error) {\r\n that.message=\"删除失败\";\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n //this.delete();\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n\r\n\r\n"],"mappings":";;uFACIA,mBAAA,CAAI,qCACJA,mBAAA,CAAsB,aAAAC,gBAAA,CAAfC,KAAA,CAAAC,OAAO,kBACdH,mBAAA,CAA4D;IAApDI,EAAE,EAAC,eAAe;IAAEC,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,YAAA,IAAAD,QAAA,CAAAC,YAAA,IAAAF,IAAA,CAAY;KAAE,IAAE,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'App',\n components: {},\n data() {\n return {\n name: \"李从浦\"\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","components","data","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>|\n\n\n\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>|\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>|\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>|\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" id=\"Edit_1\" class=\"Edit_1\">Edit_1</router-link>|\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>|\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>|\n <router-view></router-view>\n</template>\n\n<script>\n\n\n export default {\n name: 'App',\n components: {\n\n },\n data()\n {\n return{\n name:\"李从浦\",\n }\n },\n mounted() {\n window.myVue=this;\n }\n }\n</script>\n\n<style>\n #app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n }\n</style>\n"],"mappings":"AAkBE,eAAe;EACbA,IAAI,EAAE,KAAK;EACXC,UAAU,EAAE,CAEZ,CAAC;EACDC,IAAIA,CAAA,EACJ;IACE,OAAM;MACJF,IAAI,EAAC;IACP;EACF,CAAC;EACDG,OAAOA,CAAA,EAAG;IACRC,MAAM,CAACC,KAAK,GAAC,IAAI;EACnB;AACF","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createWebHistory, createRouter } from \"vue-router\";\nimport IndexDefault from \"@/components/IndexDefault\";\nimport GetToken_1 from \"@/components/GetToken_1\";\nimport Login_1 from \"@/components/Login_1\";\nimport Edit_1 from \"@/components/Edit_1\";\nimport Ref_1 from \"@/components/Ref_1\";\nimport ListPerson_881_1 from \"@/components/person_881_1/ListPerson\";\nimport EditPerson_881_1 from \"@/components/person_881_1/EditPerson\";\nimport AddPerson_881_1 from \"@/components/person_881_1/EditPerson\";\nimport DeletePerson_881_1 from \"@/components/person_881_1/DeletePerson\";\nimport Hypertension_1 from \"@/components/Hypertension_1\";\nconst history = createWebHistory();\nconst router = createRouter({\n history,\n routes: [{\n path: \"/\",\n component: IndexDefault\n }, {\n component: GetToken_1,\n path: \"/GetToken_1\"\n }, {\n component: Login_1,\n path: \"/Login_1\"\n }, {\n component: Edit_1,\n path: \"/Edit_1\"\n }, {\n component: Ref_1,\n path: \"/Ref_1\"\n }, {\n component: Hypertension_1,\n path: \"/Hypertension_1\"\n }, {\n path: \"/person_881_1/ListPerson\",\n component: ListPerson_881_1\n }, {\n path: \"/person_881_1/EditPerson\",\n component: EditPerson_881_1\n }, {\n path: \"/person_881_1/AddPerson\",\n component: AddPerson_881_1\n }, {\n path: \"/person_881_1/DeletePerson\",\n component: DeletePerson_881_1\n }]\n});\nexport default router;","map":{"version":3,"names":["createWebHistory","createRouter","IndexDefault","GetToken_1","Login_1","Edit_1","Ref_1","ListPerson_881_1","EditPerson_881_1","AddPerson_881_1","DeletePerson_881_1","Hypertension_1","history","router","routes","path","component"],"sources":["C:/exam_app/app_vue/src/router/index.js"],"sourcesContent":["import {createWebHistory,createRouter} from \"vue-router\";\r\nimport IndexDefault from \"@/components/IndexDefault\";\r\nimport GetToken_1 from \"@/components/GetToken_1\";\r\nimport Login_1 from \"@/components/Login_1\";\r\nimport Edit_1 from \"@/components/Edit_1\";\r\nimport Ref_1 from \"@/components/Ref_1\";\r\nimport ListPerson_881_1 from \"@/components/person_881_1/ListPerson\";\r\nimport EditPerson_881_1 from \"@/components/person_881_1/EditPerson\";\r\nimport AddPerson_881_1 from \"@/components/person_881_1/EditPerson\";\r\nimport DeletePerson_881_1 from \"@/components/person_881_1/DeletePerson\";\r\nimport Hypertension_1 from \"@/components/Hypertension_1\";\r\n\r\nconst history=createWebHistory();\r\nconst router=createRouter(\r\n {\r\n history,\r\n routes:[\r\n {\r\n path:\"/\",\r\n component:IndexDefault\r\n },\r\n {\r\n component:GetToken_1,\r\n path:\"/GetToken_1\"\r\n },\r\n {\r\n component:Login_1,\r\n path:\"/Login_1\"\r\n },\r\n {\r\n component:Edit_1,\r\n path:\"/Edit_1\"\r\n },\r\n {\r\n component:Ref_1,\r\n path:\"/Ref_1\"\r\n },\r\n {\r\n component:Hypertension_1,\r\n path:\"/Hypertension_1\"\r\n },\r\n {\r\n path:\"/person_881_1/ListPerson\",\r\n component:ListPerson_881_1\r\n },\r\n {\r\n path:\"/person_881_1/EditPerson\",\r\n component:EditPerson_881_1\r\n },\r\n {\r\n path:\"/person_881_1/AddPerson\",\r\n component:AddPerson_881_1\r\n },\r\n {\r\n path:\"/person_881_1/DeletePerson\",\r\n component:DeletePerson_881_1\r\n }\r\n ]\r\n }\r\n)\r\nexport default router"],"mappings":"AAAA,SAAQA,gBAAgB,EAACC,YAAY,QAAO,YAAY;AACxD,OAAOC,YAAY,MAAM,2BAA2B;AACpD,OAAOC,UAAU,MAAM,yBAAyB;AAChD,OAAOC,OAAO,MAAM,sBAAsB;AAC1C,OAAOC,MAAM,MAAM,qBAAqB;AACxC,OAAOC,KAAK,MAAM,oBAAoB;AACtC,OAAOC,gBAAgB,MAAM,sCAAsC;AACnE,OAAOC,gBAAgB,MAAM,sCAAsC;AACnE,OAAOC,eAAe,MAAM,sCAAsC;AAClE,OAAOC,kBAAkB,MAAM,wCAAwC;AACvE,OAAOC,cAAc,MAAM,6BAA6B;AAExD,MAAMC,OAAO,GAACZ,gBAAgB,CAAC,CAAC;AAChC,MAAMa,MAAM,GAACZ,YAAY,CACrB;EACIW,OAAO;EACPE,MAAM,EAAC,CACH;IACIC,IAAI,EAAC,GAAG;IACRC,SAAS,EAACd;EACd,CAAC,EACD;IACIc,SAAS,EAACb,UAAU;IACpBY,IAAI,EAAC;EACT,CAAC,EACD;IACIC,SAAS,EAACZ,OAAO;IACjBW,IAAI,EAAC;EACT,CAAC,EACD;IACIC,SAAS,EAACX,MAAM;IAChBU,IAAI,EAAC;EACT,CAAC,EACD;IACIC,SAAS,EAACV,KAAK;IACfS,IAAI,EAAC;EACT,CAAC,EACD;IACIC,SAAS,EAACL,cAAc;IACxBI,IAAI,EAAC;EACT,CAAC,EACD;IACIA,IAAI,EAAC,0BAA0B;IAC/BC,SAAS,EAACT;EACd,CAAC,EACD;IACIQ,IAAI,EAAC,0BAA0B;IAC/BC,SAAS,EAACR;EACd,CAAC,EACD;IACIO,IAAI,EAAC,yBAAyB;IAC9BC,SAAS,EAACP;EACd,CAAC,EACD;IACIM,IAAI,EAAC,4BAA4B;IACjCC,SAAS,EAACN;EACd,CAAC;AAET,CACJ,CAAC;AACD,eAAeG,MAAM","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, vModelText as _vModelText, withDirectives as _withDirectives, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[1] || (_cache[1] = _createElementVNode(\"br\", null, null, -1 /* CACHED */)), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"name\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.name = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.name]])], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createElementVNode","type","id","$data","name","$event"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Edit_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <input type=\"text\" id=\"name\" v-model=\"name\">\r\n\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Edit_1\",\r\n data(){\r\n return{\r\n name:this.$route.query.name,\r\n }\r\n },\r\n\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;uFACIA,mBAAA,CAAI,qC,gBACJA,mBAAA,CAA4C;IAArCC,IAAI,EAAC,MAAM;IAACC,EAAE,EAAC,MAAM;+DAAUC,KAAA,CAAAC,IAAI,GAAAC,MAAA;iDAAJF,KAAA,CAAAC,IAAI,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { vModelText as _vModelText, createElementVNode as _createElementVNode, withDirectives as _withDirectives, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[1] || (_cache[1] = _createTextVNode(\" 用户姓名:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"name\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.name = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.name]])], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createElementVNode","type","id","$data","name","$event"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Edit_1.vue"],"sourcesContent":["<template>\r\n 用户姓名:<input type=\"text\" id=\"name\" v-model=\"name\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Edit_1\",\r\n data(){\r\n return{\r\n name:this.$route.query.name,\r\n }\r\n },\r\n mounted(){\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;wGAAU,QACD,I,gBAAAA,mBAAA,CAA4C;IAArCC,IAAI,EAAC,MAAM;IAACC,EAAE,EAAC,MAAM;+DAAUC,KAAA,CAAAC,IAAI,GAAAC,MAAA;iDAAJF,KAAA,CAAAC,IAAI,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"IndexDefault\"\n};","map":{"version":3,"names":["name"],"sources":["C:\\exam_app\\app_vue\\src\\components\\IndexDefault.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <h3>index default</h3>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"IndexDefault\"\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE;AACV","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401039\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202140501037\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202140501037\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,8CAA8C;MAClDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"dad_666\",\n data() {\n return {\n domain: \"http://10.128.128.249:8022/\",\n url: \"public_api/v1/api_for_vue_exam_1?student_id=\",\n student_id: \"202241401095\",\n token: \"\"\n };\n },\n methods: {\n getToken() {\n let url = this.domain + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","domain","url","student_id","token","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <div id=\"token\">{{token}}</div><br>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"dad_666\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n student_id:\"202241401095\",\r\n token:\"\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url = this.domain + this.url + this.student_id;\r\n let that = this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,SAAS;EACfC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,MAAM,EAAC,6BAA6B;MACpCC,GAAG,EAAC,8CAA8C;MAClDC,UAAU,EAAC,cAAc;MACzBC,KAAK,EAAC;IACV;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAE,GAAI,IAAI,CAACD,MAAK,GAAI,IAAI,CAACC,GAAE,GAAI,IAAI,CAACC,UAAU;MAClD,IAAII,IAAG,GAAI,IAAI;MACf,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACH,KAAI,GAAIO,QAAQ,CAACX,IAAI;MAC9B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CACJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"div_1\"\n};\nconst _hoisted_2 = {\n type: \"text\",\n id: \"name\",\n ref: \"refInputName\",\n value: \"\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createCommentVNode(\" <div id=\\\"div_2\\\">{{user.name}}</div>\"), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($setup.refName), 1 /* TEXT */), _createElementVNode(\"input\", _hoisted_2, null, 512 /* NEED_PATCH */)], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","type","ref","value","_createCommentVNode","_createElementVNode","_hoisted_1","_toDisplayString","$setup","refName","_hoisted_2"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Ref_1.vue"],"sourcesContent":["<template>\r\n <!-- <div id=\"div_2\">{{user.name}}</div>-->\r\n <div id=\"div_1\">{{refName}}</div>\r\n <input type=\"text\" id=\"name\" ref=\"refInputName\" value=\"\">\r\n</template>\r\n\r\n<script>\r\n import {ref} from 'vue'\r\n export default {\r\n name: \"Ref_1\",\r\n setup(){\r\n const refName=ref(\"mike\");\r\n const refInputName=ref(null);\r\n return {\r\n refName,\r\n refInputName,\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAO;;EACRC,IAAI,EAAC,MAAM;EAACD,EAAE,EAAC,MAAM;EAACE,GAAG,EAAC,cAAc;EAACC,KAAK,EAAC;;;6DAFtDC,mBAAA,6CAA8C,EAC9CC,mBAAA,CAAiC,OAAjCC,UAAiC,EAAAC,gBAAA,CAAfC,MAAA,CAAAC,OAAO,kBACzBJ,mBAAA,CAAyD,SAAzDK,UAAyD,8B","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Hypertension_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_hypertension_1\",\n userName: \"古文萱\",\n sbp: 0,\n dbp: 0,\n result: \"\"\n };\n },\n methods: {\n getResult() {\n const formData = new FormData();\n formData.append(\"userName\", this.userName);\n formData.append(\"sbp\", this.sbp);\n formData.append(\"dbp\", this.dbp);\n let url = this.proxy + this.url;\n let that = this;\n this.axios.post(url, formData, {\n headers: {\n 'Content-Type': 'multipart/form-data'\n }\n }).then(function (response) {\n that.result = response.data;\n }, function (error) {\n console.log(\"有可能是防火墙没有开\");\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","userName","sbp","dbp","result","methods","getResult","formData","FormData","append","that","axios","post","headers","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"古文萱\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAUI,eAAe;EACXA,IAAI,EAAE,gBAAgB;EACtBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,gDAAgD;MACpDC,QAAQ,EAAC,KAAK;MACdC,GAAG,EAAC,CAAC;MACLC,GAAG,EAAC,CAAC;MACLC,MAAM,EAAC;IACX;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,SAASA,CAAA,EAAE;MAEP,MAAMC,QAAO,GAAI,IAAIC,QAAQ,CAAC,CAAC;MAE/BD,QAAQ,CAACE,MAAM,CAAC,UAAU,EAAE,IAAI,CAACR,QAAQ,CAAC;MAC1CM,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACP,GAAG,CAAC;MAChCK,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACN,GAAG,CAAC;MAEhC,IAAIH,GAAE,GAAI,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG;MAC7B,IAAIU,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,IAAI,CACXZ,GAAG,EACHO,QAAQ,EACR;QACIM,OAAO,EAAE;UACL,cAAc,EAAE;QACpB;MACJ,CAEJ,CAAC,CAACC,IAAI,CACF,UAAUC,QAAQ,EAAE;QAChBL,IAAI,CAACN,MAAM,GAAEW,QAAQ,CAACjB,IAAI;MAC9B,CAAC,EACD,UAAUkB,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAAC,YAAY,CAAC;QACzBD,OAAO,CAACC,GAAG,CAACF,KAAK,CAAClB,IAAI,CAAC;MAC3B,CACJ;IAEJ;EACJ,CAAC;EACDqB,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[1] || (_cache[1] = _createElementVNode(\"hr\", null, null, -1 /* CACHED */)), _createElementVNode(\"div\", null, _toDisplayString($data.message), 1 /* TEXT */), _createElementVNode(\"button\", {\n id: \"button_delete\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.deletePerson && $options.deletePerson(...args))\n }, \"删除\")], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createElementVNode","_toDisplayString","$data","message","id","onClick","_cache","args","$options","deletePerson"],"sources":["C:\\exam_app\\app_vue\\src\\components\\person_881_1\\DeletePerson.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <div>{{message}}</div>\r\n <button id=\"button_delete\" @click='deletePerson'>删除</button>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"DeletePerson\",\r\n data(){\r\n return{\r\n proxy:\"/springbootServer\",\r\n urlDelete:\"/PersonBaseInfo_881_1/delete\",\r\n message:\"如确定删除请点击删除按钮\",\r\n id:this.$route.query.id,\r\n\r\n }\r\n },\r\n methods:{\r\n deletePerson(){\r\n let url = this.proxy+this.urlDelete+\"?id=\"+this.id;\r\n console.log(url);\r\n let that = this;\r\n\r\n this.axios.get(url).then(\r\n function (response) {\r\n console.log(response)\r\n //console.log(response.data.code);\r\n that.message=\"删除成功\";\r\n },\r\n function (error) {\r\n that.message=\"删除失败\";\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n //this.delete();\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n\r\n\r\n"],"mappings":";;uFACIA,mBAAA,CAAI,qCACJA,mBAAA,CAAsB,aAAAC,gBAAA,CAAfC,KAAA,CAAAC,OAAO,kBACdH,mBAAA,CAA4D;IAApDI,EAAE,EAAC,eAAe;IAAEC,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,YAAA,IAAAD,QAAA,CAAAC,YAAA,IAAAF,IAAA,CAAY;KAAE,IAAE,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202140501037\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { resolveComponent as _resolveComponent, createVNode as _createVNode, createTextVNode as _createTextVNode, withCtx as _withCtx, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_IndexDefault = _resolveComponent(\"IndexDefault\");\n const _component_router_link = _resolveComponent(\"router-link\");\n const _component_router_view = _resolveComponent(\"router-view\");\n return _openBlock(), _createElementBlock(_Fragment, null, [_createVNode(_component_IndexDefault), _createVNode(_component_router_link, {\n to: \"/\",\n class: \"IndexDefault\"\n }, {\n default: _withCtx(() => _cache[0] || (_cache[0] = [_createTextVNode(\"IndexDefault\")])),\n _: 1 /* STABLE */,\n __: [0]\n }), _createVNode(_component_router_link, {\n to: \"/GetToken_1\",\n class: \"GetToken_1\"\n }, {\n default: _withCtx(() => _cache[1] || (_cache[1] = [_createTextVNode(\"GetToken_1\")])),\n _: 1 /* STABLE */,\n __: [1]\n }), _createVNode(_component_router_link, {\n to: \"/Login_1\",\n class: \"Login_1\"\n }, {\n default: _withCtx(() => _cache[2] || (_cache[2] = [_createTextVNode(\"Login_1\")])),\n _: 1 /* STABLE */,\n __: [2]\n }), _createVNode(_component_router_link, {\n to: {\n path: '/Edit_1',\n query: {\n name: $data.name\n }\n },\n class: \"Edit_1\",\n id: \"Edit_1\"\n }, {\n default: _withCtx(() => _cache[3] || (_cache[3] = [_createTextVNode(\"Edit_1\")])),\n _: 1 /* STABLE */,\n __: [3]\n }, 8 /* PROPS */, [\"to\"]), _createVNode(_component_router_link, {\n to: \"/Ref_1\",\n class: \"Ref_1\"\n }, {\n default: _withCtx(() => _cache[4] || (_cache[4] = [_createTextVNode(\"Ref_1\")])),\n _: 1 /* STABLE */,\n __: [4]\n }), _createVNode(_component_router_link, {\n to: \"/Hypertension_1\",\n class: \"Hypertension_1\"\n }, {\n default: _withCtx(() => _cache[5] || (_cache[5] = [_createTextVNode(\"Hypertension_1\")])),\n _: 1 /* STABLE */,\n __: [5]\n }), _createVNode(_component_router_link, {\n to: \"/person_881_1/ListPerson\"\n }, {\n default: _withCtx(() => _cache[6] || (_cache[6] = [_createTextVNode(\"ListPerson\")])),\n _: 1 /* STABLE */,\n __: [6]\n }), _createVNode(_component_router_view)], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createVNode","_component_IndexDefault","_component_router_link","to","class","_cache","path","query","name","$data","id","_component_router_view"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'王仁杰',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":";;;;;6DACEA,YAAA,CAA6BC,uBAAA,GAC7BD,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC,GAAG;IAACC,KAAK,EAAC;;sBAAe,MAAYC,MAAA,QAAAA,MAAA,O,iBAAZ,cAAY,E;;;MACrDL,YAAA,CAAyEE,sBAAA;IAA5DC,EAAE,EAAC,aAAa;IAACC,KAAK,EAAC;;sBAAa,MAAUC,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MAC3DL,YAAA,CAAgEE,sBAAA;IAAnDC,EAAE,EAAC,UAAU;IAACC,KAAK,EAAC;;sBAAU,MAAOC,MAAA,QAAAA,MAAA,O,iBAAP,SAAO,E;;;MAClDL,YAAA,CAAqGE,sBAAA;IAAvFC,EAAE;MAAAG,IAAA;MAAAC,KAAA;QAAAC,IAAA,EAA8BC,KAAA,CAAAD;MAAI;IAAA;IAAIJ,KAAK,EAAC,QAAQ;IAACM,EAAE,EAAC;;sBAAS,MAAML,MAAA,QAAAA,MAAA,O,iBAAN,QAAM,E;;;6BACvFL,YAAA,CAA0DE,sBAAA;IAA7CC,EAAE,EAAC,QAAQ;IAACC,KAAK,EAAC;;sBAAQ,MAAKC,MAAA,QAAAA,MAAA,O,iBAAL,OAAK,E;;;MAC5CL,YAAA,CAAqFE,sBAAA;IAAxEC,EAAE,EAAC,iBAAiB;IAACC,KAAK,EAAC;;sBAAiB,MAAcC,MAAA,QAAAA,MAAA,O,iBAAd,gBAAc,E;;;MACvEL,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC;EAA0B;sBAAC,MAAUE,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MACrDL,YAAA,CAA2BW,sBAAA,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, vModelText as _vModelText, withDirectives as _withDirectives, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"result\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[4] || (_cache[4] = _createElementVNode(\"h3\", null, \"居民血压管理系统\", -1 /* CACHED */)), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.result), 1 /* TEXT */), _cache[5] || (_cache[5] = _createTextVNode(\" 居民姓名:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"userName\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.userName = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.userName]]), _cache[6] || (_cache[6] = _createTextVNode(\" sbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"sbp\",\n \"onUpdate:modelValue\": _cache[1] || (_cache[1] = $event => $data.sbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.sbp]]), _cache[7] || (_cache[7] = _createTextVNode(\" dbp:\")), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"dbp\",\n \"onUpdate:modelValue\": _cache[2] || (_cache[2] = $event => $data.dbp = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.dbp]]), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getResult\",\n onClick: _cache[3] || (_cache[3] = (...args) => $options.getResult && $options.getResult(...args)),\n value: \"getResult\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","result","type","userName","$event","sbp","dbp","onClick","_cache","args","$options","getResult","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"古文萱\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAQ;;uFADhBC,mBAAA,CAAiB,YAAb,UAAQ,qBACZA,mBAAA,CAAiC,OAAjCC,UAAiC,EAAAC,gBAAA,CAAdC,KAAA,CAAAC,MAAM,kB,2CAAQ,QAC5B,I,gBAAAJ,mBAAA,CAAoD;IAA7CK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,UAAU;+DAAUI,KAAA,CAAAG,QAAQ,GAAAC,MAAA;iDAARJ,KAAA,CAAAG,QAAQ,E,8CAAE,OACrD,I,gBAAAN,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAK,GAAG,GAAAD,MAAA;iDAAHJ,KAAA,CAAAK,GAAG,E,8CAAE,OAC1C,I,gBAAAR,mBAAA,CAA0C;IAAnCK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,KAAK;+DAAUI,KAAA,CAAAM,GAAG,GAAAF,MAAA;iDAAHJ,KAAA,CAAAM,GAAG,E,GAC5CT,mBAAA,CAAyE;IAAlEK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,WAAW;IAAEW,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,SAAA,IAAAD,QAAA,CAAAC,SAAA,IAAAF,IAAA,CAAS;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401015\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Edit_1\",\n data() {\n return {\n name: this.$route.query.name\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","$route","query","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Edit_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <input type=\"text\" id=\"name\" v-model=\"name\">\r\n\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Edit_1\",\r\n data(){\r\n return{\r\n name:this.$route.query.name,\r\n }\r\n },\r\n\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,QAAQ;EACdC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFD,IAAI,EAAC,IAAI,CAACE,MAAM,CAACC,KAAK,CAACH;IAC3B;EACJ,CAAC;EAEDI,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { ref } from 'vue';\nexport default {\n name: \"Ref_1\",\n setup() {\n const refName = ref(\"mike\");\n const refInputName = ref(null);\n return {\n refName,\n refInputName\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["ref","name","setup","refName","refInputName","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Ref_1.vue"],"sourcesContent":["<template>\r\n <!-- <div id=\"div_2\">{{user.name}}</div>-->\r\n <div id=\"div_1\">{{refName}}</div>\r\n <input type=\"text\" id=\"name\" ref=\"refInputName\" value=\"\">\r\n</template>\r\n\r\n<script>\r\n import {ref} from 'vue'\r\n export default {\r\n name: \"Ref_1\",\r\n setup(){\r\n const refName=ref(\"mike\");\r\n const refInputName=ref(null);\r\n return {\r\n refName,\r\n refInputName,\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAOI,SAAQA,GAAG,QAAO,KAAI;AACtB,eAAe;EACXC,IAAI,EAAE,OAAO;EACbC,KAAKA,CAAA,EAAE;IACH,MAAMC,OAAO,GAACH,GAAG,CAAC,MAAM,CAAC;IACzB,MAAMI,YAAY,GAACJ,GAAG,CAAC,IAAI,CAAC;IAC5B,OAAO;MACHG,OAAO;MACPC;IACJ;EACJ,CAAC;EACDC,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AAEJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'Hypertension_1',\n data() {\n return {\n proxy: 'http://10.128.128.249:8022/',\n url: 'public_api/v1/api_for_vue_exam_hypertension_1',\n userName: '考生姓名',\n sbp: 0,\n dbp: 0,\n result: ''\n };\n },\n methods: {\n getResult() {\n const formData = new FormData();\n formData.append(\"sbp\", this.sbp);\n formData.append(\"dbp\", this.dbp);\n let url = this.proxy + this.url;\n let that = this;\n this.axios.post(url, formData, {\n headers: {\n 'Content-Type': 'multipart/form-data'\n }\n }).then(function (response) {\n that.result = response.data; // 假设服务器返回的数据直接显示\n }, function (error) {\n that.result = '获取结果失败';\n console.error(error);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","userName","sbp","dbp","result","methods","getResult","formData","FormData","append","that","axios","post","headers","then","response","error","console","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <div class=\"Hypertension_1\">\r\n <div id=\"result\">{{ result }}</div>\r\n <input type=\"text\" id=\"userName\" v-model=\"userName\" placeholder=\"考生姓名\" />\r\n <input type=\"text\" id=\"sbp\" v-model=\"sbp\" placeholder=\"收缩压\" />\r\n <input type=\"text\" id=\"dbp\" v-model=\"dbp\" placeholder=\"舒张压\" />\r\n <button id=\"getResult\" @click=\"getResult\">获取结果</button>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: 'Hypertension_1',\r\n data() {\r\n return {\r\n proxy: 'http://10.128.128.249:8022/',\r\n url: 'public_api/v1/api_for_vue_exam_hypertension_1',\r\n userName: '考生姓名',\r\n sbp: 0,\r\n dbp: 0,\r\n result: ''\r\n };\r\n },\r\n methods: {\r\n getResult() {\r\n const formData = new FormData();\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n let url = this.proxy + this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n ).then(\r\n function (response) {\r\n that.result = response.data; // 假设服务器返回的数据直接显示\r\n },\r\n function (error) {\r\n that.result = '获取结果失败';\r\n console.error(error);\r\n }\r\n );\r\n }\r\n },\r\n mounted() {\r\n window.myVue = this;\r\n }\r\n };\r\n</script>\r\n\r\n<style scoped>\r\n /* 添加一些简单的样式 */\r\n .Hypertension_1 {\r\n margin: 20px;\r\n }\r\n input, button {\r\n margin: 5px;\r\n }\r\n</style>"],"mappings":"AAWI,eAAe;EACXA,IAAI,EAAE,gBAAgB;EACtBC,IAAIA,CAAA,EAAG;IACH,OAAO;MACHC,KAAK,EAAE,6BAA6B;MACpCC,GAAG,EAAE,+CAA+C;MACpDC,QAAQ,EAAE,MAAM;MAChBC,GAAG,EAAE,CAAC;MACNC,GAAG,EAAE,CAAC;MACNC,MAAM,EAAE;IACZ,CAAC;EACL,CAAC;EACDC,OAAO,EAAE;IACLC,SAASA,CAAA,EAAG;MACR,MAAMC,QAAO,GAAI,IAAIC,QAAQ,CAAC,CAAC;MAC/BD,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACP,GAAG,CAAC;MAChCK,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACN,GAAG,CAAC;MAChC,IAAIH,GAAE,GAAI,IAAI,CAACD,KAAI,GAAI,IAAI,CAACC,GAAG;MAC/B,IAAIU,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,IAAI,CACXZ,GAAG,EACHO,QAAQ,EACR;QACIM,OAAO,EAAE;UACL,cAAc,EAAE;QACpB;MACJ,CACJ,CAAC,CAACC,IAAI,CACF,UAAUC,QAAQ,EAAE;QAChBL,IAAI,CAACN,MAAK,GAAIW,QAAQ,CAACjB,IAAI,EAAE;MACjC,CAAC,EACD,UAAUkB,KAAK,EAAE;QACbN,IAAI,CAACN,MAAK,GAAI,QAAQ;QACtBa,OAAO,CAACD,KAAK,CAACA,KAAK,CAAC;MACxB,CACJ,CAAC;IACL;EACJ,CAAC;EACDE,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAI,GAAI,IAAI;EACvB;AACJ,CAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { resolveComponent as _resolveComponent, createVNode as _createVNode, createTextVNode as _createTextVNode, withCtx as _withCtx, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_IndexDefault = _resolveComponent(\"IndexDefault\");\n const _component_router_link = _resolveComponent(\"router-link\");\n const _component_router_view = _resolveComponent(\"router-view\");\n return _openBlock(), _createElementBlock(_Fragment, null, [_createVNode(_component_IndexDefault), _createVNode(_component_router_link, {\n to: \"/\",\n class: \"IndexDefault\"\n }, {\n default: _withCtx(() => _cache[0] || (_cache[0] = [_createTextVNode(\"IndexDefault\")])),\n _: 1 /* STABLE */,\n __: [0]\n }), _createVNode(_component_router_link, {\n to: \"/GetToken_1\",\n class: \"GetToken_1\"\n }, {\n default: _withCtx(() => _cache[1] || (_cache[1] = [_createTextVNode(\"GetToken_1\")])),\n _: 1 /* STABLE */,\n __: [1]\n }), _createVNode(_component_router_link, {\n to: \"/Login_1\",\n class: \"Login_1\"\n }, {\n default: _withCtx(() => _cache[2] || (_cache[2] = [_createTextVNode(\"Login_1\")])),\n _: 1 /* STABLE */,\n __: [2]\n }), _createVNode(_component_router_link, {\n to: {\n path: '/Edit_1',\n query: {\n name: $data.name\n }\n },\n class: \"Edit_1\",\n id: \"Edit_1\"\n }, {\n default: _withCtx(() => _cache[3] || (_cache[3] = [_createTextVNode(\"Edit_1\")])),\n _: 1 /* STABLE */,\n __: [3]\n }, 8 /* PROPS */, [\"to\"]), _createVNode(_component_router_link, {\n to: \"/Ref_1\",\n class: \"Ref_1\"\n }, {\n default: _withCtx(() => _cache[4] || (_cache[4] = [_createTextVNode(\"Ref_1\")])),\n _: 1 /* STABLE */,\n __: [4]\n }), _createVNode(_component_router_link, {\n to: \"/Hypertension_1\",\n class: \"Hypertension_1\"\n }, {\n default: _withCtx(() => _cache[5] || (_cache[5] = [_createTextVNode(\"Hypertension_1\")])),\n _: 1 /* STABLE */,\n __: [5]\n }), _createVNode(_component_router_link, {\n to: \"/person_881_1/ListPerson\"\n }, {\n default: _withCtx(() => _cache[6] || (_cache[6] = [_createTextVNode(\"ListPerson\")])),\n _: 1 /* STABLE */,\n __: [6]\n }), _createVNode(_component_router_view)], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createVNode","_component_IndexDefault","_component_router_link","to","class","_cache","path","query","name","$data","id","_component_router_view"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'杨城浩',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":";;;;;6DACEA,YAAA,CAA6BC,uBAAA,GAC7BD,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC,GAAG;IAACC,KAAK,EAAC;;sBAAe,MAAYC,MAAA,QAAAA,MAAA,O,iBAAZ,cAAY,E;;;MACrDL,YAAA,CAAyEE,sBAAA;IAA5DC,EAAE,EAAC,aAAa;IAACC,KAAK,EAAC;;sBAAa,MAAUC,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MAC3DL,YAAA,CAAgEE,sBAAA;IAAnDC,EAAE,EAAC,UAAU;IAACC,KAAK,EAAC;;sBAAU,MAAOC,MAAA,QAAAA,MAAA,O,iBAAP,SAAO,E;;;MAClDL,YAAA,CAAqGE,sBAAA;IAAvFC,EAAE;MAAAG,IAAA;MAAAC,KAAA;QAAAC,IAAA,EAA8BC,KAAA,CAAAD;MAAI;IAAA;IAAIJ,KAAK,EAAC,QAAQ;IAACM,EAAE,EAAC;;sBAAS,MAAML,MAAA,QAAAA,MAAA,O,iBAAN,QAAM,E;;;6BACvFL,YAAA,CAA0DE,sBAAA;IAA7CC,EAAE,EAAC,QAAQ;IAACC,KAAK,EAAC;;sBAAQ,MAAKC,MAAA,QAAAA,MAAA,O,iBAAL,OAAK,E;;;MAC5CL,YAAA,CAAqFE,sBAAA;IAAxEC,EAAE,EAAC,iBAAiB;IAACC,KAAK,EAAC;;sBAAiB,MAAcC,MAAA,QAAAA,MAAA,O,iBAAd,gBAAc,E;;;MACvEL,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC;EAA0B;sBAAC,MAAUE,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MACrDL,YAAA,CAA2BW,sBAAA,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Login_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"public_api/v1/api_for_vue_exam_2\",\n token: \"no token\",\n student_id: \"202140701358\"\n };\n },\n methods: {\n getToken() {\n const formData = new FormData();\n formData.append(\"student_id\", this.student_id);\n let url = this.proxy + this.url;\n let that = this;\n this.axios.post(url, formData, {\n headers: {\n 'Content-Type': 'multipart/form-data'\n }\n }).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(\"有可能是防火墙没有开\");\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","formData","FormData","append","that","axios","post","headers","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Login_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"text\" id=\"student_id\" v-model=\"student_id\" >\r\n <input type=\"button\" id=\"getToken\" @click='getToken' value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Login_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"public_api/v1/api_for_vue_exam_2\",\r\n token:\"no token\",\r\n student_id:\"202140701358\",\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"student_id\",this.student_id);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,SAAS;EACfC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,kCAAkC;MACtCC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAC;IACf;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MAEN,MAAMC,QAAO,GAAI,IAAIC,QAAQ,CAAC,CAAC;MAE/BD,QAAQ,CAACE,MAAM,CAAC,YAAY,EAAC,IAAI,CAACL,UAAU,CAAC;MAE7C,IAAIF,GAAE,GAAI,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG;MAC7B,IAAIQ,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,IAAI,CACXV,GAAG,EACHK,QAAQ,EACR;QACIM,OAAO,EAAE;UACL,cAAc,EAAE;QACpB;MACJ,CAEJ,CAAC,CAACC,IAAI,CACF,UAAUC,QAAQ,EAAE;QAChBL,IAAI,CAACP,KAAI,GAAIY,QAAQ,CAACf,IAAI;MAC9B,CAAC,EACD,UAAUgB,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAAC,YAAY,CAAC;QACzBD,OAAO,CAACC,GAAG,CAACF,KAAK,CAAChB,IAAI,CAAC;MAC3B,CACJ;IAEJ;EACJ,CAAC;EACDmB,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401011\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'App',\n components: {},\n data() {\n return {\n name: '杨城浩'\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","components","data","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'杨城浩',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":"AAaA,eAAe;EACbA,IAAI,EAAE,KAAK;EACXC,UAAU,EAAE,CACZ,CAAC;EACDC,IAAIA,CAAA,EAAE;IACJ,OAAM;MACJF,IAAI,EAAC;IACP;EACF,CAAC;EACDG,OAAOA,CAAA,EAAE;IACPC,MAAM,CAACC,KAAK,GAAC,IAAI;EACnB;AACF","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'App',\n components: {},\n data() {\n return {\n name: ''\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","components","data","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":"AAaA,eAAe;EACbA,IAAI,EAAE,KAAK;EACXC,UAAU,EAAE,CACZ,CAAC;EACDC,IAAIA,CAAA,EAAE;IACJ,OAAM;MACJF,IAAI,EAAC;IACP;EACF,CAAC;EACDG,OAAOA,CAAA,EAAE;IACPC,MAAM,CAACC,KAAK,GAAC,IAAI;EACnB;AACF","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[0] || (_cache[0] = _createElementVNode(\"hr\", null, null, -1 /* CACHED */)), _cache[1] || (_cache[1] = _createElementVNode(\"h3\", null, \"index default\", -1 /* CACHED */))], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createElementVNode"],"sources":["C:\\exam_app\\app_vue\\src\\components\\IndexDefault.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <h3>index default</h3>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"IndexDefault\"\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;uFACIA,mBAAA,CAAI,qC,0BACJA,mBAAA,CAAsB,YAAlB,eAAa,oB","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[1] || (_cache[1] = _createElementVNode(\"br\", null, null, -1 /* CACHED */)), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _cache[2] || (_cache[2] = _createElementVNode(\"br\", null, null, -1 /* CACHED */)), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <div id=\"token\">{{token}}</div><br>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"dad_666\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n student_id:\"202140501037\",\r\n token:\"\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url = this.domain + this.url + this.student_id;\r\n let that = this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAO;;uFADfC,mBAAA,CAAI,qCACJA,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kB,0BAAQJ,mBAAA,CAAI,qCACnCA,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[1] || (_cache[1] = _createElementVNode(\"br\", null, null, -1 /* CACHED */)), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _cache[2] || (_cache[2] = _createElementVNode(\"br\", null, null, -1 /* CACHED */)), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <div id=\"token\">{{token}}</div><br>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"dad_666\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n student_id:\"202241401040\",\r\n token:\"\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url = this.domain + this.url + this.student_id;\r\n let that = this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAO;;uFADfC,mBAAA,CAAI,qCACJA,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kB,0BAAQJ,mBAAA,CAAI,qCACnCA,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createApp } from 'vue';\nimport App from './App.vue';\nimport router from \"@/router\";\nimport axios from \"axios\";\nconst myApp = createApp(App);\nmyApp.use(router);\nmyApp.config.globalProperties.axios = axios;\nmyApp.mount(\"#app\");\n//createApp(App).mount('#app')","map":{"version":3,"names":["createApp","App","router","axios","myApp","use","config","globalProperties","mount"],"sources":["C:/exam_app/app_vue/src/main.js"],"sourcesContent":["import { createApp } from 'vue'\nimport App from './App.vue'\nimport router from \"@/router\";\nimport axios from \"axios\";\nconst myApp=createApp(App);\nmyApp.use(router);\nmyApp.config.globalProperties.axios=axios;\nmyApp.mount(\"#app\");\n//createApp(App).mount('#app')\n"],"mappings":"AAAA,SAASA,SAAS,QAAQ,KAAK;AAC/B,OAAOC,GAAG,MAAM,WAAW;AAC3B,OAAOC,MAAM,MAAM,UAAU;AAC7B,OAAOC,KAAK,MAAM,OAAO;AACzB,MAAMC,KAAK,GAACJ,SAAS,CAACC,GAAG,CAAC;AAC1BG,KAAK,CAACC,GAAG,CAACH,MAAM,CAAC;AACjBE,KAAK,CAACE,MAAM,CAACC,gBAAgB,CAACJ,KAAK,GAACA,KAAK;AACzCC,KAAK,CAACI,KAAK,CAAC,MAAM,CAAC;AACnB","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"IndexDefault\"\n};","map":{"version":3,"names":["name"],"sources":["C:\\exam_app\\app_vue\\src\\components\\IndexDefault.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <h3>index default</h3>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"IndexDefault\"\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n h3{\r\n color: brown;\r\n }\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE;AACV","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[0] || (_cache[0] = _createElementVNode(\"hr\", null, null, -1 /* CACHED */)), _cache[1] || (_cache[1] = _createElementVNode(\"h3\", null, \"index default\", -1 /* CACHED */))], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createElementVNode"],"sources":["C:\\exam_app\\app_vue\\src\\components\\IndexDefault.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <h3>index default</h3>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"IndexDefault\"\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n h3{\r\n color: brown;\r\n }\r\n</style>"],"mappings":";;uFACIA,mBAAA,CAAI,qC,0BACJA,mBAAA,CAAsB,YAAlB,eAAa,oB","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401073\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { resolveComponent as _resolveComponent, createVNode as _createVNode, createTextVNode as _createTextVNode, withCtx as _withCtx, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_IndexDefault = _resolveComponent(\"IndexDefault\");\n const _component_router_link = _resolveComponent(\"router-link\");\n const _component_router_view = _resolveComponent(\"router-view\");\n return _openBlock(), _createElementBlock(_Fragment, null, [_createVNode(_component_IndexDefault), _createVNode(_component_router_link, {\n to: \"/\",\n class: \"IndexDefault\"\n }, {\n default: _withCtx(() => _cache[0] || (_cache[0] = [_createTextVNode(\"IndexDefault\")])),\n _: 1 /* STABLE */,\n __: [0]\n }), _createVNode(_component_router_link, {\n to: \"/GetToken_1\",\n class: \"GetToken_1\"\n }, {\n default: _withCtx(() => _cache[1] || (_cache[1] = [_createTextVNode(\"GetToken_1\")])),\n _: 1 /* STABLE */,\n __: [1]\n }), _createVNode(_component_router_link, {\n to: \"/Login_1\",\n class: \"Login_1\"\n }, {\n default: _withCtx(() => _cache[2] || (_cache[2] = [_createTextVNode(\"Login_1\")])),\n _: 1 /* STABLE */,\n __: [2]\n }), _createVNode(_component_router_link, {\n to: {\n path: '/Edit_1',\n query: {\n name: $data.name\n }\n },\n class: \"Edit_1\",\n id: \"Edit_1\"\n }, {\n default: _withCtx(() => _cache[3] || (_cache[3] = [_createTextVNode(\"Edit_1\")])),\n _: 1 /* STABLE */,\n __: [3]\n }, 8 /* PROPS */, [\"to\"]), _createVNode(_component_router_link, {\n to: \"/Ref_1\",\n class: \"Ref_1\"\n }, {\n default: _withCtx(() => _cache[4] || (_cache[4] = [_createTextVNode(\"Ref_1\")])),\n _: 1 /* STABLE */,\n __: [4]\n }), _createVNode(_component_router_link, {\n to: \"/Hypertension_1\",\n class: \"Hypertension_1\"\n }, {\n default: _withCtx(() => _cache[5] || (_cache[5] = [_createTextVNode(\"Hypertension_1\")])),\n _: 1 /* STABLE */,\n __: [5]\n }), _createVNode(_component_router_link, {\n to: \"/person_881_1/ListPerson\"\n }, {\n default: _withCtx(() => _cache[6] || (_cache[6] = [_createTextVNode(\"ListPerson\")])),\n _: 1 /* STABLE */,\n __: [6]\n }), _createVNode(_component_router_view)], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createVNode","_component_IndexDefault","_component_router_link","to","class","_cache","path","query","name","$data","id","_component_router_view"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":";;;;;6DACEA,YAAA,CAA6BC,uBAAA,GAC7BD,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC,GAAG;IAACC,KAAK,EAAC;;sBAAe,MAAYC,MAAA,QAAAA,MAAA,O,iBAAZ,cAAY,E;;;MACrDL,YAAA,CAAyEE,sBAAA;IAA5DC,EAAE,EAAC,aAAa;IAACC,KAAK,EAAC;;sBAAa,MAAUC,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MAC3DL,YAAA,CAAgEE,sBAAA;IAAnDC,EAAE,EAAC,UAAU;IAACC,KAAK,EAAC;;sBAAU,MAAOC,MAAA,QAAAA,MAAA,O,iBAAP,SAAO,E;;;MAClDL,YAAA,CAAqGE,sBAAA;IAAvFC,EAAE;MAAAG,IAAA;MAAAC,KAAA;QAAAC,IAAA,EAA8BC,KAAA,CAAAD;MAAI;IAAA;IAAIJ,KAAK,EAAC,QAAQ;IAACM,EAAE,EAAC;;sBAAS,MAAML,MAAA,QAAAA,MAAA,O,iBAAN,QAAM,E;;;6BACvFL,YAAA,CAA0DE,sBAAA;IAA7CC,EAAE,EAAC,QAAQ;IAACC,KAAK,EAAC;;sBAAQ,MAAKC,MAAA,QAAAA,MAAA,O,iBAAL,OAAK,E;;;MAC5CL,YAAA,CAAqFE,sBAAA;IAAxEC,EAAE,EAAC,iBAAiB;IAACC,KAAK,EAAC;;sBAAiB,MAAcC,MAAA,QAAAA,MAAA,O,iBAAd,gBAAc,E;;;MACvEL,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC;EAA0B;sBAAC,MAAUE,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MACrDL,YAAA,CAA2BW,sBAAA,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"dad_666\",\n data() {\n return {\n domain: \"http://10.128.128.249:8022/\",\n url: \"public_api/v1/api_for_vue_exam_1?student_id=\",\n student_id: \"202241401040\",\n token: \"\"\n };\n },\n methods: {\n getToken() {\n let url = this.domain + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","domain","url","student_id","token","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <div id=\"token\">{{token}}</div><br>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"dad_666\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n student_id:\"202241401040\",\r\n token:\"\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url = this.domain + this.url + this.student_id;\r\n let that = this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,SAAS;EACfC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,MAAM,EAAC,6BAA6B;MACpCC,GAAG,EAAC,8CAA8C;MAClDC,UAAU,EAAC,cAAc;MACzBC,KAAK,EAAC;IACV;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAE,GAAI,IAAI,CAACD,MAAK,GAAI,IAAI,CAACC,GAAE,GAAI,IAAI,CAACC,UAAU;MAClD,IAAII,IAAG,GAAI,IAAI;MACf,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACH,KAAI,GAAIO,QAAQ,CAACX,IAAI;MAC9B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CACJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"DeletePerson\",\n data() {\n return {\n proxy: \"/springbootServer\",\n urlDelete: \"/PersonBaseInfo_881_1/delete\",\n message: \"如确定删除请点击删除按钮\",\n id: this.$route.query.id\n };\n },\n methods: {\n deletePerson() {\n let url = this.proxy + this.urlDelete + \"?id=\" + this.id;\n console.log(url);\n let that = this;\n this.axios.get(url).then(function (response) {\n console.log(response);\n //console.log(response.data.code);\n that.message = \"删除成功\";\n }, function (error) {\n that.message = \"删除失败\";\n console.log(error.data);\n });\n }\n },\n mounted() {\n //this.delete();\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","urlDelete","message","id","$route","query","methods","deletePerson","url","console","log","that","axios","get","then","response","error","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\person_881_1\\DeletePerson.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <div>{{message}}</div>\r\n <button id=\"button_delete\" @click='deletePerson'>删除</button>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"DeletePerson\",\r\n data(){\r\n return{\r\n proxy:\"/springbootServer\",\r\n urlDelete:\"/PersonBaseInfo_881_1/delete\",\r\n message:\"如确定删除请点击删除按钮\",\r\n id:this.$route.query.id,\r\n\r\n }\r\n },\r\n methods:{\r\n deletePerson(){\r\n let url = this.proxy+this.urlDelete+\"?id=\"+this.id;\r\n console.log(url);\r\n let that = this;\r\n\r\n this.axios.get(url).then(\r\n function (response) {\r\n console.log(response)\r\n //console.log(response.data.code);\r\n that.message=\"删除成功\";\r\n },\r\n function (error) {\r\n that.message=\"删除失败\";\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n //this.delete();\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n\r\n\r\n"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,cAAc;EACpBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,mBAAmB;MACzBC,SAAS,EAAC,8BAA8B;MACxCC,OAAO,EAAC,cAAc;MACtBC,EAAE,EAAC,IAAI,CAACC,MAAM,CAACC,KAAK,CAACF;IAEzB;EACJ,CAAC;EACDG,OAAO,EAAC;IACJC,YAAYA,CAAA,EAAE;MACV,IAAIC,GAAE,GAAI,IAAI,CAACR,KAAK,GAAC,IAAI,CAACC,SAAS,GAAC,MAAM,GAAC,IAAI,CAACE,EAAE;MAClDM,OAAO,CAACC,GAAG,CAACF,GAAG,CAAC;MAChB,IAAIG,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,GAAG,CAACL,GAAG,CAAC,CAACM,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBN,OAAO,CAACC,GAAG,CAACK,QAAQ;QACpB;QACAJ,IAAI,CAACT,OAAO,GAAC,MAAM;MACvB,CAAC,EACD,UAAUc,KAAK,EAAE;QACbL,IAAI,CAACT,OAAO,GAAC,MAAM;QACnBO,OAAO,CAACC,GAAG,CAACM,KAAK,CAACjB,IAAI,CAAC;MAC3B,CACJ;IACJ;EACJ,CAAC;EACDkB,OAAOA,CAAA,EAAG;IACN;IACAC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202241401041\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401041\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,8CAA8C;MAClDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'App',\n components: {},\n data() {\n return {\n name: '王仁杰'\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","components","data","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'王仁杰',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":"AAaA,eAAe;EACbA,IAAI,EAAE,KAAK;EACXC,UAAU,EAAE,CACZ,CAAC;EACDC,IAAIA,CAAA,EAAE;IACJ,OAAM;MACJF,IAAI,EAAC;IACP;EACF,CAAC;EACDG,OAAOA,CAAA,EAAE;IACPC,MAAM,CAACC,KAAK,GAAC,IAAI;EACnB;AACF","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { ref } from \"vue\";\nexport default {\n name: \"Ref_1\",\n data() {\n return {\n refName: ref('mike'),\n refInputName: ref(\"null\")\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["ref","name","data","refName","refInputName","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Ref_1.vue"],"sourcesContent":["<template>\r\n <div id=\"div_1\" ref=\"refName\">{{refName}}</div>\r\n <input type=\"text\" id=\"name\" value=\"\" v-model=\"refName\" >\r\n</template>\r\n\r\n<script>\r\n import {ref} from \"vue\";\r\n export default {\r\n name: \"Ref_1\",\r\n data(){\r\n return{\r\n refName:ref('mike'),\r\n refInputName:ref(\"null\"),\r\n }\r\n },\r\n mounted(){\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,SAAQA,GAAG,QAAO,KAAK;AACvB,eAAe;EACXC,IAAI,EAAE,OAAO;EACbC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,OAAO,EAACH,GAAG,CAAC,MAAM,CAAC;MACnBI,YAAY,EAACJ,GAAG,CAAC,MAAM;IAC3B;EACJ,CAAC;EACDK,OAAOA,CAAA,EAAE;IACLC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"dad_666\",\n data() {\n return {\n domain: \"http://10.128.128.249:8022/\",\n url: \"public_api/v1/api_for_vue_exam_1?student_id=\",\n student_id: \"202140501037\",\n token: \"\"\n };\n },\n methods: {\n getToken() {\n let url = this.domain + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","domain","url","student_id","token","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <div id=\"token\">{{token}}</div><br>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"dad_666\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n student_id:\"202140501037\",\r\n token:\"\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url = this.domain + this.url + this.student_id;\r\n let that = this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,SAAS;EACfC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,MAAM,EAAC,6BAA6B;MACpCC,GAAG,EAAC,8CAA8C;MAClDC,UAAU,EAAC,cAAc;MACzBC,KAAK,EAAC;IACV;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAE,GAAI,IAAI,CAACD,MAAK,GAAI,IAAI,CAACC,GAAE,GAAI,IAAI,CAACC,UAAU;MAClD,IAAII,IAAG,GAAI,IAAI;MACf,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACH,KAAI,GAAIO,QAAQ,CAACX,IAAI;MAC9B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CACJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, vModelText as _vModelText, withDirectives as _withDirectives, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"student_id\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.student_id = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.student_id]]), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[1] || (_cache[1] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","student_id","$event","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Login_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"text\" id=\"student_id\" v-model=\"student_id\">\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Login_1\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_2\",\r\n student_id: \"\",\r\n token:\"\",\r\n }\r\n },\r\n methods:{\r\n getToken() {\r\n const formData = new FormData();\r\n formData.append(\"student_id\", this.student_id);\r\n let url = this.domain + this.url;\r\n let that = this;\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers:{\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n ).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error)\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kB,gBACvBJ,mBAAA,CAAyD;IAAlDK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,YAAY;+DAAWI,KAAA,CAAAG,UAAU,GAAAC,MAAA;iDAAVJ,KAAA,CAAAG,UAAU,E,GACvDN,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAES,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401041\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202241401041\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401041\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,+CAA+C;MACnDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401065\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kBACvBJ,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"Hypertension_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_hypertension_1\",\n userName: \"王仁杰\",\n sbp: 0,\n dbp: 0,\n result: \"\"\n };\n },\n methods: {\n getResult() {\n const formData = new FormData();\n formData.append(\"userName\", this.userName);\n formData.append(\"sbp\", this.sbp);\n formData.append(\"dbp\", this.dbp);\n let url = this.proxy + this.url;\n let that = this;\n this.axios.post(url, formData, {\n headers: {\n 'Content-Type': 'multipart/form-data'\n }\n }).then(function (response) {\n that.result = response.data;\n }, function (error) {\n console.log(\"有可能是防火墙没有开\");\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","userName","sbp","dbp","result","methods","getResult","formData","FormData","append","that","axios","post","headers","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue"],"sourcesContent":["<template>\r\n <h3>居民血压管理系统</h3>\r\n <div id=\"result\">{{result}}</div>\r\n 居民姓名:<input type=\"text\" id=\"userName\" v-model=\"userName\">\r\n sbp:<input type=\"text\" id=\"sbp\" v-model=\"sbp\">\r\n dbp:<input type=\"text\" id=\"dbp\" v-model=\"dbp\">\r\n <input type=\"button\" id=\"getResult\" @click=\"getResult\" value=\"getResult\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Hypertension_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_hypertension_1\",\r\n userName:\"王仁杰\",\r\n sbp:0,\r\n dbp:0,\r\n result:\"\",\r\n }\r\n },\r\n methods:{\r\n getResult(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"userName\", this.userName);\r\n formData.append(\"sbp\", this.sbp);\r\n formData.append(\"dbp\", this.dbp);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.result= response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAUI,eAAe;EACXA,IAAI,EAAE,gBAAgB;EACtBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,gDAAgD;MACpDC,QAAQ,EAAC,KAAK;MACdC,GAAG,EAAC,CAAC;MACLC,GAAG,EAAC,CAAC;MACLC,MAAM,EAAC;IACX;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,SAASA,CAAA,EAAE;MAEP,MAAMC,QAAO,GAAI,IAAIC,QAAQ,CAAC,CAAC;MAE/BD,QAAQ,CAACE,MAAM,CAAC,UAAU,EAAE,IAAI,CAACR,QAAQ,CAAC;MAC1CM,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACP,GAAG,CAAC;MAChCK,QAAQ,CAACE,MAAM,CAAC,KAAK,EAAE,IAAI,CAACN,GAAG,CAAC;MAEhC,IAAIH,GAAE,GAAI,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG;MAC7B,IAAIU,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,IAAI,CACXZ,GAAG,EACHO,QAAQ,EACR;QACIM,OAAO,EAAE;UACL,cAAc,EAAE;QACpB;MACJ,CAEJ,CAAC,CAACC,IAAI,CACF,UAAUC,QAAQ,EAAE;QAChBL,IAAI,CAACN,MAAM,GAAEW,QAAQ,CAACjB,IAAI;MAC9B,CAAC,EACD,UAAUkB,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAAC,YAAY,CAAC;QACzBD,OAAO,CAACC,GAAG,CAACF,KAAK,CAAClB,IAAI,CAAC;MAC3B,CACJ;IAEJ;EACJ,CAAC;EACDqB,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: 'App',\n components: {},\n data() {\n return {\n name: \"杨城浩\"\n };\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","components","data","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>|\n\n\n\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>|\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>|\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>|\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" id=\"Edit_1\" class=\"Edit_1\">Edit_1</router-link>|\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>|\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>|\n <router-view></router-view>\n</template>\n\n<script>\n\n\n export default {\n name: 'App',\n components: {\n\n },\n data()\n {\n return{\n name:\"杨城浩\",\n }\n },\n mounted() {\n window.myVue=this;\n }\n }\n</script>\n\n<style>\n #app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n }\n</style>\n"],"mappings":"AAkBE,eAAe;EACbA,IAAI,EAAE,KAAK;EACXC,UAAU,EAAE,CAEZ,CAAC;EACDC,IAAIA,CAAA,EACJ;IACE,OAAM;MACJF,IAAI,EAAC;IACP;EACF,CAAC;EACDG,OAAOA,CAAA,EAAG;IACRC,MAAM,CAACC,KAAK,GAAC,IAAI;EACnB;AACF","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_cache[1] || (_cache[1] = _createElementVNode(\"br\", null, null, -1 /* CACHED */)), _createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _cache[2] || (_cache[2] = _createElementVNode(\"br\", null, null, -1 /* CACHED */)), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[0] || (_cache[0] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <br>\r\n <div id=\"token\">{{token}}</div><br>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"dad_666\",\r\n data(){\r\n return{\r\n domain:\"http://10.128.128.249:8022/\",\r\n url:\"public_api/v1/api_for_vue_exam_1?student_id=\",\r\n student_id:\"202241401095\",\r\n token:\"\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url = this.domain + this.url + this.student_id;\r\n let that = this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EAESA,EAAE,EAAC;AAAO;;uFADfC,mBAAA,CAAI,qCACJA,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kB,0BAAQJ,mBAAA,CAAI,qCACnCA,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAEO,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"DeletePerson\",\n data() {\n return {\n proxy: \"/springbootServer\",\n urlDelete: \"/personBaseInfo_881_1/delete\",\n message: \"如确定删除请点击删除按钮\",\n id: this.$route.query.id\n };\n },\n methods: {\n deletePerson() {\n let url = this.proxy + this.urlDelete + \"?id=\" + this.id;\n console.log(url);\n let that = this;\n this.axios.get(url).then(function (response) {\n console.log(response);\n //console.log(response.data.code);\n that.message = \"删除成功\";\n }, function (error) {\n that.message = \"删除失败\";\n console.log(error.data);\n });\n }\n },\n mounted() {\n //this.delete();\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","urlDelete","message","id","$route","query","methods","deletePerson","url","console","log","that","axios","get","then","response","error","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\person_881_1\\DeletePerson.vue"],"sourcesContent":["<template>\r\n <hr>\r\n <div>{{message}}</div>\r\n <button id=\"button_delete\" @click='deletePerson'>删除</button>\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"DeletePerson\",\r\n data(){\r\n return{\r\n proxy:\"/springbootServer\",\r\n urlDelete:\"/personBaseInfo_881_1/delete\",\r\n message:\"如确定删除请点击删除按钮\",\r\n id:this.$route.query.id,\r\n\r\n }\r\n },\r\n methods:{\r\n deletePerson(){\r\n let url = this.proxy+this.urlDelete+\"?id=\"+this.id;\r\n console.log(url);\r\n let that = this;\r\n\r\n this.axios.get(url).then(\r\n function (response) {\r\n console.log(response)\r\n //console.log(response.data.code);\r\n that.message=\"删除成功\";\r\n },\r\n function (error) {\r\n that.message=\"删除失败\";\r\n console.log(error.data);\r\n }\r\n )\r\n }\r\n },\r\n mounted() {\r\n //this.delete();\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>\r\n\r\n\r\n"],"mappings":"AAOI,eAAe;EACXA,IAAI,EAAE,cAAc;EACpBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,mBAAmB;MACzBC,SAAS,EAAC,8BAA8B;MACxCC,OAAO,EAAC,cAAc;MACtBC,EAAE,EAAC,IAAI,CAACC,MAAM,CAACC,KAAK,CAACF;IAEzB;EACJ,CAAC;EACDG,OAAO,EAAC;IACJC,YAAYA,CAAA,EAAE;MACV,IAAIC,GAAE,GAAI,IAAI,CAACR,KAAK,GAAC,IAAI,CAACC,SAAS,GAAC,MAAM,GAAC,IAAI,CAACE,EAAE;MAClDM,OAAO,CAACC,GAAG,CAACF,GAAG,CAAC;MAChB,IAAIG,IAAG,GAAI,IAAI;MAEf,IAAI,CAACC,KAAK,CAACC,GAAG,CAACL,GAAG,CAAC,CAACM,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBN,OAAO,CAACC,GAAG,CAACK,QAAQ;QACpB;QACAJ,IAAI,CAACT,OAAO,GAAC,MAAM;MACvB,CAAC,EACD,UAAUc,KAAK,EAAE;QACbL,IAAI,CAACT,OAAO,GAAC,MAAM;QACnBO,OAAO,CAACC,GAAG,CAACM,KAAK,CAACjB,IAAI,CAAC;MAC3B,CACJ;IACJ;EACJ,CAAC;EACDkB,OAAOA,CAAA,EAAG;IACN;IACAC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, vModelText as _vModelText, withDirectives as _withDirectives, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n id: \"token\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n return _openBlock(), _createElementBlock(_Fragment, null, [_createElementVNode(\"div\", _hoisted_1, _toDisplayString($data.token), 1 /* TEXT */), _withDirectives(_createElementVNode(\"input\", {\n type: \"text\",\n id: \"student_id\",\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $data.student_id = $event)\n }, null, 512 /* NEED_PATCH */), [[_vModelText, $data.student_id]]), _createElementVNode(\"input\", {\n type: \"button\",\n id: \"getToken\",\n onClick: _cache[1] || (_cache[1] = (...args) => $options.getToken && $options.getToken(...args)),\n value: \"getToken\"\n })], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["id","_createElementVNode","_hoisted_1","_toDisplayString","$data","token","type","student_id","$event","onClick","_cache","args","$options","getToken","value"],"sources":["C:\\exam_app\\app_vue\\src\\components\\Login_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"text\" id=\"student_id\" v-model=\"student_id\" >\r\n <input type=\"button\" id=\"getToken\" @click='getToken' value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"Login_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"public_api/v1/api_for_vue_exam_2\",\r\n token:\"no token\",\r\n student_id:\"202140701358\",\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n\r\n const formData = new FormData();\r\n\r\n formData.append(\"student_id\",this.student_id);\r\n\r\n let url = this.proxy+this.url;\r\n let that = this;\r\n\r\n this.axios.post(\r\n url,\r\n formData,\r\n {\r\n headers: {\r\n 'Content-Type': 'multipart/form-data'\r\n }\r\n }\r\n\r\n ).then(\r\n function (response) {\r\n that.token = response.data;\r\n },\r\n function (error) {\r\n console.log(\"有可能是防火墙没有开\");\r\n console.log(error.data);\r\n }\r\n )\r\n\r\n },\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":";;EACSA,EAAE,EAAC;AAAO;;6DAAfC,mBAAA,CAA+B,OAA/BC,UAA+B,EAAAC,gBAAA,CAAbC,KAAA,CAAAC,KAAK,kB,gBACvBJ,mBAAA,CAAyD;IAAlDK,IAAI,EAAC,MAAM;IAACN,EAAE,EAAC,YAAY;+DAAUI,KAAA,CAAAG,UAAU,GAAAC,MAAA;iDAAVJ,KAAA,CAAAG,UAAU,E,GACtDN,mBAAA,CAAsE;IAA/DK,IAAI,EAAC,QAAQ;IAACN,EAAE,EAAC,UAAU;IAAES,OAAK,EAAAC,MAAA,QAAAA,MAAA,UAAAC,IAAA,KAAEC,QAAA,CAAAC,QAAA,IAAAD,QAAA,CAAAC,QAAA,IAAAF,IAAA,CAAQ;IAAEG,KAAK,EAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"export default {\n name: \"GetToken_1\",\n data() {\n return {\n proxy: \"/examServer\",\n url: \"/public_api/v1/api_for_vue_exam_1?student_id=\",\n token: \"no token\",\n student_id: \"202241401039\"\n };\n },\n methods: {\n getToken() {\n let url = this.proxy + this.url + this.student_id;\n let that = this;\n this.axios.get(url).then(function (response) {\n that.token = response.data;\n }, function (error) {\n console.log(error.data);\n });\n }\n },\n mounted() {\n window.myVue = this;\n }\n};","map":{"version":3,"names":["name","data","proxy","url","token","student_id","methods","getToken","that","axios","get","then","response","error","console","log","mounted","window","myVue"],"sources":["C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue"],"sourcesContent":["<template>\r\n <div id=\"token\">{{token}}</div>\r\n <input type=\"button\" id=\"getToken\" @click=\"getToken\" value=\"getToken\">\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"GetToken_1\",\r\n data(){\r\n return{\r\n proxy:\"/examServer\",\r\n url:\"/public_api/v1/api_for_vue_exam_1?student_id=\",\r\n token:\"no token\",\r\n student_id: \"202241401039\"\r\n }\r\n },\r\n methods:{\r\n getToken(){\r\n let url=this.proxy+this.url+this.student_id;\r\n let that=this;\r\n this.axios.get(url).then(\r\n function (response) {\r\n that.token=response.data;\r\n },\r\n function (error) {\r\n console.log(error.data);\r\n }\r\n\r\n )\r\n }\r\n },\r\n mounted() {\r\n window.myVue=this;\r\n }\r\n }\r\n</script>\r\n\r\n<style scoped>\r\n\r\n</style>"],"mappings":"AAMI,eAAe;EACXA,IAAI,EAAE,YAAY;EAClBC,IAAIA,CAAA,EAAE;IACF,OAAM;MACFC,KAAK,EAAC,aAAa;MACnBC,GAAG,EAAC,+CAA+C;MACnDC,KAAK,EAAC,UAAU;MAChBC,UAAU,EAAE;IAChB;EACJ,CAAC;EACDC,OAAO,EAAC;IACJC,QAAQA,CAAA,EAAE;MACN,IAAIJ,GAAG,GAAC,IAAI,CAACD,KAAK,GAAC,IAAI,CAACC,GAAG,GAAC,IAAI,CAACE,UAAU;MAC3C,IAAIG,IAAI,GAAC,IAAI;MACb,IAAI,CAACC,KAAK,CAACC,GAAG,CAACP,GAAG,CAAC,CAACQ,IAAI,CACpB,UAAUC,QAAQ,EAAE;QAChBJ,IAAI,CAACJ,KAAK,GAACQ,QAAQ,CAACX,IAAI;MAC5B,CAAC,EACD,UAAUY,KAAK,EAAE;QACbC,OAAO,CAACC,GAAG,CAACF,KAAK,CAACZ,IAAI,CAAC;MAC3B,CAEJ;IACJ;EACJ,CAAC;EACDe,OAAOA,CAAA,EAAG;IACNC,MAAM,CAACC,KAAK,GAAC,IAAI;EACrB;AACJ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

View File

@ -0,0 +1 @@
{"ast":null,"code":"import { resolveComponent as _resolveComponent, createVNode as _createVNode, createTextVNode as _createTextVNode, withCtx as _withCtx, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_IndexDefault = _resolveComponent(\"IndexDefault\");\n const _component_router_link = _resolveComponent(\"router-link\");\n const _component_router_view = _resolveComponent(\"router-view\");\n return _openBlock(), _createElementBlock(_Fragment, null, [_createVNode(_component_IndexDefault), _createVNode(_component_router_link, {\n to: \"/\",\n class: \"IndexDefault\"\n }, {\n default: _withCtx(() => _cache[0] || (_cache[0] = [_createTextVNode(\"IndexDefault\")])),\n _: 1 /* STABLE */,\n __: [0]\n }), _createVNode(_component_router_link, {\n to: \"/GetToken_1\",\n class: \"GetToken_1\"\n }, {\n default: _withCtx(() => _cache[1] || (_cache[1] = [_createTextVNode(\"GetToken_1\")])),\n _: 1 /* STABLE */,\n __: [1]\n }), _createVNode(_component_router_link, {\n to: \"/Login_1\",\n class: \"Login_1\"\n }, {\n default: _withCtx(() => _cache[2] || (_cache[2] = [_createTextVNode(\"Login_1\")])),\n _: 1 /* STABLE */,\n __: [2]\n }), _createVNode(_component_router_link, {\n to: {\n path: '/Edit_1',\n query: {\n name: $data.name\n }\n },\n class: \"Edit_1\",\n id: \"Edit_1\"\n }, {\n default: _withCtx(() => _cache[3] || (_cache[3] = [_createTextVNode(\"Edit_1\")])),\n _: 1 /* STABLE */,\n __: [3]\n }, 8 /* PROPS */, [\"to\"]), _createVNode(_component_router_link, {\n to: \"/Ref_1\",\n class: \"Ref_1\"\n }, {\n default: _withCtx(() => _cache[4] || (_cache[4] = [_createTextVNode(\"Ref_1\")])),\n _: 1 /* STABLE */,\n __: [4]\n }), _createVNode(_component_router_link, {\n to: \"/Hypertension_1\",\n class: \"Hypertension_1\"\n }, {\n default: _withCtx(() => _cache[5] || (_cache[5] = [_createTextVNode(\"Hypertension_1\")])),\n _: 1 /* STABLE */,\n __: [5]\n }), _createVNode(_component_router_link, {\n to: \"/person_881_1/ListPerson\"\n }, {\n default: _withCtx(() => _cache[6] || (_cache[6] = [_createTextVNode(\"ListPerson\")])),\n _: 1 /* STABLE */,\n __: [6]\n }), _createVNode(_component_router_view)], 64 /* STABLE_FRAGMENT */);\n}","map":{"version":3,"names":["_createVNode","_component_IndexDefault","_component_router_link","to","class","_cache","path","query","name","$data","id","_component_router_view"],"sources":["C:\\exam_app\\app_vue\\src\\App.vue"],"sourcesContent":["<template>\n <IndexDefault></IndexDefault>\n <router-link to=\"/\" class=\"IndexDefault\">IndexDefault</router-link>\n <router-link to=\"/GetToken_1\" class=\"GetToken_1\">GetToken_1</router-link>\n <router-link to=\"/Login_1\" class=\"Login_1\">Login_1</router-link>\n <router-link :to=\"{path:'/Edit_1',query:{name:name}}\" class=\"Edit_1\" id=\"Edit_1\">Edit_1</router-link>\n <router-link to=\"/Ref_1\" class=\"Ref_1\">Ref_1</router-link>\n <router-link to=\"/Hypertension_1\" class=\"Hypertension_1\">Hypertension_1</router-link>\n <router-link to=\"/person_881_1/ListPerson\">ListPerson</router-link>\n <router-view></router-view>\n</template>\n\n<script>\nexport default {\n name: 'App',\n components: {\n },\n data(){\n return{\n name:'刘松林',\n }\n },\n mounted(){\n window.myVue=this;\n }\n}\n</script>\n\n<style>\n#app {\n font-family: Avenir, Helvetica, Arial, sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n text-align: center;\n color: #2c3e50;\n margin-top: 60px;\n}\n</style>\n"],"mappings":";;;;;6DACEA,YAAA,CAA6BC,uBAAA,GAC7BD,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC,GAAG;IAACC,KAAK,EAAC;;sBAAe,MAAYC,MAAA,QAAAA,MAAA,O,iBAAZ,cAAY,E;;;MACrDL,YAAA,CAAyEE,sBAAA;IAA5DC,EAAE,EAAC,aAAa;IAACC,KAAK,EAAC;;sBAAa,MAAUC,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MAC3DL,YAAA,CAAgEE,sBAAA;IAAnDC,EAAE,EAAC,UAAU;IAACC,KAAK,EAAC;;sBAAU,MAAOC,MAAA,QAAAA,MAAA,O,iBAAP,SAAO,E;;;MAClDL,YAAA,CAAqGE,sBAAA;IAAvFC,EAAE;MAAAG,IAAA;MAAAC,KAAA;QAAAC,IAAA,EAA8BC,KAAA,CAAAD;MAAI;IAAA;IAAIJ,KAAK,EAAC,QAAQ;IAACM,EAAE,EAAC;;sBAAS,MAAML,MAAA,QAAAA,MAAA,O,iBAAN,QAAM,E;;;6BACvFL,YAAA,CAA0DE,sBAAA;IAA7CC,EAAE,EAAC,QAAQ;IAACC,KAAK,EAAC;;sBAAQ,MAAKC,MAAA,QAAAA,MAAA,O,iBAAL,OAAK,E;;;MAC5CL,YAAA,CAAqFE,sBAAA;IAAxEC,EAAE,EAAC,iBAAiB;IAACC,KAAK,EAAC;;sBAAiB,MAAcC,MAAA,QAAAA,MAAA,O,iBAAd,gBAAc,E;;;MACvEL,YAAA,CAAmEE,sBAAA;IAAtDC,EAAE,EAAC;EAA0B;sBAAC,MAAUE,MAAA,QAAAA,MAAA,O,iBAAV,YAAU,E;;;MACrDL,YAAA,CAA2BW,sBAAA,E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}

1
app_vue/node_modules/.cache/eslint/72245136.json generated vendored Normal file

File diff suppressed because one or more lines are too long

1
app_vue/node_modules/.cache/eslint/750380a9.json generated vendored Normal file
View File

@ -0,0 +1 @@
[{"C:\\exam_app\\app_vue\\src\\main.js":"1","C:\\exam_app\\app_vue\\src\\App.vue":"2","C:\\exam_app\\app_vue\\src\\router\\index.js":"3","C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue":"4","C:\\exam_app\\app_vue\\src\\components\\Ref_1.vue":"5","C:\\exam_app\\app_vue\\src\\components\\IndexDefault.vue":"6","C:\\exam_app\\app_vue\\src\\components\\Login_1.vue":"7","C:\\exam_app\\app_vue\\src\\components\\Edit_1.vue":"8","C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue":"9","C:\\exam_app\\app_vue\\src\\components\\person_881_1\\ListPerson.vue":"10","C:\\exam_app\\app_vue\\src\\components\\person_881_1\\DeletePerson.vue":"11","C:\\exam_app\\app_vue\\src\\components\\person_881_1\\EditPerson.vue":"12"},{"size":257,"mtime":1749092442000,"results":"13","hashOfConfig":"14"},{"size":1001,"mtime":1750411793297,"results":"15","hashOfConfig":"14"},{"size":1899,"mtime":1749720146000,"results":"16","hashOfConfig":"14"},{"size":1023,"mtime":1750413280666,"results":"17","hashOfConfig":"14"},{"size":484,"mtime":1749722666000,"results":"18","hashOfConfig":"14"},{"size":173,"mtime":1749091290000,"results":"19","hashOfConfig":"14"},{"size":1506,"mtime":1749694220000,"results":"20","hashOfConfig":"14"},{"size":369,"mtime":1749698872000,"results":"21","hashOfConfig":"14"},{"size":1812,"mtime":1750411788417,"results":"22","hashOfConfig":"14"},{"size":2556,"mtime":1750388108000,"results":"23","hashOfConfig":"14"},{"size":1293,"mtime":1750388184000,"results":"24","hashOfConfig":"14"},{"size":5902,"mtime":1750388140000,"results":"25","hashOfConfig":"14"},{"filePath":"26","messages":"27","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},"1sbb1fo",{"filePath":"29","messages":"30","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"32","messages":"33","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"28"},{"filePath":"34","messages":"35","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"36","messages":"37","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"38","messages":"39","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"40","messages":"41","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"42","messages":"43","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"44","messages":"45","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"46","messages":"47","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"48","messages":"49","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"50","messages":"51","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},"C:\\exam_app\\app_vue\\src\\main.js",[],[],"C:\\exam_app\\app_vue\\src\\App.vue",[],[],"C:\\exam_app\\app_vue\\src\\router\\index.js",[],"C:\\exam_app\\app_vue\\src\\components\\GetToken_1.vue",[],"C:\\exam_app\\app_vue\\src\\components\\Ref_1.vue",[],"C:\\exam_app\\app_vue\\src\\components\\IndexDefault.vue",[],"C:\\exam_app\\app_vue\\src\\components\\Login_1.vue",[],"C:\\exam_app\\app_vue\\src\\components\\Edit_1.vue",[],"C:\\exam_app\\app_vue\\src\\components\\Hypertension_1.vue",[],"C:\\exam_app\\app_vue\\src\\components\\person_881_1\\ListPerson.vue",[],"C:\\exam_app\\app_vue\\src\\components\\person_881_1\\DeletePerson.vue",[],"C:\\exam_app\\app_vue\\src\\components\\person_881_1\\EditPerson.vue",[]]