Browse Source

10.23

master
lichong 5 months ago
parent
commit
06446fe675
  1. 4
      electron-builder.yml
  2. 2
      package.json
  3. 12
      src/renderer/src/App.vue
  4. 9
      src/renderer/src/assets/css/base.css

4
electron-builder.yml

@ -1,5 +1,5 @@
appId: com.electron.lichong
productName: 桌面应用
productName: 数据生成
directories:
buildResources: build
files:
@ -14,7 +14,7 @@ win:
executableName: lichong-app
nsis:
oneClick: false
artifactName: ${name}-${version}-setup.${ext}
artifactName: 数据生成-${version}-setup.${ext}
allowToChangeInstallationDirectory: true
shortcutName: ${productName}
uninstallDisplayName: ${productName}

2
package.json

@ -1,6 +1,6 @@
{
"name": "electron",
"version": "1.0.0",
"version": "1.0.2",
"description": "An Electron application with Vue",
"main": "./out/main/index.js",
"author": "lichong",

12
src/renderer/src/App.vue

@ -33,7 +33,7 @@
<el-input-number v-model="secondObj.second" style="width: 230px;" :min="0" />
</el-col>
<el-col class="colStyle">
<el-input v-model="secondObj.result" style="width: 330px;" placeholder="Please input" disabled>
<el-input v-model="secondObj.result" placeholder="Please input" disabled class="singleClass">
<template #prepend>压实度</template>
<template #append>%</template>
</el-input>
@ -63,13 +63,13 @@ export default {
return {
_: _,
dayjs: dayjs,
isVip: false,
isVip: true,
form: {
min: 1,
max: 10,
weishu: 3,
geshu: 3,
zushu: 8,
weishu: 2,
geshu: 10,
zushu: 10,
},
secondObj: {
first: 0,
@ -146,7 +146,7 @@ export default {
},
},
async mounted() {
let fiveDay = dayjs('2024-10-15T00:00:00').valueOf()
let fiveDay = dayjs('2024-11-02T00:00:00').valueOf()
if (!this.isVip) {
if (dayjs().valueOf() > fiveDay) {
this.isVip = false

9
src/renderer/src/assets/css/base.css

@ -2,4 +2,13 @@ html,
body {
margin: 0;
padding: 0;
}
.singleClass {
width: 330px;
text-align-last: center;
}
.singleClass .el-input__inner {
font-size: 1.4em;
}
Loading…
Cancel
Save